lfs-buildscripts/PRENINE.sh

21 lines
405 B
Bash
Raw Permalink Normal View History

2024-10-11 05:32:34 +08:00
#!/bin/bash
function myfail {
echo "$1"
exit 1
}
if [ "`whoami`" != "root" ]; then
myfail "Must run this script as r00t"
fi
LFS="/mnt/newlfs"
# So USB thumb drive install does not need a network connection
2024-10-11 15:37:32 +08:00
if [ ! -f ${LFS}/USBFlash ]; then
mkdir -p ${LFS}/home/lfs
cp /home/lfs/lfs-sources.tar ${LFS}/home/lfs/
cp -ar /home/lfs/lfs-buildscripts ${LFS}/home/lfs/
touch ${LFS}/USBFlash
2024-10-11 05:32:34 +08:00
fi