diff options
Diffstat (limited to 'chapter10')
-rw-r--r-- | chapter10/fstab.sh | 19 | ||||
-rw-r--r-- | chapter10/linux.sh | 13 |
2 files changed, 32 insertions, 0 deletions
diff --git a/chapter10/fstab.sh b/chapter10/fstab.sh new file mode 100644 index 0000000..c1668fb --- /dev/null +++ b/chapter10/fstab.sh @@ -0,0 +1,19 @@ +#!/bin/bash +set -e + +cat << EOF > /etc/fstab +# Begin /etc/fstab + +# file system mount-point type options dump fsck +# order + +${LFS_DISK}${LFS_PART} / ${LFS_FS,,} defaults 1 1 +${LFS_SWAP} swap swap pri=1 0 0 +proc /proc proc nosuid,noexec,nodev 0 0 +sysfs /sys sysfs nosuid,noexec,nodev 0 0 +devpts /dev/pts devpts gid=5,mode=620 0 0 +tmpfs /run tmpfs defaults 0 0 +devtmpfs /dev devtmpfs mode=0755,nosuid 0 0 + +# End /etc/fstab +EOF diff --git a/chapter10/linux.sh b/chapter10/linux.sh new file mode 100644 index 0000000..143c692 --- /dev/null +++ b/chapter10/linux.sh @@ -0,0 +1,13 @@ +#!/bin/bash + +make mrproper && +cp -v ../kernelconfig .config && +yes "" | make oldconfig && +make "${MAKEFLAGS}" && +make modules_install && +cp -iv arch/x86_64/boot/bzImage /boot/linux-"${VERSION}" && +cp -iv System.map /boot/System.map-"${VERSION}" && +cp -iv .config /boot/config-"${VERSION}" && + +install -dv /usr/share/doc/linux-"${VERSION}" && +cp -rv Documentation/* /usr/share/doc/linux-"${VERSION}" |