◄  ▲  ► |
# Copy the linux kernel to the floppy
if [ -e linux ]; then
echo "Copying the 'linux' kernel to the floppy"
cp linux tempfs
else
echo "Couldn't find a kernel named 'linux' in the current directory,"
echo "so I'm using the kernel on your hard drive. It's probably too big..."
cp /boot/vm* tempfs/linux
fi
# Copy the file system to the floppy
echo "Copying the compressed filesystem to the floppy"
cp filesys tempfs