mirror of
https://github.com/kevadesu/TylkoLinux.git
synced 2025-03-09 16:51:57 +01:00
Added checksum list and patch list
This commit is contained in:
parent
6a546fb374
commit
9fef4222f7
4 changed files with 38 additions and 1 deletions
|
@ -0,0 +1,27 @@
|
|||
#!/bin/bash
|
||||
if [ "$EUID" -ne 0 ]
|
||||
then echo "Please run Einrichter (TylkoLinux) using administrative permissions."
|
||||
exit
|
||||
fi
|
||||
|
||||
function main() {
|
||||
|
||||
}
|
||||
|
||||
function einrichter.installer.pkgs() {
|
||||
echo "[1/ ] Downloading package list..."
|
||||
wget https://www.linuxfromscratch.org/lfs/view/stable-systemd/wget-list-systemd --continue --directory-prefix=$LFS/sources
|
||||
echo "[2/ ] Downloading checksum of packages"
|
||||
wget https://www.linuxfromscratch.org/lfs/view/stable-systemd/md5sums --continue --directory-prefix=$LFS/sources
|
||||
echo "[3/ ] Installing packages
|
||||
wget --input-file=wget-list-systemd --continue --directory-prefix=$LFS/sources
|
||||
pushd $LFS/sources
|
||||
md5sum -c md5sums
|
||||
popd
|
||||
}
|
||||
|
||||
function einrichter.installer.bg() {
|
||||
|
||||
}
|
||||
main
|
||||
|
|
@ -2,7 +2,7 @@
|
|||
TylkoLinux, an LFS system
|
||||
|
||||
## Status
|
||||
LFS v12.2-systemd book chapter: 2.2.
|
||||
LFS v12.2-systemd book chapter: 3.1.
|
||||
|
||||
## To do
|
||||
```md
|
||||
|
|
5
lfs-patch-list
Normal file
5
lfs-patch-list
Normal file
|
@ -0,0 +1,5 @@
|
|||
https://www.linuxfromscratch.org/patches/lfs/12.2/bzip2-1.0.8-install_docs-1.patch
|
||||
https://www.linuxfromscratch.org/patches/lfs/12.2/coreutils-9.5-i18n-2.patch
|
||||
https://www.linuxfromscratch.org/patches/lfs/12.2/expect-5.45.4-gcc14-1.patch
|
||||
https://www.linuxfromscratch.org/patches/lfs/12.2/glibc-2.40-fhs-1.patch
|
||||
https://www.linuxfromscratch.org/patches/lfs/12.2/kbd-2.6.4-backspace-1.patch
|
5
lfs-patch-list-checksum
Normal file
5
lfs-patch-list-checksum
Normal file
|
@ -0,0 +1,5 @@
|
|||
6a5ac7e89b791aae556de0f745916f7f bzip2-1.0.8-install_docs-1.patch
|
||||
58961caf5bbdb02462591fa506c73b6d coreutils-9.5-i18n-2.patch
|
||||
0b8b5ac411d011263ad40b0664c669f0 expect-5.45.4-gcc14-1.patch
|
||||
9a5997c3452909b1769918c759eff8a2 glibc-2.40-fhs-1.patch
|
||||
f75cca16a38da6caa7d52151f7136895 kbd-2.6.4-backspace-1.patch
|
Loading…
Add table
Reference in a new issue