From d2455629f6b713773331645dfe932d6a52cb758b Mon Sep 17 00:00:00 2001 From: William Harrington Date: Mon, 12 Apr 2021 17:38:38 -0500 Subject: Add Chapter 10 fstab script. --- chapter10/fstab.sh | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 chapter10/fstab.sh (limited to 'chapter10/fstab.sh') diff --git a/chapter10/fstab.sh b/chapter10/fstab.sh new file mode 100644 index 0000000..7e8aa05 --- /dev/null +++ b/chapter10/fstab.sh @@ -0,0 +1,18 @@ +#!/bin/bash + +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 +/dev/sda2 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 -- cgit v1.2.3-54-g00ecf From 70ca21d0511ea00c6bed4094ae54b5f2815007eb Mon Sep 17 00:00:00 2001 From: William Harrington Date: Tue, 13 Apr 2021 14:09:39 -0500 Subject: Add fstab and use LFS env varibles for disk, partition and filesystem. --- chapter10/fstab.sh | 1 + 1 file changed, 1 insertion(+) (limited to 'chapter10/fstab.sh') diff --git a/chapter10/fstab.sh b/chapter10/fstab.sh index 7e8aa05..2173c25 100644 --- a/chapter10/fstab.sh +++ b/chapter10/fstab.sh @@ -1,4 +1,5 @@ #!/bin/bash +set -e cat << EOF > /etc/fstab # Begin /etc/fstab -- cgit v1.2.3-54-g00ecf From 4bfc125f8b0dd7eb2f634305c06ad0354afbed2b Mon Sep 17 00:00:00 2001 From: William Harrington Date: Tue, 13 Apr 2021 18:50:54 -0500 Subject: Add LFS_SWAP environment varialbe and use it in fstab. --- chapter10/fstab.sh | 2 +- lfs.sh | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) (limited to 'chapter10/fstab.sh') diff --git a/chapter10/fstab.sh b/chapter10/fstab.sh index 2173c25..c1668fb 100644 --- a/chapter10/fstab.sh +++ b/chapter10/fstab.sh @@ -8,7 +8,7 @@ cat << EOF > /etc/fstab # order ${LFS_DISK}${LFS_PART} / ${LFS_FS,,} defaults 1 1 -/dev/sda2 swap swap pri=1 0 0 +${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 diff --git a/lfs.sh b/lfs.sh index 6a38b08..6f916ee 100755 --- a/lfs.sh +++ b/lfs.sh @@ -263,6 +263,7 @@ sudo chroot "${LFS}" /usr/bin/env -i \ LFS_DISK="${LFS_DISK}" \ LFS_PART="${LFS_PART}" \ LFS_FS="${LFS_FS}" \ + LFS_SWAP="${LFS_SWAP}" \ /bin/bash --login +h -c "/sources/insidechroot.sh 10" retval=$? -- cgit v1.2.3-54-g00ecf