##// END OF EJS Templates
removed the usb part from ubootusb
Unknown -
r541:fa11a3c0304b
parent child
Show More
@@ -1,99 +1,113
1 #
1 #
2 # Setup fstab and initramfs
2 # Setup fstab and initramfs
3 #
3 #
4
4
5 # Load utility functions
5 # Load utility functions
6 . ./functions.sh
6 . ./functions.sh
7
7
8 # Install and setup fstab
8 # Install and setup fstab
9 install_readonly files/mount/fstab "${ETC_DIR}/fstab"
9 install_readonly files/mount/fstab "${ETC_DIR}/fstab"
10
10
11 if [ "$ENABLE_UBOOTUSB" = true ] ; then
11 if [ "$ENABLE_USBBOOT" = true ] ; then
12 sed -i "s/mmcblk0p1/sda1/" "${ETC_DIR}/fstab"
12 sed -i "s/mmcblk0p1/sda1/" "${ETC_DIR}/fstab"
13 sed -i "s/mmcblk0p2/sda2/" "${ETC_DIR}/fstab"
13 sed -i "s/mmcblk0p2/sda2/" "${ETC_DIR}/fstab"
14 fi
14 fi
15
15
16 # Add usb/sda disk root partition to fstab
16 # Add usb/sda disk root partition to fstab
17 if [ "$ENABLE_SPLITFS" = true ] && [ "$ENABLE_CRYPTFS" = false ] ; then
17 if [ "$ENABLE_SPLITFS" = true ] && [ "$ENABLE_CRYPTFS" = false ] ; then
18 sed -i "s/mmcblk0p2/sda1/" "${ETC_DIR}/fstab"
18 sed -i "s/mmcblk0p2/sda1/" "${ETC_DIR}/fstab"
19 fi
19 fi
20
20
21 # Add encrypted root partition to fstab and crypttab
21 # Add encrypted root partition to fstab and crypttab
22 if [ "$ENABLE_CRYPTFS" = true ] ; then
22 if [ "$ENABLE_CRYPTFS" = true ] ; then
23 # Replace fstab root partition with encrypted partition mapping
23 # Replace fstab root partition with encrypted partition mapping
24 sed -i "s/mmcblk0p2/mapper\/${CRYPTFS_MAPPING}/" "${ETC_DIR}/fstab"
24 sed -i "s/mmcblk0p2/mapper\/${CRYPTFS_MAPPING}/" "${ETC_DIR}/fstab"
25
25
26 # Add encrypted partition to crypttab and fstab
26 # Add encrypted partition to crypttab and fstab
27 install_readonly files/mount/crypttab "${ETC_DIR}/crypttab"
27 install_readonly files/mount/crypttab "${ETC_DIR}/crypttab"
28 echo "${CRYPTFS_MAPPING} /dev/mmcblk0p2 none luks" >> "${ETC_DIR}/crypttab"
28 echo "${CRYPTFS_MAPPING} /dev/mmcblk0p2 none luks" >> "${ETC_DIR}/crypttab"
29
29
30 if [ "$ENABLE_SPLITFS" = true ] ; then
30 if [ "$ENABLE_SPLITFS" = true ] ; then
31 # Add usb/sda disk to crypttab
31 # Add usb/sda disk to crypttab
32 sed -i "s/mmcblk0p2/sda1/" "${ETC_DIR}/crypttab"
32 sed -i "s/mmcblk0p2/sda1/" "${ETC_DIR}/crypttab"
33 fi
33 fi
34 fi
34 fi
35
35
36 # Generate initramfs file
36 # Generate initramfs file
37 if [ "$ENABLE_INITRAMFS" = true ] ; then
37 if [ "$ENABLE_INITRAMFS" = true ] ; then
38 if [ "$ENABLE_CRYPTFS" = true ] ; then
38 if [ "$ENABLE_CRYPTFS" = true ] ; then
39 # Include initramfs scripts to auto expand encrypted root partition
39 # Include initramfs scripts to auto expand encrypted root partition
40 if [ "$EXPANDROOT" = true ] ; then
40 if [ "$EXPANDROOT" = true ] ; then
41 install_exec files/initramfs/expand_encrypted_rootfs "${ETC_DIR}/initramfs-tools/scripts/init-premount/expand_encrypted_rootfs"
41 install_exec files/initramfs/expand_encrypted_rootfs "${ETC_DIR}/initramfs-tools/scripts/init-premount/expand_encrypted_rootfs"
42 install_exec files/initramfs/expand-premount "${ETC_DIR}/initramfs-tools/scripts/local-premount/expand-premount"
42 install_exec files/initramfs/expand-premount "${ETC_DIR}/initramfs-tools/scripts/local-premount/expand-premount"
43 install_exec files/initramfs/expand-tools "${ETC_DIR}/initramfs-tools/hooks/expand-tools"
43 install_exec files/initramfs/expand-tools "${ETC_DIR}/initramfs-tools/hooks/expand-tools"
44 fi
44 fi
45
46 if [ "$CRYPTFS_DROPBEAR" = true ] ; then
47 # Get cdir from NET_ADDRESS e.g. 24
48 cdir=$(${NET_ADDRESS} | cut -d '/' -f2)
49
50 # Convert cdir ro netmask e.g. 24 to 255.255.255.0
51 NET_MASK=$(cdr2mask "$cdir")
52
53 # Write static ip settings to "${ETC_DIR}"/initramfs-tools/initramfs.conf
54 sed -i "\$aIP=${NET_ADDRESS}::${NET_GATEWAY}:${NET_MASK}:${HOSTNAME}:" "${ETC_DIR}"/initramfs-tools/initramfs.conf
55
56 # Regenerate initramfs
57 chroot_exec mkinitramfs -o "/boot/firmware/initramfs-${KERNEL_VERSION}" "${KERNEL_VERSION}"
58 fi
45
59
46 if [ "$CRYPTFS_DROPBEAR" = true ]; then
60 if [ "$CRYPTFS_DROPBEAR" = true ]; then
47 if [ -n "$CRYPTFS_DROPBEAR_PUBKEY" ] && [ -f "$CRYPTFS_DROPBEAR_PUBKEY" ] ; then
61 if [ -n "$CRYPTFS_DROPBEAR_PUBKEY" ] && [ -f "$CRYPTFS_DROPBEAR_PUBKEY" ] ; then
48 install_readonly "${CRYPTFS_DROPBEAR_PUBKEY}" "${ETC_DIR}"/dropbear-initramfs/id_rsa.pub
62 install_readonly "${CRYPTFS_DROPBEAR_PUBKEY}" "${ETC_DIR}"/dropbear-initramfs/id_rsa.pub
49 cat "${ETC_DIR}"/dropbear-initramfs/id_rsa.pub >> "${ETC_DIR}"/dropbear-initramfs/authorized_keys
63 cat "${ETC_DIR}"/dropbear-initramfs/id_rsa.pub >> "${ETC_DIR}"/dropbear-initramfs/authorized_keys
50 else
64 else
51 # Create key
65 # Create key
52 chroot_exec /usr/bin/dropbearkey -t rsa -f /etc/dropbear-initramfs/id_rsa.dropbear
66 chroot_exec /usr/bin/dropbearkey -t rsa -f /etc/dropbear-initramfs/id_rsa.dropbear
53
67
54 # Convert dropbear key to openssh key
68 # Convert dropbear key to openssh key
55 chroot_exec /usr/lib/dropbear/dropbearconvert dropbear openssh /etc/dropbear-initramfs/id_rsa.dropbear /etc/dropbear-initramfs/id_rsa
69 chroot_exec /usr/lib/dropbear/dropbearconvert dropbear openssh /etc/dropbear-initramfs/id_rsa.dropbear /etc/dropbear-initramfs/id_rsa
56
70
57 # Get Public Key Part
71 # Get Public Key Part
58 chroot_exec /usr/bin/dropbearkey -y -f /etc/dropbear-initramfs/id_rsa.dropbear | chroot_exec tee /etc/dropbear-initramfs/id_rsa.pub
72 chroot_exec /usr/bin/dropbearkey -y -f /etc/dropbear-initramfs/id_rsa.dropbear | chroot_exec tee /etc/dropbear-initramfs/id_rsa.pub
59
73
60 # Delete unwanted lines
74 # Delete unwanted lines
61 sed -i '/Public/d' "${ETC_DIR}"/dropbear-initramfs/id_rsa.pub
75 sed -i '/Public/d' "${ETC_DIR}"/dropbear-initramfs/id_rsa.pub
62 sed -i '/Fingerprint/d' "${ETC_DIR}"/dropbear-initramfs/id_rsa.pub
76 sed -i '/Fingerprint/d' "${ETC_DIR}"/dropbear-initramfs/id_rsa.pub
63
77
64 # Trust the new key
78 # Trust the new key
65 cat "${ETC_DIR}"/dropbear-initramfs/id_rsa.pub > "${ETC_DIR}"/dropbear-initramfs/authorized_keys
79 cat "${ETC_DIR}"/dropbear-initramfs/id_rsa.pub > "${ETC_DIR}"/dropbear-initramfs/authorized_keys
66
80
67 # Save Keys - convert with putty from rsa/openssh to puttkey
81 # Save Keys - convert with putty from rsa/openssh to puttkey
68 cp -f "${ETC_DIR}"/dropbear-initramfs/id_rsa "${BASEDIR}"/dropbear_initramfs_key.rsa
82 cp -f "${ETC_DIR}"/dropbear-initramfs/id_rsa "${BASEDIR}"/dropbear_initramfs_key.rsa
69
83
70 # Get unlock script
84 # Get unlock script
71 install_exec files/initramfs/crypt_unlock.sh "${ETC_DIR}"/initramfs-tools/hooks/crypt_unlock.sh
85 install_exec files/initramfs/crypt_unlock.sh "${ETC_DIR}"/initramfs-tools/hooks/crypt_unlock.sh
72
86
73 # Enable Dropbear inside initramfs
87 # Enable Dropbear inside initramfs
74 printf "#\n# DROPBEAR: [ y | n ]\n#\n\nDROPBEAR=y\n" >> "${ETC_DIR}/initramfs-tools/initramfs.conf"
88 printf "#\n# DROPBEAR: [ y | n ]\n#\n\nDROPBEAR=y\n" >> "${ETC_DIR}/initramfs-tools/initramfs.conf"
75
89
76 # Enable Dropbear inside initramfs
90 # Enable Dropbear inside initramfs
77 sed -i "54 i sleep 5" "${R}"/usr/share/initramfs-tools/scripts/init-premount/dropbear
91 sed -i "54 i sleep 5" "${R}"/usr/share/initramfs-tools/scripts/init-premount/dropbear
78 fi
92 fi
79 else
93 else
80 # Disable SSHD inside initramfs
94 # Disable SSHD inside initramfs
81 printf "#\n# DROPBEAR: [ y | n ]\n#\n\nDROPBEAR=n\n" >> "${ETC_DIR}/initramfs-tools/initramfs.conf"
95 printf "#\n# DROPBEAR: [ y | n ]\n#\n\nDROPBEAR=n\n" >> "${ETC_DIR}/initramfs-tools/initramfs.conf"
82 fi
96 fi
83
97
84 # Add cryptsetup modules to initramfs
98 # Add cryptsetup modules to initramfs
85 printf "#\n# CRYPTSETUP: [ y | n ]\n#\n\nCRYPTSETUP=y\n" >> "${ETC_DIR}/initramfs-tools/conf-hook"
99 printf "#\n# CRYPTSETUP: [ y | n ]\n#\n\nCRYPTSETUP=y\n" >> "${ETC_DIR}/initramfs-tools/conf-hook"
86
100
87 # Dummy mapping required by mkinitramfs
101 # Dummy mapping required by mkinitramfs
88 echo "0 1 crypt $(echo "${CRYPTFS_CIPHER}" | cut -d ':' -f 1) ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff 0 7:0 4096" | chroot_exec dmsetup create "${CRYPTFS_MAPPING}"
102 echo "0 1 crypt $(echo "${CRYPTFS_CIPHER}" | cut -d ':' -f 1) ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff 0 7:0 4096" | chroot_exec dmsetup create "${CRYPTFS_MAPPING}"
89
103
90 # Generate initramfs with encrypted root partition support
104 # Generate initramfs with encrypted root partition support
91 chroot_exec mkinitramfs -o "/boot/firmware/initramfs-${KERNEL_VERSION}" "${KERNEL_VERSION}"
105 chroot_exec mkinitramfs -o "/boot/firmware/initramfs-${KERNEL_VERSION}" "${KERNEL_VERSION}"
92
106
93 # Remove dummy mapping
107 # Remove dummy mapping
94 chroot_exec cryptsetup close "${CRYPTFS_MAPPING}"
108 chroot_exec cryptsetup close "${CRYPTFS_MAPPING}"
95 else
109 else
96 # Generate initramfs without encrypted root partition support
110 # Generate initramfs without encrypted root partition support
97 chroot_exec mkinitramfs -o "/boot/firmware/initramfs-${KERNEL_VERSION}" "${KERNEL_VERSION}"
111 chroot_exec mkinitramfs -o "/boot/firmware/initramfs-${KERNEL_VERSION}" "${KERNEL_VERSION}"
98 fi
112 fi
99 fi
113 fi
@@ -1,289 +1,289
1 #
1 #
2 # Setup RPi2/3 config and cmdline
2 # Setup RPi2/3 config and cmdline
3 #
3 #
4
4
5 # Load utility functions
5 # Load utility functions
6 . ./functions.sh
6 . ./functions.sh
7
7
8 if [ -n "$RPI_FIRMWARE_DIR" ] && [ -d "$RPI_FIRMWARE_DIR" ] ; then
8 if [ -n "$RPI_FIRMWARE_DIR" ] && [ -d "$RPI_FIRMWARE_DIR" ] ; then
9 # Install boot binaries from local directory
9 # Install boot binaries from local directory
10 cp "${RPI_FIRMWARE_DIR}"/boot/bootcode.bin "${BOOT_DIR}"/bootcode.bin
10 cp "${RPI_FIRMWARE_DIR}"/boot/bootcode.bin "${BOOT_DIR}"/bootcode.bin
11 cp "${RPI_FIRMWARE_DIR}"/boot/fixup.dat "${BOOT_DIR}"/fixup.dat
11 cp "${RPI_FIRMWARE_DIR}"/boot/fixup.dat "${BOOT_DIR}"/fixup.dat
12 cp "${RPI_FIRMWARE_DIR}"/boot/fixup_cd.dat "${BOOT_DIR}"/fixup_cd.dat
12 cp "${RPI_FIRMWARE_DIR}"/boot/fixup_cd.dat "${BOOT_DIR}"/fixup_cd.dat
13 cp "${RPI_FIRMWARE_DIR}"/boot/fixup_x.dat "${BOOT_DIR}"/fixup_x.dat
13 cp "${RPI_FIRMWARE_DIR}"/boot/fixup_x.dat "${BOOT_DIR}"/fixup_x.dat
14 cp "${RPI_FIRMWARE_DIR}"/boot/start.elf "${BOOT_DIR}"/start.elf
14 cp "${RPI_FIRMWARE_DIR}"/boot/start.elf "${BOOT_DIR}"/start.elf
15 cp "${RPI_FIRMWARE_DIR}"/boot/start_cd.elf "${BOOT_DIR}"/start_cd.elf
15 cp "${RPI_FIRMWARE_DIR}"/boot/start_cd.elf "${BOOT_DIR}"/start_cd.elf
16 cp "${RPI_FIRMWARE_DIR}"/boot/start_x.elf "${BOOT_DIR}"/start_x.elf
16 cp "${RPI_FIRMWARE_DIR}"/boot/start_x.elf "${BOOT_DIR}"/start_x.elf
17 else
17 else
18 # Create temporary directory for boot binaries
18 # Create temporary directory for boot binaries
19 temp_dir=$(as_nobody mktemp -d)
19 temp_dir=$(as_nobody mktemp -d)
20
20
21 # Install latest boot binaries from raspberry/firmware github
21 # Install latest boot binaries from raspberry/firmware github
22 as_nobody wget -q -O "${temp_dir}/bootcode.bin" "${FIRMWARE_URL}/bootcode.bin"
22 as_nobody wget -q -O "${temp_dir}/bootcode.bin" "${FIRMWARE_URL}/bootcode.bin"
23 as_nobody wget -q -O "${temp_dir}/fixup.dat" "${FIRMWARE_URL}/fixup.dat"
23 as_nobody wget -q -O "${temp_dir}/fixup.dat" "${FIRMWARE_URL}/fixup.dat"
24 as_nobody wget -q -O "${temp_dir}/fixup_cd.dat" "${FIRMWARE_URL}/fixup_cd.dat"
24 as_nobody wget -q -O "${temp_dir}/fixup_cd.dat" "${FIRMWARE_URL}/fixup_cd.dat"
25 as_nobody wget -q -O "${temp_dir}/fixup_x.dat" "${FIRMWARE_URL}/fixup_x.dat"
25 as_nobody wget -q -O "${temp_dir}/fixup_x.dat" "${FIRMWARE_URL}/fixup_x.dat"
26 as_nobody wget -q -O "${temp_dir}/start.elf" "${FIRMWARE_URL}/start.elf"
26 as_nobody wget -q -O "${temp_dir}/start.elf" "${FIRMWARE_URL}/start.elf"
27 as_nobody wget -q -O "${temp_dir}/start_cd.elf" "${FIRMWARE_URL}/start_cd.elf"
27 as_nobody wget -q -O "${temp_dir}/start_cd.elf" "${FIRMWARE_URL}/start_cd.elf"
28 as_nobody wget -q -O "${temp_dir}/start_x.elf" "${FIRMWARE_URL}/start_x.elf"
28 as_nobody wget -q -O "${temp_dir}/start_x.elf" "${FIRMWARE_URL}/start_x.elf"
29
29
30 # Move downloaded boot binaries
30 # Move downloaded boot binaries
31 mv "${temp_dir}/"* "${BOOT_DIR}/"
31 mv "${temp_dir}/"* "${BOOT_DIR}/"
32
32
33 # Remove temporary directory for boot binaries
33 # Remove temporary directory for boot binaries
34 rm -fr "${temp_dir}"
34 rm -fr "${temp_dir}"
35
35
36 # Set permissions of the boot binaries
36 # Set permissions of the boot binaries
37 chown -R root:root "${BOOT_DIR}"
37 chown -R root:root "${BOOT_DIR}"
38 chmod -R 600 "${BOOT_DIR}"
38 chmod -R 600 "${BOOT_DIR}"
39 fi
39 fi
40
40
41 if [ "$ENABLE_KEYGEN" = true] ; then
41 if [ "$ENABLE_KEYGEN" = true] ; then
42
42
43 # go to chroot/boot/
43 # go to chroot/boot/
44 cd "${BOOT_DIR}/" || exit
44 cd "${BOOT_DIR}/" || exit
45
45
46 # Make a copy of start.elf
46 # Make a copy of start.elf
47 cp start.elf start.elf_backup
47 cp start.elf start.elf_backup
48
48
49 # Remove codec licence checks - thx go to https://github.com/nucular/raspi-keygen - if ENABLE_VIDEOCORE is true, you can check codec status https://elinux.org/RPI_vcgencmd_usage
49 # Remove codec licence checks - thx go to https://github.com/nucular/raspi-keygen - if ENABLE_VIDEOCORE is true, you can check codec status https://elinux.org/RPI_vcgencmd_usage
50 perl -pne 's/\x47\xE9362H\x3C\x18/\x47\xE9362H\x3C\x1F/g' < start.elf_backup > start.elf
50 perl -pne 's/\x47\xE9362H\x3C\x18/\x47\xE9362H\x3C\x1F/g' < start.elf_backup > start.elf
51
51
52 # Back to base dir
52 # Back to base dir
53 cd "${WORKDIR}" || exit
53 cd "${WORKDIR}" || exit
54 fi
54 fi
55
55
56 # Setup firmware boot cmdline
56 # Setup firmware boot cmdline
57 if [ "$ENABLE_UBOOTUSB" = true ] ; then
57 if [ "$ENABLE_USBBOOT" = true ] ; then
58 CMDLINE="dwc_otg.lpm_enable=0 root=/dev/sda2 rootfstype=ext4 rootflags=commit=100,data=writeback elevator=deadline rootwait init=/bin/systemd"
58 CMDLINE="dwc_otg.lpm_enable=0 root=/dev/sda2 rootfstype=ext4 rootflags=commit=100,data=writeback elevator=deadline rootwait init=/bin/systemd"
59 else
59 else
60 if [ "$ENABLE_SPLITFS" = true ] ; then
60 if [ "$ENABLE_SPLITFS" = true ] ; then
61 CMDLINE="dwc_otg.lpm_enable=0 root=/dev/sda1 rootfstype=ext4 rootflags=commit=100,data=writeback elevator=deadline rootwait init=/bin/systemd"
61 CMDLINE="dwc_otg.lpm_enable=0 root=/dev/sda1 rootfstype=ext4 rootflags=commit=100,data=writeback elevator=deadline rootwait init=/bin/systemd"
62 else
62 else
63 CMDLINE="dwc_otg.lpm_enable=0 root=/dev/mmcblk0p2 rootfstype=ext4 rootflags=commit=100,data=writeback elevator=deadline rootwait init=/bin/systemd"
63 CMDLINE="dwc_otg.lpm_enable=0 root=/dev/mmcblk0p2 rootfstype=ext4 rootflags=commit=100,data=writeback elevator=deadline rootwait init=/bin/systemd"
64 fi
64 fi
65 fi
65 fi
66
66
67 # Add encrypted root partition to cmdline.txt
67 # Add encrypted root partition to cmdline.txt
68 if [ "$ENABLE_CRYPTFS" = true ] ; then
68 if [ "$ENABLE_CRYPTFS" = true ] ; then
69 if [ "$ENABLE_SPLITFS" = true ] ; then
69 if [ "$ENABLE_SPLITFS" = true ] ; then
70 CMDLINE=$(echo "${CMDLINE}" | sed "s/sda1/mapper\/${CRYPTFS_MAPPING} cryptdevice=\/dev\/sda1:${CRYPTFS_MAPPING}/")
70 CMDLINE=$(echo "${CMDLINE}" | sed "s/sda1/mapper\/${CRYPTFS_MAPPING} cryptdevice=\/dev\/sda1:${CRYPTFS_MAPPING}/")
71 else
71 else
72 if [ "$ENABLE_UBOOTUSB" = true ] ; then
72 if [ "$ENABLE_USBBOOT" = true ] ; then
73 CMDLINE=$(echo "${CMDLINE}" | sed "s/sda2/mapper\/${CRYPTFS_MAPPING} cryptdevice=\/dev\/sda2:${CRYPTFS_MAPPING}/")
73 CMDLINE=$(echo "${CMDLINE}" | sed "s/sda2/mapper\/${CRYPTFS_MAPPING} cryptdevice=\/dev\/sda2:${CRYPTFS_MAPPING}/")
74 else
74 else
75 CMDLINE=$(echo "${CMDLINE}" | sed "s/mmcblk0p2/mapper\/${CRYPTFS_MAPPING} cryptdevice=\/dev\/mmcblk0p2:${CRYPTFS_MAPPING}/")
75 CMDLINE=$(echo "${CMDLINE}" | sed "s/mmcblk0p2/mapper\/${CRYPTFS_MAPPING} cryptdevice=\/dev\/mmcblk0p2:${CRYPTFS_MAPPING}/")
76 fi
76 fi
77 fi
77 fi
78 fi
78 fi
79
79
80 # Enable Kernel messages on standard output
80 # Enable Kernel messages on standard output
81 if [ "$ENABLE_PRINTK" = true ] ; then
81 if [ "$ENABLE_PRINTK" = true ] ; then
82 install_readonly files/sysctl.d/83-rpi-printk.conf "${ETC_DIR}/sysctl.d/83-rpi-printk.conf"
82 install_readonly files/sysctl.d/83-rpi-printk.conf "${ETC_DIR}/sysctl.d/83-rpi-printk.conf"
83 fi
83 fi
84
84
85 # Enable Kernel messages on standard output
85 # Enable Kernel messages on standard output
86 if [ "$KERNEL_SECURITY" = true ] ; then
86 if [ "$KERNEL_SECURITY" = true ] ; then
87 install_readonly files/sysctl.d/84-rpi-ASLR.conf "${ETC_DIR}/sysctl.d/84-rpi-ASLR.conf"
87 install_readonly files/sysctl.d/84-rpi-ASLR.conf "${ETC_DIR}/sysctl.d/84-rpi-ASLR.conf"
88 fi
88 fi
89
89
90 # Install udev rule for serial alias - serial0 = console serial1=bluetooth
90 # Install udev rule for serial alias - serial0 = console serial1=bluetooth
91 install_readonly files/etc/99-com.rules "${LIB_DIR}/udev/rules.d/99-com.rules"
91 install_readonly files/etc/99-com.rules "${LIB_DIR}/udev/rules.d/99-com.rules"
92
92
93 # Remove IPv6 networking support
93 # Remove IPv6 networking support
94 if [ "$ENABLE_IPV6" = false ] ; then
94 if [ "$ENABLE_IPV6" = false ] ; then
95 CMDLINE="${CMDLINE} ipv6.disable=1"
95 CMDLINE="${CMDLINE} ipv6.disable=1"
96 fi
96 fi
97
97
98 # Automatically assign predictable network interface names
98 # Automatically assign predictable network interface names
99 if [ "$ENABLE_IFNAMES" = false ] ; then
99 if [ "$ENABLE_IFNAMES" = false ] ; then
100 CMDLINE="${CMDLINE} net.ifnames=0"
100 CMDLINE="${CMDLINE} net.ifnames=0"
101 else
101 else
102 CMDLINE="${CMDLINE} net.ifnames=1"
102 CMDLINE="${CMDLINE} net.ifnames=1"
103 fi
103 fi
104
104
105 # Install firmware config
105 # Install firmware config
106 install_readonly files/boot/config.txt "${BOOT_DIR}/config.txt"
106 install_readonly files/boot/config.txt "${BOOT_DIR}/config.txt"
107
107
108 # Locks CPU frequency at maximum
108 # Locks CPU frequency at maximum
109 if [ "$ENABLE_TURBO" = true ] ; then
109 if [ "$ENABLE_TURBO" = true ] ; then
110 echo "force_turbo=1" >> "${BOOT_DIR}/config.txt"
110 echo "force_turbo=1" >> "${BOOT_DIR}/config.txt"
111 # helps to avoid sdcard corruption when force_turbo is enabled.
111 # helps to avoid sdcard corruption when force_turbo is enabled.
112 echo "boot_delay=1" >> "${BOOT_DIR}/config.txt"
112 echo "boot_delay=1" >> "${BOOT_DIR}/config.txt"
113 fi
113 fi
114
114
115 if [ "$RPI_MODEL" = 0 ] || [ "$RPI_MODEL" = 3 ] || [ "$RPI_MODEL" = 3P ] ; then
115 if [ "$RPI_MODEL" = 0 ] || [ "$RPI_MODEL" = 3 ] || [ "$RPI_MODEL" = 3P ] ; then
116
116
117 # Bluetooth enabled
117 # Bluetooth enabled
118 if [ "$ENABLE_BLUETOOTH" = true ] ; then
118 if [ "$ENABLE_BLUETOOTH" = true ] ; then
119 # Create temporary directory for Bluetooth sources
119 # Create temporary directory for Bluetooth sources
120 temp_dir=$(as_nobody mktemp -d)
120 temp_dir=$(as_nobody mktemp -d)
121
121
122 # Fetch Bluetooth sources
122 # Fetch Bluetooth sources
123 as_nobody git -C "${temp_dir}" clone "${BLUETOOTH_URL}"
123 as_nobody git -C "${temp_dir}" clone "${BLUETOOTH_URL}"
124
124
125 # Copy downloaded sources
125 # Copy downloaded sources
126 mv "${temp_dir}/pi-bluetooth" "${R}/tmp/"
126 mv "${temp_dir}/pi-bluetooth" "${R}/tmp/"
127
127
128 # Bluetooth firmware from arch aur https://aur.archlinux.org/packages/pi-bluetooth/
128 # Bluetooth firmware from arch aur https://aur.archlinux.org/packages/pi-bluetooth/
129 as_nobody wget -q -O "${R}/tmp/pi-bluetooth/LICENCE.broadcom_bcm43xx" https://aur.archlinux.org/cgit/aur.git/plain/LICENCE.broadcom_bcm43xx?h=pi-bluetooth
129 as_nobody wget -q -O "${R}/tmp/pi-bluetooth/LICENCE.broadcom_bcm43xx" https://aur.archlinux.org/cgit/aur.git/plain/LICENCE.broadcom_bcm43xx?h=pi-bluetooth
130 as_nobody wget -q -O "${R}/tmp/pi-bluetooth/BCM43430A1.hcd" https://aur.archlinux.org/cgit/aur.git/plain/BCM43430A1.hcd?h=pi-bluetooth
130 as_nobody wget -q -O "${R}/tmp/pi-bluetooth/BCM43430A1.hcd" https://aur.archlinux.org/cgit/aur.git/plain/BCM43430A1.hcd?h=pi-bluetooth
131
131
132 # Set permissions
132 # Set permissions
133 chown -R root:root "${R}/tmp/pi-bluetooth"
133 chown -R root:root "${R}/tmp/pi-bluetooth"
134
134
135 # Install tools
135 # Install tools
136 install_readonly "${R}/tmp/pi-bluetooth/usr/bin/btuart" "${R}/usr/bin/btuart"
136 install_readonly "${R}/tmp/pi-bluetooth/usr/bin/btuart" "${R}/usr/bin/btuart"
137 install_readonly "${R}/tmp/pi-bluetooth/usr/bin/bthelper" "${R}/usr/bin/bthelper"
137 install_readonly "${R}/tmp/pi-bluetooth/usr/bin/bthelper" "${R}/usr/bin/bthelper"
138
138
139 # make scripts executable
139 # make scripts executable
140 chmod +x "${R}/usr/bin/bthelper"
140 chmod +x "${R}/usr/bin/bthelper"
141 chmod +x "${R}/usr/bin/btuart"
141 chmod +x "${R}/usr/bin/btuart"
142
142
143 # Install bluetooth udev rule
143 # Install bluetooth udev rule
144 install_readonly "${R}/tmp/pi-bluetooth/lib/udev/rules.d/90-pi-bluetooth.rules" "${LIB_DIR}/udev/rules.d/90-pi-bluetooth.rules"
144 install_readonly "${R}/tmp/pi-bluetooth/lib/udev/rules.d/90-pi-bluetooth.rules" "${LIB_DIR}/udev/rules.d/90-pi-bluetooth.rules"
145
145
146 # Install Firmware Flash file and apropiate licence
146 # Install Firmware Flash file and apropiate licence
147 mkdir -p "$BLUETOOTH_FIRMWARE_DIR"
147 mkdir -p "$BLUETOOTH_FIRMWARE_DIR"
148 install_readonly "${R}/tmp/pi-bluetooth/LICENCE.broadcom_bcm43xx" "${BLUETOOTH_FIRMWARE_DIR}/LICENCE.broadcom_bcm43xx"
148 install_readonly "${R}/tmp/pi-bluetooth/LICENCE.broadcom_bcm43xx" "${BLUETOOTH_FIRMWARE_DIR}/LICENCE.broadcom_bcm43xx"
149 install_readonly "${R}/tmp/pi-bluetooth/BCM43430A1.hcd" "${BLUETOOTH_FIRMWARE_DIR}/LICENCE.broadcom_bcm43xx"
149 install_readonly "${R}/tmp/pi-bluetooth/BCM43430A1.hcd" "${BLUETOOTH_FIRMWARE_DIR}/LICENCE.broadcom_bcm43xx"
150 install_readonly "${R}/tmp/pi-bluetooth/debian/pi-bluetooth.bthelper@.service" "${ETC_DIR}/systemd/system/pi-bluetooth.bthelper@.service"
150 install_readonly "${R}/tmp/pi-bluetooth/debian/pi-bluetooth.bthelper@.service" "${ETC_DIR}/systemd/system/pi-bluetooth.bthelper@.service"
151 install_readonly "${R}/tmp/pi-bluetooth/debian/pi-bluetooth.hciuart.service" "${ETC_DIR}/systemd/system/pi-bluetooth.hciuart.service"
151 install_readonly "${R}/tmp/pi-bluetooth/debian/pi-bluetooth.hciuart.service" "${ETC_DIR}/systemd/system/pi-bluetooth.hciuart.service"
152
152
153 # Remove temporary directories
153 # Remove temporary directories
154 rm -fr "${temp_dir}"
154 rm -fr "${temp_dir}"
155 rm -fr "${R}"/tmp/pi-bluetooth
155 rm -fr "${R}"/tmp/pi-bluetooth
156
156
157 # Switch Pi3 Bluetooth function to use the mini-UART (ttyS0) and restore UART0/ttyAMA0 over GPIOs 14 & 15. Slow Bluetooth and slow cpu. Use /dev/ttyS0 instead of /dev/ttyAMA0
157 # Switch Pi3 Bluetooth function to use the mini-UART (ttyS0) and restore UART0/ttyAMA0 over GPIOs 14 & 15. Slow Bluetooth and slow cpu. Use /dev/ttyS0 instead of /dev/ttyAMA0
158 if [ "$ENABLE_MINIUART_OVERLAY" = true ] ; then
158 if [ "$ENABLE_MINIUART_OVERLAY" = true ] ; then
159
159
160 # set overlay to swap ttyAMA0 and ttyS0
160 # set overlay to swap ttyAMA0 and ttyS0
161 echo "dtoverlay=pi3-miniuart-bt" >> "${BOOT_DIR}/config.txt"
161 echo "dtoverlay=pi3-miniuart-bt" >> "${BOOT_DIR}/config.txt"
162
162
163 # if force_turbo didn't lock cpu at high speed, lock it at low speed (XOR logic) or miniuart will be broken
163 # if force_turbo didn't lock cpu at high speed, lock it at low speed (XOR logic) or miniuart will be broken
164 if [ "$ENABLE_TURBO" = false ] ; then
164 if [ "$ENABLE_TURBO" = false ] ; then
165 echo "core_freq=250" >> "${BOOT_DIR}/config.txt"
165 echo "core_freq=250" >> "${BOOT_DIR}/config.txt"
166 fi
166 fi
167 fi
167 fi
168
168
169 # Activate services
169 # Activate services
170 chroot_exec systemctl enable pi-bluetooth.hciuart.service
170 chroot_exec systemctl enable pi-bluetooth.hciuart.service
171
171
172 else # if ENABLE_BLUETOOTH = false
172 else # if ENABLE_BLUETOOTH = false
173 # set overlay to disable bluetooth
173 # set overlay to disable bluetooth
174 echo "dtoverlay=pi3-disable-bt" >> "${BOOT_DIR}/config.txt"
174 echo "dtoverlay=pi3-disable-bt" >> "${BOOT_DIR}/config.txt"
175 fi # ENABLE_BLUETOOTH end
175 fi # ENABLE_BLUETOOTH end
176 fi
176 fi
177
177
178 # may need sudo systemctl disable hciuart
178 # may need sudo systemctl disable hciuart
179 if [ "$ENABLE_CONSOLE" = true ] ; then
179 if [ "$ENABLE_CONSOLE" = true ] ; then
180 echo "enable_uart=1" >> "${BOOT_DIR}/config.txt"
180 echo "enable_uart=1" >> "${BOOT_DIR}/config.txt"
181 # add string to cmdline
181 # add string to cmdline
182 CMDLINE="${CMDLINE} console=serial0,115200"
182 CMDLINE="${CMDLINE} console=serial0,115200"
183
183
184 # Enable serial console systemd style
184 # Enable serial console systemd style
185 chroot_exec systemctl enable serial-getty\@serial0.service
185 chroot_exec systemctl enable serial-getty\@serial0.service
186 else
186 else
187 echo "enable_uart=0" >> "${BOOT_DIR}/config.txt"
187 echo "enable_uart=0" >> "${BOOT_DIR}/config.txt"
188 fi
188 fi
189
189
190 if [ "$ENABLE_SYSTEMDSWAP" = true ] ; then
190 if [ "$ENABLE_SYSTEMDSWAP" = true ] ; then
191 # Create temporary directory for systemd-swap sources
191 # Create temporary directory for systemd-swap sources
192 temp_dir=$(as_nobody mktemp -d)
192 temp_dir=$(as_nobody mktemp -d)
193
193
194 # Fetch systemd-swap sources
194 # Fetch systemd-swap sources
195 as_nobody git -C "${temp_dir}" clone "${SYSTEMDSWAP_URL}"
195 as_nobody git -C "${temp_dir}" clone "${SYSTEMDSWAP_URL}"
196
196
197 # Copy downloaded systemd-swap sources
197 # Copy downloaded systemd-swap sources
198 mv "${temp_dir}/systemd-swap" "${R}/tmp/"
198 mv "${temp_dir}/systemd-swap" "${R}/tmp/"
199
199
200 # Change into downloaded src dir
200 # Change into downloaded src dir
201 cd "${R}/tmp/systemd-swap" || exit
201 cd "${R}/tmp/systemd-swap" || exit
202
202
203 # Build package
203 # Build package
204 bash ./package.sh debian
204 bash ./package.sh debian
205
205
206 # Change back into script root dir
206 # Change back into script root dir
207 cd "${WORKDIR}" || exit
207 cd "${WORKDIR}" || exit
208
208
209 # Set permissions of the systemd-swap sources
209 # Set permissions of the systemd-swap sources
210 chown -R root:root "${R}/tmp/systemd-swap"
210 chown -R root:root "${R}/tmp/systemd-swap"
211
211
212 # Install package - IMPROVE AND MAKE IT POSSIBLE WITHOUT VERSION NR.
212 # Install package - IMPROVE AND MAKE IT POSSIBLE WITHOUT VERSION NR.
213 chroot_exec dpkg -i /tmp/systemd-swap/systemd-swap_4.0.1_any.deb
213 chroot_exec dpkg -i /tmp/systemd-swap/systemd-swap_4.0.1_any.deb
214
214
215 # Enable service
215 # Enable service
216 chroot_exec systemctl enable systemd-swap
216 chroot_exec systemctl enable systemd-swap
217
217
218 # Remove temporary directory for systemd-swap sources
218 # Remove temporary directory for systemd-swap sources
219 rm -fr "${temp_dir}"
219 rm -fr "${temp_dir}"
220 else
220 else
221 # Enable ZSWAP in cmdline if systemd-swap is not used
221 # Enable ZSWAP in cmdline if systemd-swap is not used
222 if [ "$KERNEL_ZSWAP" = true ] ; then
222 if [ "$KERNEL_ZSWAP" = true ] ; then
223 CMDLINE="${CMDLINE} zswap.enabled=1 zswap.max_pool_percent=25 zswap.compressor=lz4"
223 CMDLINE="${CMDLINE} zswap.enabled=1 zswap.max_pool_percent=25 zswap.compressor=lz4"
224 fi
224 fi
225 fi
225 fi
226 if [ "$KERNEL_SECURITY" = true ] ; then
226 if [ "$KERNEL_SECURITY" = true ] ; then
227 CMDLINE="${CMDLINE} apparmor=1 security=apparmor"
227 CMDLINE="${CMDLINE} apparmor=1 security=apparmor"
228 fi
228 fi
229
229
230 # Install firmware boot cmdline
230 # Install firmware boot cmdline
231 echo "${CMDLINE}" > "${BOOT_DIR}/cmdline.txt"
231 echo "${CMDLINE}" > "${BOOT_DIR}/cmdline.txt"
232
232
233 # Setup minimal GPU memory allocation size: 16MB (no X)
233 # Setup minimal GPU memory allocation size: 16MB (no X)
234 if [ "$ENABLE_MINGPU" = true ] ; then
234 if [ "$ENABLE_MINGPU" = true ] ; then
235 echo "gpu_mem=16" >> "${BOOT_DIR}/config.txt"
235 echo "gpu_mem=16" >> "${BOOT_DIR}/config.txt"
236 fi
236 fi
237
237
238 # Setup boot with initramfs
238 # Setup boot with initramfs
239 if [ "$ENABLE_INITRAMFS" = true ] ; then
239 if [ "$ENABLE_INITRAMFS" = true ] ; then
240 echo "initramfs initramfs-${KERNEL_VERSION} followkernel" >> "${BOOT_DIR}/config.txt"
240 echo "initramfs initramfs-${KERNEL_VERSION} followkernel" >> "${BOOT_DIR}/config.txt"
241 fi
241 fi
242
242
243 # Create firmware configuration and cmdline symlinks
243 # Create firmware configuration and cmdline symlinks
244 ln -sf firmware/config.txt "${R}/boot/config.txt"
244 ln -sf firmware/config.txt "${R}/boot/config.txt"
245 ln -sf firmware/cmdline.txt "${R}/boot/cmdline.txt"
245 ln -sf firmware/cmdline.txt "${R}/boot/cmdline.txt"
246
246
247 # Install and setup kernel modules to load at boot
247 # Install and setup kernel modules to load at boot
248 mkdir -p "${LIB_DIR}/modules-load.d/"
248 mkdir -p "${LIB_DIR}/modules-load.d/"
249 install_readonly files/modules/rpi2.conf "${LIB_DIR}/modules-load.d/rpi2.conf"
249 install_readonly files/modules/rpi2.conf "${LIB_DIR}/modules-load.d/rpi2.conf"
250
250
251 # Load hardware random module at boot
251 # Load hardware random module at boot
252 if [ "$ENABLE_HWRANDOM" = true ] && [ "$BUILD_KERNEL" = false ] ; then
252 if [ "$ENABLE_HWRANDOM" = true ] && [ "$BUILD_KERNEL" = false ] ; then
253 sed -i "s/^# bcm2708_rng/bcm2708_rng/" "${LIB_DIR}/modules-load.d/rpi2.conf"
253 sed -i "s/^# bcm2708_rng/bcm2708_rng/" "${LIB_DIR}/modules-load.d/rpi2.conf"
254 fi
254 fi
255
255
256 # Load sound module at boot
256 # Load sound module at boot
257 if [ "$ENABLE_SOUND" = true ] ; then
257 if [ "$ENABLE_SOUND" = true ] ; then
258 sed -i "s/^# snd_bcm2835/snd_bcm2835/" "${LIB_DIR}/modules-load.d/rpi2.conf"
258 sed -i "s/^# snd_bcm2835/snd_bcm2835/" "${LIB_DIR}/modules-load.d/rpi2.conf"
259 else
259 else
260 echo "dtparam=audio=off" >> "${BOOT_DIR}/config.txt"
260 echo "dtparam=audio=off" >> "${BOOT_DIR}/config.txt"
261 fi
261 fi
262
262
263 # Enable I2C interface
263 # Enable I2C interface
264 if [ "$ENABLE_I2C" = true ] ; then
264 if [ "$ENABLE_I2C" = true ] ; then
265 echo "dtparam=i2c_arm=on" >> "${BOOT_DIR}/config.txt"
265 echo "dtparam=i2c_arm=on" >> "${BOOT_DIR}/config.txt"
266 sed -i "s/^# i2c-bcm2708/i2c-bcm2708/" "${LIB_DIR}/modules-load.d/rpi2.conf"
266 sed -i "s/^# i2c-bcm2708/i2c-bcm2708/" "${LIB_DIR}/modules-load.d/rpi2.conf"
267 sed -i "s/^# i2c-dev/i2c-dev/" "${LIB_DIR}/modules-load.d/rpi2.conf"
267 sed -i "s/^# i2c-dev/i2c-dev/" "${LIB_DIR}/modules-load.d/rpi2.conf"
268 fi
268 fi
269
269
270 # Enable SPI interface
270 # Enable SPI interface
271 if [ "$ENABLE_SPI" = true ] ; then
271 if [ "$ENABLE_SPI" = true ] ; then
272 echo "dtparam=spi=on" >> "${BOOT_DIR}/config.txt"
272 echo "dtparam=spi=on" >> "${BOOT_DIR}/config.txt"
273 echo "spi-bcm2708" >> "${LIB_DIR}/modules-load.d/rpi2.conf"
273 echo "spi-bcm2708" >> "${LIB_DIR}/modules-load.d/rpi2.conf"
274 if [ "$RPI_MODEL" = 3 ] || [ "$RPI_MODEL" = 3P ]; then
274 if [ "$RPI_MODEL" = 3 ] || [ "$RPI_MODEL" = 3P ]; then
275 sed -i "s/spi-bcm2708/spi-bcm2835/" "${LIB_DIR}/modules-load.d/rpi2.conf"
275 sed -i "s/spi-bcm2708/spi-bcm2835/" "${LIB_DIR}/modules-load.d/rpi2.conf"
276 fi
276 fi
277 fi
277 fi
278
278
279 # Disable RPi2/3 under-voltage warnings
279 # Disable RPi2/3 under-voltage warnings
280 if [ -n "$DISABLE_UNDERVOLT_WARNINGS" ] ; then
280 if [ -n "$DISABLE_UNDERVOLT_WARNINGS" ] ; then
281 echo "avoid_warnings=${DISABLE_UNDERVOLT_WARNINGS}" >> "${BOOT_DIR}/config.txt"
281 echo "avoid_warnings=${DISABLE_UNDERVOLT_WARNINGS}" >> "${BOOT_DIR}/config.txt"
282 fi
282 fi
283
283
284 # Install kernel modules blacklist
284 # Install kernel modules blacklist
285 mkdir -p "${ETC_DIR}/modprobe.d/"
285 mkdir -p "${ETC_DIR}/modprobe.d/"
286 install_readonly files/modules/raspi-blacklist.conf "${ETC_DIR}/modprobe.d/raspi-blacklist.conf"
286 install_readonly files/modules/raspi-blacklist.conf "${ETC_DIR}/modprobe.d/raspi-blacklist.conf"
287
287
288 # Install sysctl.d configuration files
288 # Install sysctl.d configuration files
289 install_readonly files/sysctl.d/81-rpi-vm.conf "${ETC_DIR}/sysctl.d/81-rpi-vm.conf"
289 install_readonly files/sysctl.d/81-rpi-vm.conf "${ETC_DIR}/sysctl.d/81-rpi-vm.conf"
@@ -1,146 +1,132
1 #
1 #
2 # Setup Networking
2 # Setup Networking
3 #
3 #
4
4
5 # Load utility functions
5 # Load utility functions
6 . ./functions.sh
6 . ./functions.sh
7
7
8 # Install and setup hostname
8 # Install and setup hostname
9 install_readonly files/network/hostname "${ETC_DIR}/hostname"
9 install_readonly files/network/hostname "${ETC_DIR}/hostname"
10 sed -i "s/^RaspberryPI/${HOSTNAME}/" "${ETC_DIR}/hostname"
10 sed -i "s/^RaspberryPI/${HOSTNAME}/" "${ETC_DIR}/hostname"
11
11
12 # Install and setup hosts
12 # Install and setup hosts
13 install_readonly files/network/hosts "${ETC_DIR}/hosts"
13 install_readonly files/network/hosts "${ETC_DIR}/hosts"
14 sed -i "s/RaspberryPI/${HOSTNAME}/" "${ETC_DIR}/hosts"
14 sed -i "s/RaspberryPI/${HOSTNAME}/" "${ETC_DIR}/hosts"
15
15
16 # Setup hostname entry with static IP
16 # Setup hostname entry with static IP
17 if [ "$NET_ADDRESS" != "" ] ; then
17 if [ "$NET_ADDRESS" != "" ] ; then
18 NET_IP=$(echo "${NET_ADDRESS}" | cut -f 1 -d'/')
18 NET_IP=$(echo "${NET_ADDRESS}" | cut -f 1 -d'/')
19 sed -i "s/^127.0.1.1/${NET_IP}/" "${ETC_DIR}/hosts"
19 sed -i "s/^127.0.1.1/${NET_IP}/" "${ETC_DIR}/hosts"
20 fi
20 fi
21
21
22 # Remove IPv6 hosts
22 # Remove IPv6 hosts
23 if [ "$ENABLE_IPV6" = false ] ; then
23 if [ "$ENABLE_IPV6" = false ] ; then
24 sed -i -e "/::[1-9]/d" -e "/^$/d" "${ETC_DIR}/hosts"
24 sed -i -e "/::[1-9]/d" -e "/^$/d" "${ETC_DIR}/hosts"
25 fi
25 fi
26
26
27 # Install hint about network configuration
27 # Install hint about network configuration
28 install_readonly files/network/interfaces "${ETC_DIR}/network/interfaces"
28 install_readonly files/network/interfaces "${ETC_DIR}/network/interfaces"
29
29
30 # Install configuration for interface eth0
30 # Install configuration for interface eth0
31 install_readonly files/network/eth.network "${ETC_DIR}/systemd/network/eth.network"
31 install_readonly files/network/eth.network "${ETC_DIR}/systemd/network/eth.network"
32
32
33 # Install configuration for interface wl*
33 # Install configuration for interface wl*
34 install_readonly files/network/wlan.network "${ETC_DIR}/systemd/network/wlan.network"
34 install_readonly files/network/wlan.network "${ETC_DIR}/systemd/network/wlan.network"
35
35
36 #always with dhcp since wpa_supplicant integration is missing
36 #always with dhcp since wpa_supplicant integration is missing
37 sed -i -e "s/DHCP=.*/DHCP=yes/" -e "/DHCP/q" "${ETC_DIR}/systemd/network/wlan.network"
37 sed -i -e "s/DHCP=.*/DHCP=yes/" -e "/DHCP/q" "${ETC_DIR}/systemd/network/wlan.network"
38
38
39 if [ "$ENABLE_DHCP" = true ] ; then
39 if [ "$ENABLE_DHCP" = true ] ; then
40 # Enable DHCP configuration for interface eth0
40 # Enable DHCP configuration for interface eth0
41 sed -i -e "s/DHCP=.*/DHCP=yes/" -e "/DHCP/q" "${ETC_DIR}/systemd/network/eth.network"
41 sed -i -e "s/DHCP=.*/DHCP=yes/" -e "/DHCP/q" "${ETC_DIR}/systemd/network/eth.network"
42
42
43 # Set DHCP configuration to IPv4 only
43 # Set DHCP configuration to IPv4 only
44 if [ "$ENABLE_IPV6" = false ] ; then
44 if [ "$ENABLE_IPV6" = false ] ; then
45 sed -i "s/DHCP=.*/DHCP=v4/" "${ETC_DIR}/systemd/network/eth.network"
45 sed -i "s/DHCP=.*/DHCP=v4/" "${ETC_DIR}/systemd/network/eth.network"
46 fi
46 fi
47
47
48 else # ENABLE_DHCP=false
48 else # ENABLE_DHCP=false
49 # Set static network configuration for interface eth0
49 # Set static network configuration for interface eth0
50 sed -i\
50 sed -i\
51 -e "s|DHCP=.*|DHCP=no|"\
51 -e "s|DHCP=.*|DHCP=no|"\
52 -e "s|Address=\$|Address=${NET_ADDRESS}|"\
52 -e "s|Address=\$|Address=${NET_ADDRESS}|"\
53 -e "s|Gateway=\$|Gateway=${NET_GATEWAY}|"\
53 -e "s|Gateway=\$|Gateway=${NET_GATEWAY}|"\
54 -e "0,/DNS=\$/ s|DNS=\$|DNS=${NET_DNS_1}|"\
54 -e "0,/DNS=\$/ s|DNS=\$|DNS=${NET_DNS_1}|"\
55 -e "0,/DNS=\$/ s|DNS=\$|DNS=${NET_DNS_2}|"\
55 -e "0,/DNS=\$/ s|DNS=\$|DNS=${NET_DNS_2}|"\
56 -e "s|Domains=\$|Domains=${NET_DNS_DOMAINS}|"\
56 -e "s|Domains=\$|Domains=${NET_DNS_DOMAINS}|"\
57 -e "0,/NTP=\$/ s|NTP=\$|NTP=${NET_NTP_1}|"\
57 -e "0,/NTP=\$/ s|NTP=\$|NTP=${NET_NTP_1}|"\
58 -e "0,/NTP=\$/ s|NTP=\$|NTP=${NET_NTP_2}|"\
58 -e "0,/NTP=\$/ s|NTP=\$|NTP=${NET_NTP_2}|"\
59 "${ETC_DIR}/systemd/network/eth.network"
59 "${ETC_DIR}/systemd/network/eth.network"
60
61 if [ "$CRYPTFS_DROPBEAR" = true ] ; then
62 # Get cdir from NET_ADDRESS e.g. 24
63 cdir=$(${NET_ADDRESS} | cut -d '/' -f2)
64
65 # Convert cdir ro netmask e.g. 24 to 255.255.255.0
66 NET_MASK=$(cdr2mask "$cdir")
67
68 # Write static ip settings to "${ETC_DIR}"/initramfs-tools/initramfs.conf
69 sed -i "\$aIP=${NET_ADDRESS}::${NET_GATEWAY}:${NET_MASK}:${HOSTNAME}:" "${ETC_DIR}"/initramfs-tools/initramfs.conf
70
71 # Regenerate initramfs
72 chroot_exec mkinitramfs -o "/boot/firmware/initramfs-${KERNEL_VERSION}" "${KERNEL_VERSION}"
73 fi
74 fi
60 fi
75
61
76 # Remove empty settings from network configuration
62 # Remove empty settings from network configuration
77 sed -i "/.*=\$/d" "${ETC_DIR}/systemd/network/eth.network"
63 sed -i "/.*=\$/d" "${ETC_DIR}/systemd/network/eth.network"
78 # Remove empty settings from wlan configuration
64 # Remove empty settings from wlan configuration
79 sed -i "/.*=\$/d" "${ETC_DIR}/systemd/network/wlan.network"
65 sed -i "/.*=\$/d" "${ETC_DIR}/systemd/network/wlan.network"
80
66
81 # Move systemd network configuration if required by Debian release
67 # Move systemd network configuration if required by Debian release
82 mv -v "${ETC_DIR}/systemd/network/eth.network" "${LIB_DIR}/systemd/network/10-eth.network"
68 mv -v "${ETC_DIR}/systemd/network/eth.network" "${LIB_DIR}/systemd/network/10-eth.network"
83 # If WLAN is enabled copy wlan configuration too
69 # If WLAN is enabled copy wlan configuration too
84 if [ "$ENABLE_WIRELESS" = true ] ; then
70 if [ "$ENABLE_WIRELESS" = true ] ; then
85 mv -v "${ETC_DIR}/systemd/network/wlan.network" "${LIB_DIR}/systemd/network/11-wlan.network"
71 mv -v "${ETC_DIR}/systemd/network/wlan.network" "${LIB_DIR}/systemd/network/11-wlan.network"
86 fi
72 fi
87 rm -fr "${ETC_DIR}/systemd/network"
73 rm -fr "${ETC_DIR}/systemd/network"
88
74
89 # Enable systemd-networkd service
75 # Enable systemd-networkd service
90 chroot_exec systemctl enable systemd-networkd
76 chroot_exec systemctl enable systemd-networkd
91
77
92 # Install host.conf resolver configuration
78 # Install host.conf resolver configuration
93 install_readonly files/network/host.conf "${ETC_DIR}/host.conf"
79 install_readonly files/network/host.conf "${ETC_DIR}/host.conf"
94
80
95 # Enable network stack hardening
81 # Enable network stack hardening
96 if [ "$ENABLE_HARDNET" = true ] ; then
82 if [ "$ENABLE_HARDNET" = true ] ; then
97 # Install sysctl.d configuration files
83 # Install sysctl.d configuration files
98 install_readonly files/sysctl.d/82-rpi-net-hardening.conf "${ETC_DIR}/sysctl.d/82-rpi-net-hardening.conf"
84 install_readonly files/sysctl.d/82-rpi-net-hardening.conf "${ETC_DIR}/sysctl.d/82-rpi-net-hardening.conf"
99
85
100 # Setup resolver warnings about spoofed addresses
86 # Setup resolver warnings about spoofed addresses
101 sed -i "s/^# spoof warn/spoof warn/" "${ETC_DIR}/host.conf"
87 sed -i "s/^# spoof warn/spoof warn/" "${ETC_DIR}/host.conf"
102 fi
88 fi
103
89
104 # Enable time sync
90 # Enable time sync
105 if [ "$NET_NTP_1" != "" ] ; then
91 if [ "$NET_NTP_1" != "" ] ; then
106 chroot_exec systemctl enable systemd-timesyncd.service
92 chroot_exec systemctl enable systemd-timesyncd.service
107 fi
93 fi
108
94
109 # Download the firmware binary blob required to use the RPi3 wireless interface
95 # Download the firmware binary blob required to use the RPi3 wireless interface
110 if [ "$ENABLE_WIRELESS" = true ] ; then
96 if [ "$ENABLE_WIRELESS" = true ] ; then
111 if [ ! -d "${WLAN_FIRMWARE_DIR}" ] ; then
97 if [ ! -d "${WLAN_FIRMWARE_DIR}" ] ; then
112 mkdir -p "${WLAN_FIRMWARE_DIR}"
98 mkdir -p "${WLAN_FIRMWARE_DIR}"
113 fi
99 fi
114
100
115 # Create temporary directory for firmware binary blob
101 # Create temporary directory for firmware binary blob
116 temp_dir=$(as_nobody mktemp -d)
102 temp_dir=$(as_nobody mktemp -d)
117
103
118 # Fetch firmware binary blob for RPI3B+
104 # Fetch firmware binary blob for RPI3B+
119 if [ "$RPI_MODEL" = 3P ] ; then
105 if [ "$RPI_MODEL" = 3P ] ; then
120 # Fetch firmware binary blob for RPi3P
106 # Fetch firmware binary blob for RPi3P
121 as_nobody wget -q -O "${temp_dir}/brcmfmac43455-sdio.bin" "${WLAN_FIRMWARE_URL}/brcmfmac43455-sdio.bin"
107 as_nobody wget -q -O "${temp_dir}/brcmfmac43455-sdio.bin" "${WLAN_FIRMWARE_URL}/brcmfmac43455-sdio.bin"
122 as_nobody wget -q -O "${temp_dir}/brcmfmac43455-sdio.txt" "${WLAN_FIRMWARE_URL}/brcmfmac43455-sdio.txt"
108 as_nobody wget -q -O "${temp_dir}/brcmfmac43455-sdio.txt" "${WLAN_FIRMWARE_URL}/brcmfmac43455-sdio.txt"
123 as_nobody wget -q -O "${temp_dir}/brcmfmac43455-sdio.clm_blob" "${WLAN_FIRMWARE_URL}/brcmfmac43455-sdio.clm_blob"
109 as_nobody wget -q -O "${temp_dir}/brcmfmac43455-sdio.clm_blob" "${WLAN_FIRMWARE_URL}/brcmfmac43455-sdio.clm_blob"
124
110
125 # Move downloaded firmware binary blob
111 # Move downloaded firmware binary blob
126 mv "${temp_dir}/brcmfmac43455-sdio."* "${WLAN_FIRMWARE_DIR}/"
112 mv "${temp_dir}/brcmfmac43455-sdio."* "${WLAN_FIRMWARE_DIR}/"
127
113
128 # Set permissions of the firmware binary blob
114 # Set permissions of the firmware binary blob
129 chown root:root "${WLAN_FIRMWARE_DIR}/brcmfmac43455-sdio."*
115 chown root:root "${WLAN_FIRMWARE_DIR}/brcmfmac43455-sdio."*
130 chmod 600 "${WLAN_FIRMWARE_DIR}/brcmfmac43455-sdio."*
116 chmod 600 "${WLAN_FIRMWARE_DIR}/brcmfmac43455-sdio."*
131 elif [ "$RPI_MODEL" = 3 ] || [ "$RPI_MODEL" = 0 ] ; then
117 elif [ "$RPI_MODEL" = 3 ] || [ "$RPI_MODEL" = 0 ] ; then
132 # Fetch firmware binary blob for RPi3
118 # Fetch firmware binary blob for RPi3
133 as_nobody wget -q -O "${temp_dir}/brcmfmac43430-sdio.bin" "${WLAN_FIRMWARE_URL}/brcmfmac43430-sdio.bin"
119 as_nobody wget -q -O "${temp_dir}/brcmfmac43430-sdio.bin" "${WLAN_FIRMWARE_URL}/brcmfmac43430-sdio.bin"
134 as_nobody wget -q -O "${temp_dir}/brcmfmac43430-sdio.txt" "${WLAN_FIRMWARE_URL}/brcmfmac43430-sdio.txt"
120 as_nobody wget -q -O "${temp_dir}/brcmfmac43430-sdio.txt" "${WLAN_FIRMWARE_URL}/brcmfmac43430-sdio.txt"
135
121
136 # Move downloaded firmware binary blob
122 # Move downloaded firmware binary blob
137 mv "${temp_dir}/brcmfmac43430-sdio."* "${WLAN_FIRMWARE_DIR}/"
123 mv "${temp_dir}/brcmfmac43430-sdio."* "${WLAN_FIRMWARE_DIR}/"
138
124
139 # Set permissions of the firmware binary blob
125 # Set permissions of the firmware binary blob
140 chown root:root "${WLAN_FIRMWARE_DIR}/brcmfmac43430-sdio."*
126 chown root:root "${WLAN_FIRMWARE_DIR}/brcmfmac43430-sdio."*
141 chmod 600 "${WLAN_FIRMWARE_DIR}/brcmfmac43430-sdio."*
127 chmod 600 "${WLAN_FIRMWARE_DIR}/brcmfmac43430-sdio."*
142 fi
128 fi
143
129
144 # Remove temporary directory for firmware binary blob
130 # Remove temporary directory for firmware binary blob
145 rm -fr "${temp_dir}"
131 rm -fr "${temp_dir}"
146 fi
132 fi
@@ -1,882 +1,884
1 #!/bin/sh
1 #!/bin/sh
2 ########################################################################
2 ########################################################################
3 # rpi23-gen-image.sh 2015-2017
3 # rpi23-gen-image.sh 2015-2017
4 #
4 #
5 # Advanced Debian "stretch" and "buster" bootstrap script for Raspberry Pi
5 # Advanced Debian "stretch" and "buster" bootstrap script for Raspberry Pi
6 #
6 #
7 # This program is free software; you can redistribute it and/or
7 # This program is free software; you can redistribute it and/or
8 # modify it under the terms of the GNU General Public License
8 # modify it under the terms of the GNU General Public License
9 # as published by the Free Software Foundation; either version 2
9 # as published by the Free Software Foundation; either version 2
10 # of the License, or (at your option) any later version.
10 # of the License, or (at your option) any later version.
11 #
11 #
12 # Copyright (C) 2015 Jan Wagner <mail@jwagner.eu>
12 # Copyright (C) 2015 Jan Wagner <mail@jwagner.eu>
13 #
13 #
14 # Big thanks for patches and enhancements by 20+ github contributors!
14 # Big thanks for patches and enhancements by 20+ github contributors!
15 ########################################################################
15 ########################################################################
16
16
17 # Are we running as root?
17 # Are we running as root?
18 if [ "$(id -u)" -ne "0" ] ; then
18 if [ "$(id -u)" -ne "0" ] ; then
19 echo "error: this script must be executed with root privileges!"
19 echo "error: this script must be executed with root privileges!"
20 exit 1
20 exit 1
21 fi
21 fi
22
22
23 # Check if ./functions.sh script exists
23 # Check if ./functions.sh script exists
24 if [ ! -r "./functions.sh" ] ; then
24 if [ ! -r "./functions.sh" ] ; then
25 echo "error: './functions.sh' required script not found!"
25 echo "error: './functions.sh' required script not found!"
26 exit 1
26 exit 1
27 fi
27 fi
28
28
29 # Load utility functions
29 # Load utility functions
30 . ./functions.sh
30 . ./functions.sh
31
31
32 # Load parameters from configuration template file
32 # Load parameters from configuration template file
33 if [ -n "$CONFIG_TEMPLATE" ] ; then
33 if [ -n "$CONFIG_TEMPLATE" ] ; then
34 use_template
34 use_template
35 fi
35 fi
36
36
37 # Introduce settings
37 # Introduce settings
38 set -e
38 set -e
39 echo -n -e "\n#\n# RPi 0/1/2/3 Bootstrap Settings\n#\n"
39 echo -n -e "\n#\n# RPi 0/1/2/3 Bootstrap Settings\n#\n"
40 set -x
40 set -x
41
41
42 # Raspberry Pi model configuration
42 # Raspberry Pi model configuration
43 RPI_MODEL=${RPI_MODEL:=2}
43 RPI_MODEL=${RPI_MODEL:=2}
44
44
45 # Debian release
45 # Debian release
46 RELEASE=${RELEASE:=buster}
46 RELEASE=${RELEASE:=buster}
47
47
48 # Kernel Branch
48 # Kernel Branch
49 KERNEL_BRANCH=${KERNEL_BRANCH:=""}
49 KERNEL_BRANCH=${KERNEL_BRANCH:=""}
50
50
51 # URLs
51 # URLs
52 KERNEL_URL=${KERNEL_URL:=https://github.com/raspberrypi/linux}
52 KERNEL_URL=${KERNEL_URL:=https://github.com/raspberrypi/linux}
53 FIRMWARE_URL=${FIRMWARE_URL:=https://github.com/raspberrypi/firmware/raw/master/boot}
53 FIRMWARE_URL=${FIRMWARE_URL:=https://github.com/raspberrypi/firmware/raw/master/boot}
54 WLAN_FIRMWARE_URL=${WLAN_FIRMWARE_URL:=https://github.com/RPi-Distro/firmware-nonfree/raw/master/brcm}
54 WLAN_FIRMWARE_URL=${WLAN_FIRMWARE_URL:=https://github.com/RPi-Distro/firmware-nonfree/raw/master/brcm}
55 COLLABORA_URL=${COLLABORA_URL:=https://repositories.collabora.co.uk/debian}
55 COLLABORA_URL=${COLLABORA_URL:=https://repositories.collabora.co.uk/debian}
56 FBTURBO_URL=${FBTURBO_URL:=https://github.com/ssvb/xf86-video-fbturbo.git}
56 FBTURBO_URL=${FBTURBO_URL:=https://github.com/ssvb/xf86-video-fbturbo.git}
57 UBOOT_URL=${UBOOT_URL:=https://git.denx.de/u-boot.git}
57 UBOOT_URL=${UBOOT_URL:=https://git.denx.de/u-boot.git}
58 VIDEOCORE_URL=${VIDEOCORE_URL:=https://github.com/raspberrypi/userland}
58 VIDEOCORE_URL=${VIDEOCORE_URL:=https://github.com/raspberrypi/userland}
59 BLUETOOTH_URL=${BLUETOOTH_URL:=https://github.com/RPi-Distro/pi-bluetooth.git}
59 BLUETOOTH_URL=${BLUETOOTH_URL:=https://github.com/RPi-Distro/pi-bluetooth.git}
60 NEXMON_URL=${NEXMON_URL:=https://github.com/seemoo-lab/nexmon.git}
60 NEXMON_URL=${NEXMON_URL:=https://github.com/seemoo-lab/nexmon.git}
61 SYSTEMDSWAP_URL=${SYSTEMDSWAP_URL:=https://github.com/Nefelim4ag/systemd-swap.git}
61 SYSTEMDSWAP_URL=${SYSTEMDSWAP_URL:=https://github.com/Nefelim4ag/systemd-swap.git}
62
62
63
63
64 # Kernel deb packages for 32bit kernel
64 # Kernel deb packages for 32bit kernel
65 RPI_32_KERNEL_URL=${RPI_32_KERNEL_URL:=https://github.com/hypriot/rpi-kernel/releases/download/v4.14.34/raspberrypi-kernel_20180422-141901_armhf.deb}
65 RPI_32_KERNEL_URL=${RPI_32_KERNEL_URL:=https://github.com/hypriot/rpi-kernel/releases/download/v4.14.34/raspberrypi-kernel_20180422-141901_armhf.deb}
66 RPI_32_KERNELHEADER_URL=${RPI_32_KERNELHEADER_URL:=https://github.com/hypriot/rpi-kernel/releases/download/v4.14.34/raspberrypi-kernel-headers_20180422-141901_armhf.deb}
66 RPI_32_KERNELHEADER_URL=${RPI_32_KERNELHEADER_URL:=https://github.com/hypriot/rpi-kernel/releases/download/v4.14.34/raspberrypi-kernel-headers_20180422-141901_armhf.deb}
67 # Kernel has KVM and zswap enabled - use if KERNEL_* parameters and precompiled kernel are used
67 # Kernel has KVM and zswap enabled - use if KERNEL_* parameters and precompiled kernel are used
68 RPI3_64_BIS_KERNEL_URL=${RPI3_64_BIS_KERNEL_URL:=https://github.com/sakaki-/bcmrpi3-kernel-bis/releases/download/4.14.80.20181113/bcmrpi3-kernel-bis-4.14.80.20181113.tar.xz}
68 RPI3_64_BIS_KERNEL_URL=${RPI3_64_BIS_KERNEL_URL:=https://github.com/sakaki-/bcmrpi3-kernel-bis/releases/download/4.14.80.20181113/bcmrpi3-kernel-bis-4.14.80.20181113.tar.xz}
69 # Default precompiled 64bit kernel
69 # Default precompiled 64bit kernel
70 RPI3_64_DEF_KERNEL_URL=${RPI3_64_DEF_KERNEL_URL:=https://github.com/sakaki-/bcmrpi3-kernel/releases/download/4.14.80.20181113/bcmrpi3-kernel-4.14.80.20181113.tar.xz}
70 RPI3_64_DEF_KERNEL_URL=${RPI3_64_DEF_KERNEL_URL:=https://github.com/sakaki-/bcmrpi3-kernel/releases/download/4.14.80.20181113/bcmrpi3-kernel-4.14.80.20181113.tar.xz}
71 # Generic
71 # Generic
72 RPI3_64_KERNEL_URL=${RPI3_64_KERNEL_URL:=$RPI3_64_DEF_KERNEL_URL}
72 RPI3_64_KERNEL_URL=${RPI3_64_KERNEL_URL:=$RPI3_64_DEF_KERNEL_URL}
73 # Kali kernel src - used if ENABLE_NEXMON=true (they patch the wlan kernel modul)
73 # Kali kernel src - used if ENABLE_NEXMON=true (they patch the wlan kernel modul)
74 KALI_KERNEL_URL=${KALI_KERNEL_URL:=https://github.com/Re4son/re4son-raspberrypi-linux.git}
74 KALI_KERNEL_URL=${KALI_KERNEL_URL:=https://github.com/Re4son/re4son-raspberrypi-linux.git}
75
75
76 # Build directories
76 # Build directories
77 WORKDIR=$(pwd)
77 WORKDIR=$(pwd)
78 BASEDIR=${BASEDIR:=${WORKDIR}/images/${RELEASE}}
78 BASEDIR=${BASEDIR:=${WORKDIR}/images/${RELEASE}}
79 BUILDDIR="${BASEDIR}/build"
79 BUILDDIR="${BASEDIR}/build"
80
80
81 # Chroot directories
81 # Chroot directories
82 R="${BUILDDIR}/chroot"
82 R="${BUILDDIR}/chroot"
83 ETC_DIR="${R}/etc"
83 ETC_DIR="${R}/etc"
84 LIB_DIR="${R}/lib"
84 LIB_DIR="${R}/lib"
85 BOOT_DIR="${R}/boot/firmware"
85 BOOT_DIR="${R}/boot/firmware"
86 KERNEL_DIR="${R}/usr/src/linux"
86 KERNEL_DIR="${R}/usr/src/linux"
87 WLAN_FIRMWARE_DIR="${LIB_DIR}/firmware/brcm"
87 WLAN_FIRMWARE_DIR="${LIB_DIR}/firmware/brcm"
88 BLUETOOTH_FIRMWARE_DIR="${ETC_DIR}/firmware/bt"
88 BLUETOOTH_FIRMWARE_DIR="${ETC_DIR}/firmware/bt"
89
89
90 # Firmware directory: Blank if download from github
90 # Firmware directory: Blank if download from github
91 RPI_FIRMWARE_DIR=${RPI_FIRMWARE_DIR:=""}
91 RPI_FIRMWARE_DIR=${RPI_FIRMWARE_DIR:=""}
92
92
93 # General settings
93 # General settings
94 SET_ARCH=${SET_ARCH:=32}
94 SET_ARCH=${SET_ARCH:=32}
95 HOSTNAME=${HOSTNAME:=rpi${RPI_MODEL}-${RELEASE}}
95 HOSTNAME=${HOSTNAME:=rpi${RPI_MODEL}-${RELEASE}}
96 PASSWORD=${PASSWORD:=raspberry}
96 PASSWORD=${PASSWORD:=raspberry}
97 USER_PASSWORD=${USER_PASSWORD:=raspberry}
97 USER_PASSWORD=${USER_PASSWORD:=raspberry}
98 DEFLOCAL=${DEFLOCAL:="en_US.UTF-8"}
98 DEFLOCAL=${DEFLOCAL:="en_US.UTF-8"}
99 TIMEZONE=${TIMEZONE:="Europe/Berlin"}
99 TIMEZONE=${TIMEZONE:="Europe/Berlin"}
100 EXPANDROOT=${EXPANDROOT:=true}
100 EXPANDROOT=${EXPANDROOT:=true}
101
101
102 # Keyboard settings
102 # Keyboard settings
103 XKB_MODEL=${XKB_MODEL:=""}
103 XKB_MODEL=${XKB_MODEL:=""}
104 XKB_LAYOUT=${XKB_LAYOUT:=""}
104 XKB_LAYOUT=${XKB_LAYOUT:=""}
105 XKB_VARIANT=${XKB_VARIANT:=""}
105 XKB_VARIANT=${XKB_VARIANT:=""}
106 XKB_OPTIONS=${XKB_OPTIONS:=""}
106 XKB_OPTIONS=${XKB_OPTIONS:=""}
107
107
108 # Network settings (DHCP)
108 # Network settings (DHCP)
109 ENABLE_DHCP=${ENABLE_DHCP:=true}
109 ENABLE_DHCP=${ENABLE_DHCP:=true}
110
110
111 # Network settings (static)
111 # Network settings (static)
112 NET_ADDRESS=${NET_ADDRESS:=""}
112 NET_ADDRESS=${NET_ADDRESS:=""}
113 NET_GATEWAY=${NET_GATEWAY:=""}
113 NET_GATEWAY=${NET_GATEWAY:=""}
114 NET_DNS_1=${NET_DNS_1:=""}
114 NET_DNS_1=${NET_DNS_1:=""}
115 NET_DNS_2=${NET_DNS_2:=""}
115 NET_DNS_2=${NET_DNS_2:=""}
116 NET_DNS_DOMAINS=${NET_DNS_DOMAINS:=""}
116 NET_DNS_DOMAINS=${NET_DNS_DOMAINS:=""}
117 NET_NTP_1=${NET_NTP_1:=""}
117 NET_NTP_1=${NET_NTP_1:=""}
118 NET_NTP_2=${NET_NTP_2:=""}
118 NET_NTP_2=${NET_NTP_2:=""}
119
119
120 # APT settings
120 # APT settings
121 APT_PROXY=${APT_PROXY:=""}
121 APT_PROXY=${APT_PROXY:=""}
122 APT_SERVER=${APT_SERVER:="ftp.debian.org"}
122 APT_SERVER=${APT_SERVER:="ftp.debian.org"}
123
123
124 # Feature settings
124 # Feature settings
125 ENABLE_PRINTK=${ENABLE_PRINTK:=false}
125 ENABLE_PRINTK=${ENABLE_PRINTK:=false}
126 ENABLE_BLUETOOTH=${ENABLE_BLUETOOTH:=false}
126 ENABLE_BLUETOOTH=${ENABLE_BLUETOOTH:=false}
127 ENABLE_MINIUART_OVERLAY=${ENABLE_MINIUART_OVERLAY:=false}
127 ENABLE_MINIUART_OVERLAY=${ENABLE_MINIUART_OVERLAY:=false}
128 ENABLE_CONSOLE=${ENABLE_CONSOLE:=true}
128 ENABLE_CONSOLE=${ENABLE_CONSOLE:=true}
129 ENABLE_I2C=${ENABLE_I2C:=false}
129 ENABLE_I2C=${ENABLE_I2C:=false}
130 ENABLE_SPI=${ENABLE_SPI:=false}
130 ENABLE_SPI=${ENABLE_SPI:=false}
131 ENABLE_IPV6=${ENABLE_IPV6:=true}
131 ENABLE_IPV6=${ENABLE_IPV6:=true}
132 ENABLE_SSHD=${ENABLE_SSHD:=true}
132 ENABLE_SSHD=${ENABLE_SSHD:=true}
133 ENABLE_NONFREE=${ENABLE_NONFREE:=false}
133 ENABLE_NONFREE=${ENABLE_NONFREE:=false}
134 ENABLE_WIRELESS=${ENABLE_WIRELESS:=false}
134 ENABLE_WIRELESS=${ENABLE_WIRELESS:=false}
135 ENABLE_SOUND=${ENABLE_SOUND:=true}
135 ENABLE_SOUND=${ENABLE_SOUND:=true}
136 ENABLE_DBUS=${ENABLE_DBUS:=true}
136 ENABLE_DBUS=${ENABLE_DBUS:=true}
137 ENABLE_HWRANDOM=${ENABLE_HWRANDOM:=true}
137 ENABLE_HWRANDOM=${ENABLE_HWRANDOM:=true}
138 ENABLE_MINGPU=${ENABLE_MINGPU:=false}
138 ENABLE_MINGPU=${ENABLE_MINGPU:=false}
139 ENABLE_XORG=${ENABLE_XORG:=false}
139 ENABLE_XORG=${ENABLE_XORG:=false}
140 ENABLE_WM=${ENABLE_WM:=""}
140 ENABLE_WM=${ENABLE_WM:=""}
141 ENABLE_RSYSLOG=${ENABLE_RSYSLOG:=true}
141 ENABLE_RSYSLOG=${ENABLE_RSYSLOG:=true}
142 ENABLE_USER=${ENABLE_USER:=true}
142 ENABLE_USER=${ENABLE_USER:=true}
143 USER_NAME=${USER_NAME:="pi"}
143 USER_NAME=${USER_NAME:="pi"}
144 ENABLE_ROOT=${ENABLE_ROOT:=false}
144 ENABLE_ROOT=${ENABLE_ROOT:=false}
145 ENABLE_QEMU=${ENABLE_QEMU:=false}
145 ENABLE_QEMU=${ENABLE_QEMU:=false}
146 ENABLE_SYSVINIT=${ENABLE_SYSVINIT:=false}
146 ENABLE_SYSVINIT=${ENABLE_SYSVINIT:=false}
147 ENABLE_KEYGEN=${ENABLE_KEYGEN:=true}
147 ENABLE_KEYGEN=${ENABLE_KEYGEN:=true}
148
148
149 # SSH settings
149 # SSH settings
150 SSH_ENABLE_ROOT=${SSH_ENABLE_ROOT:=false}
150 SSH_ENABLE_ROOT=${SSH_ENABLE_ROOT:=false}
151 SSH_DISABLE_PASSWORD_AUTH=${SSH_DISABLE_PASSWORD_AUTH:=false}
151 SSH_DISABLE_PASSWORD_AUTH=${SSH_DISABLE_PASSWORD_AUTH:=false}
152 SSH_LIMIT_USERS=${SSH_LIMIT_USERS:=false}
152 SSH_LIMIT_USERS=${SSH_LIMIT_USERS:=false}
153 SSH_ROOT_PUB_KEY=${SSH_ROOT_PUB_KEY:=""}
153 SSH_ROOT_PUB_KEY=${SSH_ROOT_PUB_KEY:=""}
154 SSH_USER_PUB_KEY=${SSH_USER_PUB_KEY:=""}
154 SSH_USER_PUB_KEY=${SSH_USER_PUB_KEY:=""}
155
155
156 # Advanced settings
156 # Advanced settings
157 ENABLE_SYSTEMDSWAP=${ENABLE_SYSTEMDSWAP:=false}
157 ENABLE_SYSTEMDSWAP=${ENABLE_SYSTEMDSWAP:=false}
158 ENABLE_MINBASE=${ENABLE_MINBASE:=false}
158 ENABLE_MINBASE=${ENABLE_MINBASE:=false}
159 ENABLE_REDUCE=${ENABLE_REDUCE:=false}
159 ENABLE_REDUCE=${ENABLE_REDUCE:=false}
160 ENABLE_UBOOT=${ENABLE_UBOOT:=false}
160 ENABLE_UBOOT=${ENABLE_UBOOT:=false}
161 UBOOTSRC_DIR=${UBOOTSRC_DIR:=""}
161 UBOOTSRC_DIR=${UBOOTSRC_DIR:=""}
162 ENABLE_UBOOTUSB=${ENABLE_UBOOTUSB=false}
162 ENABLE_USBBOOT=${ENABLE_USBBOOT=false}
163 ENABLE_FBTURBO=${ENABLE_FBTURBO:=false}
163 ENABLE_FBTURBO=${ENABLE_FBTURBO:=false}
164 ENABLE_VIDEOCORE=${ENABLE_VIDEOCORE:=false}
164 ENABLE_VIDEOCORE=${ENABLE_VIDEOCORE:=false}
165 ENABLE_NEXMON=${ENABLE_NEXMON:=false}
165 ENABLE_NEXMON=${ENABLE_NEXMON:=false}
166 VIDEOCORESRC_DIR=${VIDEOCORESRC_DIR:=""}
166 VIDEOCORESRC_DIR=${VIDEOCORESRC_DIR:=""}
167 FBTURBOSRC_DIR=${FBTURBOSRC_DIR:=""}
167 FBTURBOSRC_DIR=${FBTURBOSRC_DIR:=""}
168 NEXMONSRC_DIR=${NEXMONSRC_DIR:=""}
168 NEXMONSRC_DIR=${NEXMONSRC_DIR:=""}
169 ENABLE_HARDNET=${ENABLE_HARDNET:=false}
169 ENABLE_HARDNET=${ENABLE_HARDNET:=false}
170 ENABLE_IPTABLES=${ENABLE_IPTABLES:=false}
170 ENABLE_IPTABLES=${ENABLE_IPTABLES:=false}
171 ENABLE_SPLITFS=${ENABLE_SPLITFS:=false}
171 ENABLE_SPLITFS=${ENABLE_SPLITFS:=false}
172 ENABLE_INITRAMFS=${ENABLE_INITRAMFS:=false}
172 ENABLE_INITRAMFS=${ENABLE_INITRAMFS:=false}
173 ENABLE_IFNAMES=${ENABLE_IFNAMES:=true}
173 ENABLE_IFNAMES=${ENABLE_IFNAMES:=true}
174 DISABLE_UNDERVOLT_WARNINGS=${DISABLE_UNDERVOLT_WARNINGS:=}
174 DISABLE_UNDERVOLT_WARNINGS=${DISABLE_UNDERVOLT_WARNINGS:=}
175
175
176 # Kernel compilation settings
176 # Kernel compilation settings
177 BUILD_KERNEL=${BUILD_KERNEL:=true}
177 BUILD_KERNEL=${BUILD_KERNEL:=true}
178 KERNEL_REDUCE=${KERNEL_REDUCE:=false}
178 KERNEL_REDUCE=${KERNEL_REDUCE:=false}
179 KERNEL_THREADS=${KERNEL_THREADS:=1}
179 KERNEL_THREADS=${KERNEL_THREADS:=1}
180 KERNEL_HEADERS=${KERNEL_HEADERS:=true}
180 KERNEL_HEADERS=${KERNEL_HEADERS:=true}
181 KERNEL_MENUCONFIG=${KERNEL_MENUCONFIG:=false}
181 KERNEL_MENUCONFIG=${KERNEL_MENUCONFIG:=false}
182 KERNEL_REMOVESRC=${KERNEL_REMOVESRC:=true}
182 KERNEL_REMOVESRC=${KERNEL_REMOVESRC:=true}
183 KERNEL_OLDDEFCONFIG=${KERNEL_OLDDEFCONFIG:=false}
183 KERNEL_OLDDEFCONFIG=${KERNEL_OLDDEFCONFIG:=false}
184 KERNEL_CCACHE=${KERNEL_CCACHE:=false}
184 KERNEL_CCACHE=${KERNEL_CCACHE:=false}
185 KERNEL_ZSWAP=${KERNEL_ZSWAP:=false}
185 KERNEL_ZSWAP=${KERNEL_ZSWAP:=false}
186 KERNEL_VIRT=${KERNEL_VIRT:=false}
186 KERNEL_VIRT=${KERNEL_VIRT:=false}
187 KERNEL_BPF=${KERNEL_BPF:=false}
187 KERNEL_BPF=${KERNEL_BPF:=false}
188 KERNEL_DEFAULT_GOV=${KERNEL_DEFAULT_GOV:=powersave}
188 KERNEL_DEFAULT_GOV=${KERNEL_DEFAULT_GOV:=powersave}
189 KERNEL_SECURITY=${KERNEL_SECURITY:=false}
189 KERNEL_SECURITY=${KERNEL_SECURITY:=false}
190 KERNEL_NF=${KERNEL_NF:=false}
190 KERNEL_NF=${KERNEL_NF:=false}
191
191
192 # Kernel compilation from source directory settings
192 # Kernel compilation from source directory settings
193 KERNELSRC_DIR=${KERNELSRC_DIR:=""}
193 KERNELSRC_DIR=${KERNELSRC_DIR:=""}
194 KERNELSRC_CLEAN=${KERNELSRC_CLEAN:=false}
194 KERNELSRC_CLEAN=${KERNELSRC_CLEAN:=false}
195 KERNELSRC_CONFIG=${KERNELSRC_CONFIG:=true}
195 KERNELSRC_CONFIG=${KERNELSRC_CONFIG:=true}
196 KERNELSRC_PREBUILT=${KERNELSRC_PREBUILT:=false}
196 KERNELSRC_PREBUILT=${KERNELSRC_PREBUILT:=false}
197
197
198 # Reduce disk usage settings
198 # Reduce disk usage settings
199 REDUCE_APT=${REDUCE_APT:=true}
199 REDUCE_APT=${REDUCE_APT:=true}
200 REDUCE_DOC=${REDUCE_DOC:=true}
200 REDUCE_DOC=${REDUCE_DOC:=true}
201 REDUCE_MAN=${REDUCE_MAN:=true}
201 REDUCE_MAN=${REDUCE_MAN:=true}
202 REDUCE_VIM=${REDUCE_VIM:=false}
202 REDUCE_VIM=${REDUCE_VIM:=false}
203 REDUCE_BASH=${REDUCE_BASH:=false}
203 REDUCE_BASH=${REDUCE_BASH:=false}
204 REDUCE_HWDB=${REDUCE_HWDB:=true}
204 REDUCE_HWDB=${REDUCE_HWDB:=true}
205 REDUCE_SSHD=${REDUCE_SSHD:=true}
205 REDUCE_SSHD=${REDUCE_SSHD:=true}
206 REDUCE_LOCALE=${REDUCE_LOCALE:=true}
206 REDUCE_LOCALE=${REDUCE_LOCALE:=true}
207
207
208 # Encrypted filesystem settings
208 # Encrypted filesystem settings
209 ENABLE_CRYPTFS=${ENABLE_CRYPTFS:=false}
209 ENABLE_CRYPTFS=${ENABLE_CRYPTFS:=false}
210 CRYPTFS_PASSWORD=${CRYPTFS_PASSWORD:=""}
210 CRYPTFS_PASSWORD=${CRYPTFS_PASSWORD:=""}
211 CRYPTFS_MAPPING=${CRYPTFS_MAPPING:="secure"}
211 CRYPTFS_MAPPING=${CRYPTFS_MAPPING:="secure"}
212 CRYPTFS_CIPHER=${CRYPTFS_CIPHER:="aes-xts-plain64:sha512"}
212 CRYPTFS_CIPHER=${CRYPTFS_CIPHER:="aes-xts-plain64:sha512"}
213 CRYPTFS_XTSKEYSIZE=${CRYPTFS_XTSKEYSIZE:=512}
213 CRYPTFS_XTSKEYSIZE=${CRYPTFS_XTSKEYSIZE:=512}
214 #Dropbear-initramfs supports unlocking encrypted filesystem via SSH on bootup
214 #Dropbear-initramfs supports unlocking encrypted filesystem via SSH on bootup
215 CRYPTFS_DROPBEAR=${CRYPTFS_DROPBEAR:=false}
215 CRYPTFS_DROPBEAR=${CRYPTFS_DROPBEAR:=false}
216 #Provide your own Dropbear Public RSA-OpenSSH Key otherwise it will be generated
216 #Provide your own Dropbear Public RSA-OpenSSH Key otherwise it will be generated
217 CRYPTFS_DROPBEAR_PUBKEY=${CRYPTFS_DROPBEAR_PUBKEY:=""}
217 CRYPTFS_DROPBEAR_PUBKEY=${CRYPTFS_DROPBEAR_PUBKEY:=""}
218
218
219 # Chroot scripts directory
219 # Chroot scripts directory
220 CHROOT_SCRIPTS=${CHROOT_SCRIPTS:=""}
220 CHROOT_SCRIPTS=${CHROOT_SCRIPTS:=""}
221
221
222 # Packages required in the chroot build environment
222 # Packages required in the chroot build environment
223 APT_INCLUDES=${APT_INCLUDES:=""}
223 APT_INCLUDES=${APT_INCLUDES:=""}
224 APT_INCLUDES="${APT_INCLUDES},apt-transport-https,apt-utils,ca-certificates,debian-archive-keyring,dialog,sudo,systemd,sysvinit-utils,locales,keyboard-configuration,console-setup,libnss-systemd"
224 APT_INCLUDES="${APT_INCLUDES},apt-transport-https,apt-utils,ca-certificates,debian-archive-keyring,dialog,sudo,systemd,sysvinit-utils,locales,keyboard-configuration,console-setup,libnss-systemd"
225
225
226 # Packages to exclude from chroot build environment
226 # Packages to exclude from chroot build environment
227 APT_EXCLUDES=${APT_EXCLUDES:=""}
227 APT_EXCLUDES=${APT_EXCLUDES:=""}
228
228
229 # Packages required for bootstrapping
229 # Packages required for bootstrapping
230 REQUIRED_PACKAGES="debootstrap debian-archive-keyring qemu-user-static binfmt-support dosfstools rsync bmap-tools whois git bc psmisc dbus sudo netselect-apt"
230 REQUIRED_PACKAGES="debootstrap debian-archive-keyring qemu-user-static binfmt-support dosfstools rsync bmap-tools whois git bc psmisc dbus sudo netselect-apt"
231 MISSING_PACKAGES=""
231 MISSING_PACKAGES=""
232
232
233 # Packages installed for c/c++ build environment in chroot (keep empty)
233 # Packages installed for c/c++ build environment in chroot (keep empty)
234 COMPILER_PACKAGES=""
234 COMPILER_PACKAGES=""
235
235
236 # Check if apt-cacher-ng has port 3142 open and set APT_PROXY
236 # Check if apt-cacher-ng has port 3142 open and set APT_PROXY
237 APT_CACHER_RUNNING=$(lsof -i :3142 | cut -d ' ' -f3 | uniq | sed '/^\s*$/d')
237 APT_CACHER_RUNNING=$(lsof -i :3142 | cut -d ' ' -f3 | uniq | sed '/^\s*$/d')
238 if [ "${APT_CACHER_RUNNING}" = "apt-cacher-ng" ] ; then
238 if [ "${APT_CACHER_RUNNING}" = "apt-cacher-ng" ] ; then
239 APT_PROXY=http://127.0.0.1:3142/
239 APT_PROXY=http://127.0.0.1:3142/
240 fi
240 fi
241
241
242 # netselect-apt does not know buster yet
242 # netselect-apt does not know buster yet
243 if [ "$RELEASE" = "buster" ] ; then
243 if [ "$RELEASE" = "buster" ] ; then
244 RLS=testing
244 RLS=testing
245 else
245 else
246 RLS="$RELEASE"
246 RLS="$RELEASE"
247 fi
247 fi
248
248
249 if [ -f "$(pwd)/files/apt/sources.list" ] ; then
249 if [ -f "$(pwd)/files/apt/sources.list" ] ; then
250 rm "$(pwd)/files/apt/sources.list"
250 rm "$(pwd)/files/apt/sources.list"
251 fi
251 fi
252
252
253 if [ "$ENABLE_NONFREE" = true ] ; then
253 if [ "$ENABLE_NONFREE" = true ] ; then
254 netselect-apt --arch "$RELEASE_ARCH" -t 3 --sources --nonfree --outfile "$(pwd)/files/apt/sources.list" -d "$RLS"
254 netselect-apt --arch "$RELEASE_ARCH" -t 3 --sources --nonfree --outfile "$(pwd)/files/apt/sources.list" -d "$RLS"
255 else
255 else
256 netselect-apt --arch "$RELEASE_ARCH" -t 3 --sources --outfile "$(pwd)/files/apt/sources.list" -d "$RLS"
256 netselect-apt --arch "$RELEASE_ARCH" -t 3 --sources --outfile "$(pwd)/files/apt/sources.list" -d "$RLS"
257 fi
257 fi
258
258
259 # sed and cut the result string so we can use it as APT_SERVER
259 # sed and cut the result string so we can use it as APT_SERVER
260 APT_SERVER=$(grep -m 1 http files/apt/sources.list | sed "s|http://| |g" | cut -d ' ' -f 3 | sed 's|/$|''|')
260 APT_SERVER=$(grep -m 1 http files/apt/sources.list | sed "s|http://| |g" | cut -d ' ' -f 3 | sed 's|/$|''|')
261
261
262 # make script easier and more stable to use with convenient setup switch. Just setup SET_ARCH and RPI_MODEL and your good to go!
262 # make script easier and more stable to use with convenient setup switch. Just setup SET_ARCH and RPI_MODEL and your good to go!
263 if [ -n "$SET_ARCH" ] ; then
263 if [ -n "$SET_ARCH" ] ; then
264 # 64-bit configuration
264 # 64-bit configuration
265 if [ "$SET_ARCH" = 64 ] ; then
265 if [ "$SET_ARCH" = 64 ] ; then
266 # General 64-bit depended settings
266 # General 64-bit depended settings
267 QEMU_BINARY=${QEMU_BINARY:=/usr/bin/qemu-aarch64-static}
267 QEMU_BINARY=${QEMU_BINARY:=/usr/bin/qemu-aarch64-static}
268 KERNEL_ARCH=${KERNEL_ARCH:=arm64}
268 KERNEL_ARCH=${KERNEL_ARCH:=arm64}
269 KERNEL_BIN_IMAGE=${KERNEL_BIN_IMAGE:="Image"}
269 KERNEL_BIN_IMAGE=${KERNEL_BIN_IMAGE:="Image"}
270
270
271 # Raspberry Pi model specific settings
271 # Raspberry Pi model specific settings
272 if [ "$RPI_MODEL" = 3 ] || [ "$RPI_MODEL" = 3P ] ; then
272 if [ "$RPI_MODEL" = 3 ] || [ "$RPI_MODEL" = 3P ] ; then
273 REQUIRED_PACKAGES="${REQUIRED_PACKAGES} crossbuild-essential-arm64"
273 REQUIRED_PACKAGES="${REQUIRED_PACKAGES} crossbuild-essential-arm64"
274 KERNEL_DEFCONFIG=${KERNEL_DEFCONFIG:=bcmrpi3_defconfig}
274 KERNEL_DEFCONFIG=${KERNEL_DEFCONFIG:=bcmrpi3_defconfig}
275 RELEASE_ARCH=${RELEASE_ARCH:=arm64}
275 RELEASE_ARCH=${RELEASE_ARCH:=arm64}
276 KERNEL_IMAGE=${KERNEL_IMAGE:=kernel8.img}
276 KERNEL_IMAGE=${KERNEL_IMAGE:=kernel8.img}
277 CROSS_COMPILE=${CROSS_COMPILE:=aarch64-linux-gnu-}
277 CROSS_COMPILE=${CROSS_COMPILE:=aarch64-linux-gnu-}
278 else
278 else
279 echo "error: Only Raspberry PI 3 and 3B+ support 64-bit"
279 echo "error: Only Raspberry PI 3 and 3B+ support 64-bit"
280 exit 1
280 exit 1
281 fi
281 fi
282 fi
282 fi
283
283
284 # 32-bit configuration
284 # 32-bit configuration
285 if [ "$SET_ARCH" = 32 ] ; then
285 if [ "$SET_ARCH" = 32 ] ; then
286 # General 32-bit dependend settings
286 # General 32-bit dependend settings
287 QEMU_BINARY=${QEMU_BINARY:=/usr/bin/qemu-arm-static}
287 QEMU_BINARY=${QEMU_BINARY:=/usr/bin/qemu-arm-static}
288 KERNEL_ARCH=${KERNEL_ARCH:=arm}
288 KERNEL_ARCH=${KERNEL_ARCH:=arm}
289 KERNEL_BIN_IMAGE=${KERNEL_BIN_IMAGE:="zImage"}
289 KERNEL_BIN_IMAGE=${KERNEL_BIN_IMAGE:="zImage"}
290
290
291 # Raspberry Pi model specific settings
291 # Raspberry Pi model specific settings
292 if [ "$RPI_MODEL" = 0 ] || [ "$RPI_MODEL" = 1 ] || [ "$RPI_MODEL" = 1P ] ; then
292 if [ "$RPI_MODEL" = 0 ] || [ "$RPI_MODEL" = 1 ] || [ "$RPI_MODEL" = 1P ] ; then
293 REQUIRED_PACKAGES="${REQUIRED_PACKAGES} crossbuild-essential-armel"
293 REQUIRED_PACKAGES="${REQUIRED_PACKAGES} crossbuild-essential-armel"
294 KERNEL_DEFCONFIG=${KERNEL_DEFCONFIG:=bcmrpi_defconfig}
294 KERNEL_DEFCONFIG=${KERNEL_DEFCONFIG:=bcmrpi_defconfig}
295 RELEASE_ARCH=${RELEASE_ARCH:=armel}
295 RELEASE_ARCH=${RELEASE_ARCH:=armel}
296 KERNEL_IMAGE=${KERNEL_IMAGE:=kernel.img}
296 KERNEL_IMAGE=${KERNEL_IMAGE:=kernel.img}
297 CROSS_COMPILE=${CROSS_COMPILE:=arm-linux-gnueabi-}
297 CROSS_COMPILE=${CROSS_COMPILE:=arm-linux-gnueabi-}
298 fi
298 fi
299
299
300 # Raspberry Pi model specific settings
300 # Raspberry Pi model specific settings
301 if [ "$RPI_MODEL" = 2 ] || [ "$RPI_MODEL" = 3 ] || [ "$RPI_MODEL" = 3P ] ; then
301 if [ "$RPI_MODEL" = 2 ] || [ "$RPI_MODEL" = 3 ] || [ "$RPI_MODEL" = 3P ] ; then
302 REQUIRED_PACKAGES="${REQUIRED_PACKAGES} crossbuild-essential-armhf"
302 REQUIRED_PACKAGES="${REQUIRED_PACKAGES} crossbuild-essential-armhf"
303 KERNEL_DEFCONFIG=${KERNEL_DEFCONFIG:=bcm2709_defconfig}
303 KERNEL_DEFCONFIG=${KERNEL_DEFCONFIG:=bcm2709_defconfig}
304 RELEASE_ARCH=${RELEASE_ARCH:=armhf}
304 RELEASE_ARCH=${RELEASE_ARCH:=armhf}
305 KERNEL_IMAGE=${KERNEL_IMAGE:=kernel7.img}
305 KERNEL_IMAGE=${KERNEL_IMAGE:=kernel7.img}
306 CROSS_COMPILE=${CROSS_COMPILE:=arm-linux-gnueabihf-}
306 CROSS_COMPILE=${CROSS_COMPILE:=arm-linux-gnueabihf-}
307 fi
307 fi
308 fi
308 fi
309 # SET_ARCH not set
309 # SET_ARCH not set
310 else
310 else
311 echo "error: Please set '32' or '64' as value for SET_ARCH"
311 echo "error: Please set '32' or '64' as value for SET_ARCH"
312 exit 1
312 exit 1
313 fi
313 fi
314 # Device specific configuration and U-Boot configuration
314 # Device specific configuration and U-Boot configuration
315 case "$RPI_MODEL" in
315 case "$RPI_MODEL" in
316 0)
316 0)
317 DTB_FILE=${DTB_FILE:=bcm2708-rpi-0-w.dtb}
317 DTB_FILE=${DTB_FILE:=bcm2708-rpi-0-w.dtb}
318 UBOOT_CONFIG=${UBOOT_CONFIG:=rpi_defconfig}
318 UBOOT_CONFIG=${UBOOT_CONFIG:=rpi_defconfig}
319 ;;
319 ;;
320 1)
320 1)
321 DTB_FILE=${DTB_FILE:=bcm2708-rpi-b.dtb}
321 DTB_FILE=${DTB_FILE:=bcm2708-rpi-b.dtb}
322 UBOOT_CONFIG=${UBOOT_CONFIG:=rpi_defconfig}
322 UBOOT_CONFIG=${UBOOT_CONFIG:=rpi_defconfig}
323 ;;
323 ;;
324 1P)
324 1P)
325 DTB_FILE=${DTB_FILE:=bcm2708-rpi-b-plus.dtb}
325 DTB_FILE=${DTB_FILE:=bcm2708-rpi-b-plus.dtb}
326 UBOOT_CONFIG=${UBOOT_CONFIG:=rpi_defconfig}
326 UBOOT_CONFIG=${UBOOT_CONFIG:=rpi_defconfig}
327 ;;
327 ;;
328 2)
328 2)
329 DTB_FILE=${DTB_FILE:=bcm2709-rpi-2-b.dtb}
329 DTB_FILE=${DTB_FILE:=bcm2709-rpi-2-b.dtb}
330 UBOOT_CONFIG=${UBOOT_CONFIG:=rpi_2_defconfig}
330 UBOOT_CONFIG=${UBOOT_CONFIG:=rpi_2_defconfig}
331 ;;
331 ;;
332 3)
332 3)
333 DTB_FILE=${DTB_FILE:=bcm2710-rpi-3-b.dtb}
333 DTB_FILE=${DTB_FILE:=bcm2710-rpi-3-b.dtb}
334 UBOOT_CONFIG=${UBOOT_CONFIG:=rpi_3_defconfig}
334 UBOOT_CONFIG=${UBOOT_CONFIG:=rpi_3_defconfig}
335 ;;
335 ;;
336 3P)
336 3P)
337 DTB_FILE=${DTB_FILE:=bcm2710-rpi-3-b.dtb}
337 DTB_FILE=${DTB_FILE:=bcm2710-rpi-3-b.dtb}
338 UBOOT_CONFIG=${UBOOT_CONFIG:=rpi_3_defconfig}
338 UBOOT_CONFIG=${UBOOT_CONFIG:=rpi_3_defconfig}
339 ;;
339 ;;
340 *)
340 *)
341 echo "error: Raspberry Pi model $RPI_MODEL is not supported!"
341 echo "error: Raspberry Pi model $RPI_MODEL is not supported!"
342 exit 1
342 exit 1
343 ;;
343 ;;
344 esac
344 esac
345
345
346 # Raspberry PI 0,3,3P with Bluetooth and Wifi onboard
346 # Raspberry PI 0,3,3P with Bluetooth and Wifi onboard
347 if [ "$RPI_MODEL" = 0 ] || [ "$RPI_MODEL" = 3 ] || [ "$RPI_MODEL" = 3P ] ; then
347 if [ "$RPI_MODEL" = 0 ] || [ "$RPI_MODEL" = 3 ] || [ "$RPI_MODEL" = 3P ] ; then
348 # Include bluetooth packages on supported boards
348 # Include bluetooth packages on supported boards
349 if [ "$ENABLE_BLUETOOTH" = true ] ; then
349 if [ "$ENABLE_BLUETOOTH" = true ] ; then
350 APT_INCLUDES="${APT_INCLUDES},bluetooth,bluez"
350 APT_INCLUDES="${APT_INCLUDES},bluetooth,bluez"
351 fi
351 fi
352 if [ "$ENABLE_WIRELESS" = true ] ; then
352 if [ "$ENABLE_WIRELESS" = true ] ; then
353 APT_INCLUDES="${APT_INCLUDES},wireless-tools,crda,wireless-regdb,firmware-brcm80211"
353 APT_INCLUDES="${APT_INCLUDES},wireless-tools,crda,wireless-regdb,firmware-brcm80211"
354 fi
354 fi
355 else # Raspberry PI 1,1P,2 without Wifi and bluetooth onboard
355 else # Raspberry PI 1,1P,2 without Wifi and bluetooth onboard
356 # Check if the internal wireless interface is not supported by the RPi model
356 # Check if the internal wireless interface is not supported by the RPi model
357 if [ "$ENABLE_WIRELESS" = true ] || [ "$ENABLE_BLUETOOTH" = true ]; then
357 if [ "$ENABLE_WIRELESS" = true ] || [ "$ENABLE_BLUETOOTH" = true ]; then
358 echo "error: The selected Raspberry Pi model has no integrated interface for wireless or bluetooth"
358 echo "error: The selected Raspberry Pi model has no integrated interface for wireless or bluetooth"
359 exit 1
359 exit 1
360 fi
360 fi
361 fi
361 fi
362
362
363 if [ "$BUILD_KERNEL" = false ] && [ "$ENABLE_NEXMON" = true ]; then
363 if [ "$BUILD_KERNEL" = false ] && [ "$ENABLE_NEXMON" = true ]; then
364 echo "error: You have to compile kernel sources, if you want to enable nexmon"
364 echo "error: You have to compile kernel sources, if you want to enable nexmon"
365 exit 1
365 exit 1
366 fi
366 fi
367
367
368 # Prepare date string for default image file name
368 # Prepare date string for default image file name
369 DATE="$(date +%Y-%m-%d)"
369 DATE="$(date +%Y-%m-%d)"
370 if [ -z "$KERNEL_BRANCH" ] ; then
370 if [ -z "$KERNEL_BRANCH" ] ; then
371 IMAGE_NAME=${IMAGE_NAME:=${BASEDIR}/${DATE}-${KERNEL_ARCH}-CURRENT-rpi${RPI_MODEL}-${RELEASE}-${RELEASE_ARCH}}
371 IMAGE_NAME=${IMAGE_NAME:=${BASEDIR}/${DATE}-${KERNEL_ARCH}-CURRENT-rpi${RPI_MODEL}-${RELEASE}-${RELEASE_ARCH}}
372 else
372 else
373 IMAGE_NAME=${IMAGE_NAME:=${BASEDIR}/${DATE}-${KERNEL_ARCH}-${KERNEL_BRANCH}-rpi${RPI_MODEL}-${RELEASE}-${RELEASE_ARCH}}
373 IMAGE_NAME=${IMAGE_NAME:=${BASEDIR}/${DATE}-${KERNEL_ARCH}-${KERNEL_BRANCH}-rpi${RPI_MODEL}-${RELEASE}-${RELEASE_ARCH}}
374 fi
374 fi
375
375
376 # Check if DISABLE_UNDERVOLT_WARNINGS parameter value is supported
376 # Check if DISABLE_UNDERVOLT_WARNINGS parameter value is supported
377 if [ -n "$DISABLE_UNDERVOLT_WARNINGS" ] ; then
377 if [ -n "$DISABLE_UNDERVOLT_WARNINGS" ] ; then
378 if [ "$DISABLE_UNDERVOLT_WARNINGS" != 1 ] && [ "$DISABLE_UNDERVOLT_WARNINGS" != 2 ] ; then
378 if [ "$DISABLE_UNDERVOLT_WARNINGS" != 1 ] && [ "$DISABLE_UNDERVOLT_WARNINGS" != 2 ] ; then
379 echo "error: DISABLE_UNDERVOLT_WARNINGS=${DISABLE_UNDERVOLT_WARNINGS} is not supported"
379 echo "error: DISABLE_UNDERVOLT_WARNINGS=${DISABLE_UNDERVOLT_WARNINGS} is not supported"
380 exit 1
380 exit 1
381 fi
381 fi
382 fi
382 fi
383
383
384 set +x
384 set +x
385
385
386 # Add cmake to compile videocore sources
386 # Add cmake to compile videocore sources
387 if [ "$ENABLE_KEYGEN" = true ] ; then
387 if [ "$ENABLE_KEYGEN" = true ] ; then
388 REQUIRED_PACKAGES="${REQUIRED_PACKAGES} perl"
388 REQUIRED_PACKAGES="${REQUIRED_PACKAGES} perl"
389 fi
389 fi
390
390
391 # Add cmake to compile videocore sources
391 # Add cmake to compile videocore sources
392 if [ "$ENABLE_VIDEOCORE" = true ] ; then
392 if [ "$ENABLE_VIDEOCORE" = true ] ; then
393 REQUIRED_PACKAGES="${REQUIRED_PACKAGES} cmake"
393 REQUIRED_PACKAGES="${REQUIRED_PACKAGES} cmake"
394 fi
394 fi
395
395
396 # Add deps for nexmon
396 # Add deps for nexmon
397 if [ "$ENABLE_NEXMON" = true ] ; then
397 if [ "$ENABLE_NEXMON" = true ] ; then
398 REQUIRED_PACKAGES="${REQUIRED_PACKAGES} libgmp3-dev gawk qpdf bison flex make autoconf automake build-essential libtool"
398 REQUIRED_PACKAGES="${REQUIRED_PACKAGES} libgmp3-dev gawk qpdf bison flex make autoconf automake build-essential libtool"
399 fi
399 fi
400
400
401 # Add libncurses5 to enable kernel menuconfig
401 # Add libncurses5 to enable kernel menuconfig
402 if [ "$KERNEL_MENUCONFIG" = true ] ; then
402 if [ "$KERNEL_MENUCONFIG" = true ] ; then
403 REQUIRED_PACKAGES="${REQUIRED_PACKAGES} libncurses-dev"
403 REQUIRED_PACKAGES="${REQUIRED_PACKAGES} libncurses-dev"
404 fi
404 fi
405
405
406 # Add ccache compiler cache for (faster) kernel cross (re)compilation
406 # Add ccache compiler cache for (faster) kernel cross (re)compilation
407 if [ "$KERNEL_CCACHE" = true ] ; then
407 if [ "$KERNEL_CCACHE" = true ] ; then
408 REQUIRED_PACKAGES="${REQUIRED_PACKAGES} ccache"
408 REQUIRED_PACKAGES="${REQUIRED_PACKAGES} ccache"
409 fi
409 fi
410
410
411 # Add cryptsetup package to enable filesystem encryption
411 # Add cryptsetup package to enable filesystem encryption
412 if [ "$ENABLE_CRYPTFS" = true ] && [ "$BUILD_KERNEL" = true ] ; then
412 if [ "$ENABLE_CRYPTFS" = true ] && [ "$BUILD_KERNEL" = true ] ; then
413 REQUIRED_PACKAGES="${REQUIRED_PACKAGES} cryptsetup"
413 REQUIRED_PACKAGES="${REQUIRED_PACKAGES} cryptsetup"
414 APT_INCLUDES="${APT_INCLUDES},cryptsetup,busybox,console-setup"
414 APT_INCLUDES="${APT_INCLUDES},cryptsetup,busybox,console-setup"
415
415
416 # If cryptfs,dropbear and initramfs are enabled include dropbear-initramfs package
416 # If cryptfs,dropbear and initramfs are enabled include dropbear-initramfs package
417 if [ "$CRYPTFS_DROPBEAR" = true ] && [ "$ENABLE_INITRAMFS" = true ]; then
417 if [ "$CRYPTFS_DROPBEAR" = true ] && [ "$ENABLE_INITRAMFS" = true ]; then
418 APT_INCLUDES="${APT_INCLUDES},dropbear-initramfs"
418 APT_INCLUDES="${APT_INCLUDES},dropbear-initramfs"
419 fi
419 fi
420
420
421 if [ -z "$CRYPTFS_PASSWORD" ] ; then
421 if [ -z "$CRYPTFS_PASSWORD" ] ; then
422 echo "error: no password defined (CRYPTFS_PASSWORD)!"
422 echo "error: no password defined (CRYPTFS_PASSWORD)!"
423 exit 1
423 exit 1
424 fi
424 fi
425 ENABLE_INITRAMFS=true
425 ENABLE_INITRAMFS=true
426 fi
426 fi
427
427
428 # Add initramfs generation tools
428 # Add initramfs generation tools
429 if [ "$ENABLE_INITRAMFS" = true ] && [ "$BUILD_KERNEL" = true ] ; then
429 if [ "$ENABLE_INITRAMFS" = true ] && [ "$BUILD_KERNEL" = true ] ; then
430 APT_INCLUDES="${APT_INCLUDES},initramfs-tools"
430 APT_INCLUDES="${APT_INCLUDES},initramfs-tools"
431 fi
431 fi
432
432
433 # Add device-tree-compiler required for building the U-Boot bootloader
433 # Add device-tree-compiler required for building the U-Boot bootloader
434 if [ "$ENABLE_UBOOT" = true ] ; then
434 if [ "$ENABLE_UBOOT" = true ] ; then
435 APT_INCLUDES="${APT_INCLUDES},device-tree-compiler,bison,flex,bc"
435 APT_INCLUDES="${APT_INCLUDES},device-tree-compiler,bison,flex,bc"
436 #else
436 fi
437 # if [ "$ENABLE_UBOOTUSB" = true ] ; then
437
438 # echo "error: Enabling UBOOTUSB requires u-boot to be enabled"
438 if [ "$ENABLE_USBBOOT" = true ] ; then
439 # exit 1
439 if ["$RPI_MODEL" != 3 ] || ["$RPI_MODEL" != 3P ] ; then
440 # fi
440 echo "error: Booting from USB alone is only supported by Raspberry Pi 3 and 3P"
441 exit 1
442 fi
441 fi
443 fi
442
444
443 # Check if root SSH (v2) public key file exists
445 # Check if root SSH (v2) public key file exists
444 if [ -n "$SSH_ROOT_PUB_KEY" ] ; then
446 if [ -n "$SSH_ROOT_PUB_KEY" ] ; then
445 if [ ! -f "$SSH_ROOT_PUB_KEY" ] ; then
447 if [ ! -f "$SSH_ROOT_PUB_KEY" ] ; then
446 echo "error: '$SSH_ROOT_PUB_KEY' specified SSH public key file not found (SSH_ROOT_PUB_KEY)!"
448 echo "error: '$SSH_ROOT_PUB_KEY' specified SSH public key file not found (SSH_ROOT_PUB_KEY)!"
447 exit 1
449 exit 1
448 fi
450 fi
449 fi
451 fi
450
452
451 # Check if $USER_NAME SSH (v2) public key file exists
453 # Check if $USER_NAME SSH (v2) public key file exists
452 if [ -n "$SSH_USER_PUB_KEY" ] ; then
454 if [ -n "$SSH_USER_PUB_KEY" ] ; then
453 if [ ! -f "$SSH_USER_PUB_KEY" ] ; then
455 if [ ! -f "$SSH_USER_PUB_KEY" ] ; then
454 echo "error: '$SSH_USER_PUB_KEY' specified SSH public key file not found (SSH_USER_PUB_KEY)!"
456 echo "error: '$SSH_USER_PUB_KEY' specified SSH public key file not found (SSH_USER_PUB_KEY)!"
455 exit 1
457 exit 1
456 fi
458 fi
457 fi
459 fi
458
460
459 if [ "$ENABLE_NEXMON" = true ] && [ -n "$KERNEL_BRANCH" ] ; then
461 if [ "$ENABLE_NEXMON" = true ] && [ -n "$KERNEL_BRANCH" ] ; then
460 echo "error: Please unset KERNEL_BRANCH if using ENABLE_NEXMON"
462 echo "error: Please unset KERNEL_BRANCH if using ENABLE_NEXMON"
461 exit 1
463 exit 1
462 fi
464 fi
463
465
464 # Check if all required packages are installed on the build system
466 # Check if all required packages are installed on the build system
465 for package in $REQUIRED_PACKAGES ; do
467 for package in $REQUIRED_PACKAGES ; do
466 if [ "$(dpkg-query -W -f='${Status}' "$package")" != "install ok installed" ] ; then
468 if [ "$(dpkg-query -W -f='${Status}' "$package")" != "install ok installed" ] ; then
467 MISSING_PACKAGES="${MISSING_PACKAGES} $package"
469 MISSING_PACKAGES="${MISSING_PACKAGES} $package"
468 fi
470 fi
469 done
471 done
470
472
471 # If there are missing packages ask confirmation for install, or exit
473 # If there are missing packages ask confirmation for install, or exit
472 if [ -n "$MISSING_PACKAGES" ] ; then
474 if [ -n "$MISSING_PACKAGES" ] ; then
473 echo "the following packages needed by this script are not installed:"
475 echo "the following packages needed by this script are not installed:"
474 echo "$MISSING_PACKAGES"
476 echo "$MISSING_PACKAGES"
475
477
476 printf "\ndo you want to install the missing packages right now? [y/n] "
478 printf "\ndo you want to install the missing packages right now? [y/n] "
477 read -r confirm
479 read -r confirm
478 [ "$confirm" != "y" ] && exit 1
480 [ "$confirm" != "y" ] && exit 1
479
481
480 # Make sure all missing required packages are installed
482 # Make sure all missing required packages are installed
481 apt-get -qq -y install `echo "${MISSING_PACKAGES}" | sed "s/ //"`
483 apt-get -qq -y install `echo "${MISSING_PACKAGES}" | sed "s/ //"`
482 fi
484 fi
483
485
484 # Check if ./bootstrap.d directory exists
486 # Check if ./bootstrap.d directory exists
485 if [ ! -d "./bootstrap.d/" ] ; then
487 if [ ! -d "./bootstrap.d/" ] ; then
486 echo "error: './bootstrap.d' required directory not found!"
488 echo "error: './bootstrap.d' required directory not found!"
487 exit 1
489 exit 1
488 fi
490 fi
489
491
490 # Check if ./files directory exists
492 # Check if ./files directory exists
491 if [ ! -d "./files/" ] ; then
493 if [ ! -d "./files/" ] ; then
492 echo "error: './files' required directory not found!"
494 echo "error: './files' required directory not found!"
493 exit 1
495 exit 1
494 fi
496 fi
495
497
496 # Check if specified KERNELSRC_DIR directory exists
498 # Check if specified KERNELSRC_DIR directory exists
497 if [ -n "$KERNELSRC_DIR" ] && [ ! -d "$KERNELSRC_DIR" ] ; then
499 if [ -n "$KERNELSRC_DIR" ] && [ ! -d "$KERNELSRC_DIR" ] ; then
498 echo "error: '${KERNELSRC_DIR}' specified directory not found (KERNELSRC_DIR)!"
500 echo "error: '${KERNELSRC_DIR}' specified directory not found (KERNELSRC_DIR)!"
499 exit 1
501 exit 1
500 fi
502 fi
501
503
502 # Check if specified UBOOTSRC_DIR directory exists
504 # Check if specified UBOOTSRC_DIR directory exists
503 if [ -n "$UBOOTSRC_DIR" ] && [ ! -d "$UBOOTSRC_DIR" ] ; then
505 if [ -n "$UBOOTSRC_DIR" ] && [ ! -d "$UBOOTSRC_DIR" ] ; then
504 echo "error: '${UBOOTSRC_DIR}' specified directory not found (UBOOTSRC_DIR)!"
506 echo "error: '${UBOOTSRC_DIR}' specified directory not found (UBOOTSRC_DIR)!"
505 exit 1
507 exit 1
506 fi
508 fi
507
509
508 # Check if specified VIDEOCORESRC_DIR directory exists
510 # Check if specified VIDEOCORESRC_DIR directory exists
509 if [ -n "$VIDEOCORESRC_DIR" ] && [ ! -d "$VIDEOCORESRC_DIR" ] ; then
511 if [ -n "$VIDEOCORESRC_DIR" ] && [ ! -d "$VIDEOCORESRC_DIR" ] ; then
510 echo "error: '${VIDEOCORESRC_DIR}' specified directory not found (VIDEOCORESRC_DIR)!"
512 echo "error: '${VIDEOCORESRC_DIR}' specified directory not found (VIDEOCORESRC_DIR)!"
511 exit 1
513 exit 1
512 fi
514 fi
513
515
514 # Check if specified FBTURBOSRC_DIR directory exists
516 # Check if specified FBTURBOSRC_DIR directory exists
515 if [ -n "$FBTURBOSRC_DIR" ] && [ ! -d "$FBTURBOSRC_DIR" ] ; then
517 if [ -n "$FBTURBOSRC_DIR" ] && [ ! -d "$FBTURBOSRC_DIR" ] ; then
516 echo "error: '${FBTURBOSRC_DIR}' specified directory not found (FBTURBOSRC_DIR)!"
518 echo "error: '${FBTURBOSRC_DIR}' specified directory not found (FBTURBOSRC_DIR)!"
517 exit 1
519 exit 1
518 fi
520 fi
519
521
520 # Check if specified NEXMONSRC_DIR directory exists
522 # Check if specified NEXMONSRC_DIR directory exists
521 if [ -n "$NEXMONSRC_DIR" ] && [ ! -d "$NEXMONSRC_DIR" ] ; then
523 if [ -n "$NEXMONSRC_DIR" ] && [ ! -d "$NEXMONSRC_DIR" ] ; then
522 echo "error: '${NEXMONSRC_DIR}' specified directory not found (NEXMONSRC_DIR)!"
524 echo "error: '${NEXMONSRC_DIR}' specified directory not found (NEXMONSRC_DIR)!"
523 exit 1
525 exit 1
524 fi
526 fi
525
527
526 # Check if specified CHROOT_SCRIPTS directory exists
528 # Check if specified CHROOT_SCRIPTS directory exists
527 if [ -n "$CHROOT_SCRIPTS" ] && [ ! -d "$CHROOT_SCRIPTS" ] ; then
529 if [ -n "$CHROOT_SCRIPTS" ] && [ ! -d "$CHROOT_SCRIPTS" ] ; then
528 echo "error: ${CHROOT_SCRIPTS} specified directory not found (CHROOT_SCRIPTS)!"
530 echo "error: ${CHROOT_SCRIPTS} specified directory not found (CHROOT_SCRIPTS)!"
529 exit 1
531 exit 1
530 fi
532 fi
531
533
532 # Check if specified device mapping already exists (will be used by cryptsetup)
534 # Check if specified device mapping already exists (will be used by cryptsetup)
533 if [ -r "/dev/mapping/${CRYPTFS_MAPPING}" ] ; then
535 if [ -r "/dev/mapping/${CRYPTFS_MAPPING}" ] ; then
534 echo "error: mapping /dev/mapping/${CRYPTFS_MAPPING} already exists, not proceeding"
536 echo "error: mapping /dev/mapping/${CRYPTFS_MAPPING} already exists, not proceeding"
535 exit 1
537 exit 1
536 fi
538 fi
537
539
538 # Don't clobber an old build
540 # Don't clobber an old build
539 if [ -e "$BUILDDIR" ] ; then
541 if [ -e "$BUILDDIR" ] ; then
540 echo "error: directory ${BUILDDIR} already exists, not proceeding"
542 echo "error: directory ${BUILDDIR} already exists, not proceeding"
541 exit 1
543 exit 1
542 fi
544 fi
543
545
544 # Setup chroot directory
546 # Setup chroot directory
545 mkdir -p "${R}"
547 mkdir -p "${R}"
546
548
547 # Check if build directory has enough of free disk space >512MB
549 # Check if build directory has enough of free disk space >512MB
548 if [ "$(df --output=avail "${BUILDDIR}" | sed "1d")" -le "524288" ] ; then
550 if [ "$(df --output=avail "${BUILDDIR}" | sed "1d")" -le "524288" ] ; then
549 echo "error: ${BUILDDIR} not enough space left to generate the output image!"
551 echo "error: ${BUILDDIR} not enough space left to generate the output image!"
550 exit 1
552 exit 1
551 fi
553 fi
552
554
553 set -x
555 set -x
554
556
555 # Call "cleanup" function on various signals and errors
557 # Call "cleanup" function on various signals and errors
556 trap cleanup 0 1 2 3 6
558 trap cleanup 0 1 2 3 6
557
559
558 # Add required packages for the minbase installation
560 # Add required packages for the minbase installation
559 if [ "$ENABLE_MINBASE" = true ] ; then
561 if [ "$ENABLE_MINBASE" = true ] ; then
560 APT_INCLUDES="${APT_INCLUDES},vim-tiny,netbase,net-tools,ifupdown"
562 APT_INCLUDES="${APT_INCLUDES},vim-tiny,netbase,net-tools,ifupdown"
561 fi
563 fi
562
564
563 # Add parted package, required to get partprobe utility
565 # Add parted package, required to get partprobe utility
564 if [ "$EXPANDROOT" = true ] ; then
566 if [ "$EXPANDROOT" = true ] ; then
565 APT_INCLUDES="${APT_INCLUDES},parted"
567 APT_INCLUDES="${APT_INCLUDES},parted"
566 fi
568 fi
567
569
568 # Add dbus package, recommended if using systemd
570 # Add dbus package, recommended if using systemd
569 if [ "$ENABLE_DBUS" = true ] ; then
571 if [ "$ENABLE_DBUS" = true ] ; then
570 APT_INCLUDES="${APT_INCLUDES},dbus"
572 APT_INCLUDES="${APT_INCLUDES},dbus"
571 fi
573 fi
572
574
573 # Add iptables IPv4/IPv6 package
575 # Add iptables IPv4/IPv6 package
574 if [ "$ENABLE_IPTABLES" = true ] ; then
576 if [ "$ENABLE_IPTABLES" = true ] ; then
575 APT_INCLUDES="${APT_INCLUDES},iptables,iptables-persistent"
577 APT_INCLUDES="${APT_INCLUDES},iptables,iptables-persistent"
576 fi
578 fi
577 # Add apparmor for KERNEL_SECURITY
579 # Add apparmor for KERNEL_SECURITY
578 if [ "$KERNEL_SECURITY" = true ] ; then
580 if [ "$KERNEL_SECURITY" = true ] ; then
579 APT_INCLUDES="${APT_INCLUDES},apparmor,apparmor-utils,apparmor-profiles,apparmor-profiles-extra,libapparmor-perl"
581 APT_INCLUDES="${APT_INCLUDES},apparmor,apparmor-utils,apparmor-profiles,apparmor-profiles-extra,libapparmor-perl"
580 fi
582 fi
581
583
582 # Add openssh server package
584 # Add openssh server package
583 if [ "$ENABLE_SSHD" = true ] ; then
585 if [ "$ENABLE_SSHD" = true ] ; then
584 APT_INCLUDES="${APT_INCLUDES},openssh-server"
586 APT_INCLUDES="${APT_INCLUDES},openssh-server"
585 fi
587 fi
586
588
587 # Add alsa-utils package
589 # Add alsa-utils package
588 if [ "$ENABLE_SOUND" = true ] ; then
590 if [ "$ENABLE_SOUND" = true ] ; then
589 APT_INCLUDES="${APT_INCLUDES},alsa-utils"
591 APT_INCLUDES="${APT_INCLUDES},alsa-utils"
590 fi
592 fi
591
593
592 # Add rng-tools package
594 # Add rng-tools package
593 if [ "$ENABLE_HWRANDOM" = true ] ; then
595 if [ "$ENABLE_HWRANDOM" = true ] ; then
594 APT_INCLUDES="${APT_INCLUDES},rng-tools"
596 APT_INCLUDES="${APT_INCLUDES},rng-tools"
595 fi
597 fi
596
598
597 # Add fbturbo video driver
599 # Add fbturbo video driver
598 if [ "$ENABLE_FBTURBO" = true ] ; then
600 if [ "$ENABLE_FBTURBO" = true ] ; then
599 # Enable xorg package dependencies
601 # Enable xorg package dependencies
600 ENABLE_XORG=true
602 ENABLE_XORG=true
601 fi
603 fi
602
604
603 # Add user defined window manager package
605 # Add user defined window manager package
604 if [ -n "$ENABLE_WM" ] ; then
606 if [ -n "$ENABLE_WM" ] ; then
605 APT_INCLUDES="${APT_INCLUDES},${ENABLE_WM}"
607 APT_INCLUDES="${APT_INCLUDES},${ENABLE_WM}"
606
608
607 # Enable xorg package dependencies
609 # Enable xorg package dependencies
608 ENABLE_XORG=true
610 ENABLE_XORG=true
609 fi
611 fi
610
612
611 # Add xorg package
613 # Add xorg package
612 if [ "$ENABLE_XORG" = true ] ; then
614 if [ "$ENABLE_XORG" = true ] ; then
613 APT_INCLUDES="${APT_INCLUDES},xorg,dbus-x11"
615 APT_INCLUDES="${APT_INCLUDES},xorg,dbus-x11"
614 fi
616 fi
615
617
616 # Replace selected packages with smaller clones
618 # Replace selected packages with smaller clones
617 if [ "$ENABLE_REDUCE" = true ] ; then
619 if [ "$ENABLE_REDUCE" = true ] ; then
618 # Add levee package instead of vim-tiny
620 # Add levee package instead of vim-tiny
619 if [ "$REDUCE_VIM" = true ] ; then
621 if [ "$REDUCE_VIM" = true ] ; then
620 APT_INCLUDES="$(echo ${APT_INCLUDES} | sed "s/vim-tiny/levee/")"
622 APT_INCLUDES="$(echo ${APT_INCLUDES} | sed "s/vim-tiny/levee/")"
621 fi
623 fi
622
624
623 # Add dropbear package instead of openssh-server
625 # Add dropbear package instead of openssh-server
624 if [ "$REDUCE_SSHD" = true ] ; then
626 if [ "$REDUCE_SSHD" = true ] ; then
625 APT_INCLUDES="$(echo "${APT_INCLUDES}" | sed "s/openssh-server/dropbear/")"
627 APT_INCLUDES="$(echo "${APT_INCLUDES}" | sed "s/openssh-server/dropbear/")"
626 fi
628 fi
627 fi
629 fi
628
630
629 # Configure systemd-sysv exclude to make halt/reboot/shutdown scripts available
631 # Configure systemd-sysv exclude to make halt/reboot/shutdown scripts available
630 if [ "$ENABLE_SYSVINIT" = false ] ; then
632 if [ "$ENABLE_SYSVINIT" = false ] ; then
631 APT_EXCLUDES="--exclude=${APT_EXCLUDES},init,systemd-sysv"
633 APT_EXCLUDES="--exclude=${APT_EXCLUDES},init,systemd-sysv"
632 fi
634 fi
633
635
634 # Configure kernel sources if no KERNELSRC_DIR
636 # Configure kernel sources if no KERNELSRC_DIR
635 if [ "$BUILD_KERNEL" = true ] && [ -z "$KERNELSRC_DIR" ] ; then
637 if [ "$BUILD_KERNEL" = true ] && [ -z "$KERNELSRC_DIR" ] ; then
636 KERNELSRC_CONFIG=true
638 KERNELSRC_CONFIG=true
637 fi
639 fi
638
640
639 # Configure reduced kernel
641 # Configure reduced kernel
640 if [ "$KERNEL_REDUCE" = true ] ; then
642 if [ "$KERNEL_REDUCE" = true ] ; then
641 KERNELSRC_CONFIG=false
643 KERNELSRC_CONFIG=false
642 fi
644 fi
643
645
644 # Configure qemu compatible kernel
646 # Configure qemu compatible kernel
645 if [ "$ENABLE_QEMU" = true ] ; then
647 if [ "$ENABLE_QEMU" = true ] ; then
646 DTB_FILE=vexpress-v2p-ca15_a7.dtb
648 DTB_FILE=vexpress-v2p-ca15_a7.dtb
647 UBOOT_CONFIG=vexpress_ca15_tc2_defconfig
649 UBOOT_CONFIG=vexpress_ca15_tc2_defconfig
648 KERNEL_DEFCONFIG="vexpress_defconfig"
650 KERNEL_DEFCONFIG="vexpress_defconfig"
649 if [ "$KERNEL_MENUCONFIG" = false ] ; then
651 if [ "$KERNEL_MENUCONFIG" = false ] ; then
650 KERNEL_OLDDEFCONFIG=true
652 KERNEL_OLDDEFCONFIG=true
651 fi
653 fi
652 fi
654 fi
653
655
654 # Execute bootstrap scripts
656 # Execute bootstrap scripts
655 for SCRIPT in bootstrap.d/*.sh; do
657 for SCRIPT in bootstrap.d/*.sh; do
656 head -n 3 "$SCRIPT"
658 head -n 3 "$SCRIPT"
657 . "$SCRIPT"
659 . "$SCRIPT"
658 done
660 done
659
661
660 ## Execute custom bootstrap scripts
662 ## Execute custom bootstrap scripts
661 if [ -d "custom.d" ] ; then
663 if [ -d "custom.d" ] ; then
662 for SCRIPT in custom.d/*.sh; do
664 for SCRIPT in custom.d/*.sh; do
663 . "$SCRIPT"
665 . "$SCRIPT"
664 done
666 done
665 fi
667 fi
666
668
667 # Execute custom scripts inside the chroot
669 # Execute custom scripts inside the chroot
668 if [ -n "$CHROOT_SCRIPTS" ] && [ -d "$CHROOT_SCRIPTS" ] ; then
670 if [ -n "$CHROOT_SCRIPTS" ] && [ -d "$CHROOT_SCRIPTS" ] ; then
669 cp -r "${CHROOT_SCRIPTS}" "${R}/chroot_scripts"
671 cp -r "${CHROOT_SCRIPTS}" "${R}/chroot_scripts"
670 chroot_exec /bin/bash -x <<'EOF'
672 chroot_exec /bin/bash -x <<'EOF'
671 for SCRIPT in /chroot_scripts/* ; do
673 for SCRIPT in /chroot_scripts/* ; do
672 if [ -f $SCRIPT -a -x $SCRIPT ] ; then
674 if [ -f $SCRIPT -a -x $SCRIPT ] ; then
673 $SCRIPT
675 $SCRIPT
674 fi
676 fi
675 done
677 done
676 EOF
678 EOF
677 rm -rf "${R}/chroot_scripts"
679 rm -rf "${R}/chroot_scripts"
678 fi
680 fi
679
681
680 # Remove c/c++ build environment from the chroot
682 # Remove c/c++ build environment from the chroot
681 chroot_remove_cc
683 chroot_remove_cc
682
684
683 # Generate required machine-id
685 # Generate required machine-id
684 MACHINE_ID=$(dbus-uuidgen)
686 MACHINE_ID=$(dbus-uuidgen)
685 echo -n "${MACHINE_ID}" > "${R}/var/lib/dbus/machine-id"
687 echo -n "${MACHINE_ID}" > "${R}/var/lib/dbus/machine-id"
686 echo -n "${MACHINE_ID}" > "${ETC_DIR}/machine-id"
688 echo -n "${MACHINE_ID}" > "${ETC_DIR}/machine-id"
687
689
688 # APT Cleanup
690 # APT Cleanup
689 chroot_exec apt-get -y clean
691 chroot_exec apt-get -y clean
690 chroot_exec apt-get -y autoclean
692 chroot_exec apt-get -y autoclean
691 chroot_exec apt-get -y autoremove
693 chroot_exec apt-get -y autoremove
692
694
693 # Unmount mounted filesystems
695 # Unmount mounted filesystems
694 umount -l "${R}/proc"
696 umount -l "${R}/proc"
695 umount -l "${R}/sys"
697 umount -l "${R}/sys"
696
698
697 # Clean up directories
699 # Clean up directories
698 rm -rf "${R}/run/*"
700 rm -rf "${R}/run/*"
699 rm -rf "${R}/tmp/*"
701 rm -rf "${R}/tmp/*"
700
702
701 # Clean up files
703 # Clean up files
702 rm -f "${ETC_DIR}/ssh/ssh_host_*"
704 rm -f "${ETC_DIR}/ssh/ssh_host_*"
703 rm -f "${ETC_DIR}/dropbear/dropbear_*"
705 rm -f "${ETC_DIR}/dropbear/dropbear_*"
704 rm -f "${ETC_DIR}/apt/sources.list.save"
706 rm -f "${ETC_DIR}/apt/sources.list.save"
705 rm -f "${ETC_DIR}/resolvconf/resolv.conf.d/original"
707 rm -f "${ETC_DIR}/resolvconf/resolv.conf.d/original"
706 rm -f "${ETC_DIR}/*-"
708 rm -f "${ETC_DIR}/*-"
707 rm -f "${ETC_DIR}/apt/apt.conf.d/10proxy"
709 rm -f "${ETC_DIR}/apt/apt.conf.d/10proxy"
708 rm -f "${ETC_DIR}/resolv.conf"
710 rm -f "${ETC_DIR}/resolv.conf"
709 rm -f "${R}/root/.bash_history"
711 rm -f "${R}/root/.bash_history"
710 rm -f "${R}/var/lib/urandom/random-seed"
712 rm -f "${R}/var/lib/urandom/random-seed"
711 rm -f "${R}/initrd.img"
713 rm -f "${R}/initrd.img"
712 rm -f "${R}/vmlinuz"
714 rm -f "${R}/vmlinuz"
713 rm -f "${R}${QEMU_BINARY}"
715 rm -f "${R}${QEMU_BINARY}"
714
716
715 if [ "$ENABLE_QEMU" = true ] ; then
717 if [ "$ENABLE_QEMU" = true ] ; then
716 # Setup QEMU directory
718 # Setup QEMU directory
717 mkdir "${BASEDIR}/qemu"
719 mkdir "${BASEDIR}/qemu"
718
720
719 # Copy kernel image to QEMU directory
721 # Copy kernel image to QEMU directory
720 install_readonly "${BOOT_DIR}/${KERNEL_IMAGE}" "${BASEDIR}/qemu/${KERNEL_IMAGE}"
722 install_readonly "${BOOT_DIR}/${KERNEL_IMAGE}" "${BASEDIR}/qemu/${KERNEL_IMAGE}"
721
723
722 # Copy kernel config to QEMU directory
724 # Copy kernel config to QEMU directory
723 install_readonly "${R}/boot/config-${KERNEL_VERSION}" "${BASEDIR}/qemu/config-${KERNEL_VERSION}"
725 install_readonly "${R}/boot/config-${KERNEL_VERSION}" "${BASEDIR}/qemu/config-${KERNEL_VERSION}"
724
726
725 # Copy kernel dtbs to QEMU directory
727 # Copy kernel dtbs to QEMU directory
726 for dtb in "${BOOT_DIR}/"*.dtb ; do
728 for dtb in "${BOOT_DIR}/"*.dtb ; do
727 if [ -f "${dtb}" ] ; then
729 if [ -f "${dtb}" ] ; then
728 install_readonly "${dtb}" "${BASEDIR}/qemu/"
730 install_readonly "${dtb}" "${BASEDIR}/qemu/"
729 fi
731 fi
730 done
732 done
731
733
732 # Copy kernel overlays to QEMU directory
734 # Copy kernel overlays to QEMU directory
733 if [ -d "${BOOT_DIR}/overlays" ] ; then
735 if [ -d "${BOOT_DIR}/overlays" ] ; then
734 # Setup overlays dtbs directory
736 # Setup overlays dtbs directory
735 mkdir "${BASEDIR}/qemu/overlays"
737 mkdir "${BASEDIR}/qemu/overlays"
736
738
737 for dtb in "${BOOT_DIR}/overlays/"*.dtb ; do
739 for dtb in "${BOOT_DIR}/overlays/"*.dtb ; do
738 if [ -f "${dtb}" ] ; then
740 if [ -f "${dtb}" ] ; then
739 install_readonly "${dtb}" "${BASEDIR}/qemu/overlays/"
741 install_readonly "${dtb}" "${BASEDIR}/qemu/overlays/"
740 fi
742 fi
741 done
743 done
742 fi
744 fi
743
745
744 # Copy u-boot files to QEMU directory
746 # Copy u-boot files to QEMU directory
745 if [ "$ENABLE_UBOOT" = true ] ; then
747 if [ "$ENABLE_UBOOT" = true ] ; then
746 if [ -f "${BOOT_DIR}/u-boot.bin" ] ; then
748 if [ -f "${BOOT_DIR}/u-boot.bin" ] ; then
747 install_readonly "${BOOT_DIR}/u-boot.bin" "${BASEDIR}/qemu/u-boot.bin"
749 install_readonly "${BOOT_DIR}/u-boot.bin" "${BASEDIR}/qemu/u-boot.bin"
748 fi
750 fi
749 if [ -f "${BOOT_DIR}/uboot.mkimage" ] ; then
751 if [ -f "${BOOT_DIR}/uboot.mkimage" ] ; then
750 install_readonly "${BOOT_DIR}/uboot.mkimage" "${BASEDIR}/qemu/uboot.mkimage"
752 install_readonly "${BOOT_DIR}/uboot.mkimage" "${BASEDIR}/qemu/uboot.mkimage"
751 fi
753 fi
752 if [ -f "${BOOT_DIR}/boot.scr" ] ; then
754 if [ -f "${BOOT_DIR}/boot.scr" ] ; then
753 install_readonly "${BOOT_DIR}/boot.scr" "${BASEDIR}/qemu/boot.scr"
755 install_readonly "${BOOT_DIR}/boot.scr" "${BASEDIR}/qemu/boot.scr"
754 fi
756 fi
755 fi
757 fi
756
758
757 # Copy initramfs to QEMU directory
759 # Copy initramfs to QEMU directory
758 if [ -f "${BOOT_DIR}/initramfs-${KERNEL_VERSION}" ] ; then
760 if [ -f "${BOOT_DIR}/initramfs-${KERNEL_VERSION}" ] ; then
759 install_readonly "${BOOT_DIR}/initramfs-${KERNEL_VERSION}" "${BASEDIR}/qemu/initramfs-${KERNEL_VERSION}"
761 install_readonly "${BOOT_DIR}/initramfs-${KERNEL_VERSION}" "${BASEDIR}/qemu/initramfs-${KERNEL_VERSION}"
760 fi
762 fi
761 fi
763 fi
762
764
763 # Calculate size of the chroot directory in KB
765 # Calculate size of the chroot directory in KB
764 CHROOT_SIZE=$(expr "$(du -s "${R}" | awk '{ print $1 }')")
766 CHROOT_SIZE=$(expr "$(du -s "${R}" | awk '{ print $1 }')")
765
767
766 # Calculate the amount of needed 512 Byte sectors
768 # Calculate the amount of needed 512 Byte sectors
767 TABLE_SECTORS=$(expr 1 \* 1024 \* 1024 \/ 512)
769 TABLE_SECTORS=$(expr 1 \* 1024 \* 1024 \/ 512)
768 FRMW_SECTORS=$(expr 64 \* 1024 \* 1024 \/ 512)
770 FRMW_SECTORS=$(expr 64 \* 1024 \* 1024 \/ 512)
769 ROOT_OFFSET=$(expr "${TABLE_SECTORS}" + "${FRMW_SECTORS}")
771 ROOT_OFFSET=$(expr "${TABLE_SECTORS}" + "${FRMW_SECTORS}")
770
772
771 # The root partition is EXT4
773 # The root partition is EXT4
772 # This means more space than the actual used space of the chroot is used.
774 # This means more space than the actual used space of the chroot is used.
773 # As overhead for journaling and reserved blocks 35% are added.
775 # As overhead for journaling and reserved blocks 35% are added.
774 ROOT_SECTORS=$(expr "$(expr "${CHROOT_SIZE}" + "${CHROOT_SIZE}" \/ 100 \* 35)" \* 1024 \/ 512)
776 ROOT_SECTORS=$(expr "$(expr "${CHROOT_SIZE}" + "${CHROOT_SIZE}" \/ 100 \* 35)" \* 1024 \/ 512)
775
777
776 # Calculate required image size in 512 Byte sectors
778 # Calculate required image size in 512 Byte sectors
777 IMAGE_SECTORS=$(expr "${TABLE_SECTORS}" + "${FRMW_SECTORS}" + "${ROOT_SECTORS}")
779 IMAGE_SECTORS=$(expr "${TABLE_SECTORS}" + "${FRMW_SECTORS}" + "${ROOT_SECTORS}")
778
780
779 # Prepare image file
781 # Prepare image file
780 if [ "$ENABLE_SPLITFS" = true ] ; then
782 if [ "$ENABLE_SPLITFS" = true ] ; then
781 dd if=/dev/zero of="$IMAGE_NAME-frmw.img" bs=512 count="${TABLE_SECTORS}"
783 dd if=/dev/zero of="$IMAGE_NAME-frmw.img" bs=512 count="${TABLE_SECTORS}"
782 dd if=/dev/zero of="$IMAGE_NAME-frmw.img" bs=512 count=0 seek="${FRMW_SECTORS}"
784 dd if=/dev/zero of="$IMAGE_NAME-frmw.img" bs=512 count=0 seek="${FRMW_SECTORS}"
783 dd if=/dev/zero of="$IMAGE_NAME-root.img" bs=512 count="${TABLE_SECTORS}"
785 dd if=/dev/zero of="$IMAGE_NAME-root.img" bs=512 count="${TABLE_SECTORS}"
784 dd if=/dev/zero of="$IMAGE_NAME-root.img" bs=512 count=0 seek="${ROOT_SECTORS}"
786 dd if=/dev/zero of="$IMAGE_NAME-root.img" bs=512 count=0 seek="${ROOT_SECTORS}"
785
787
786 # Write firmware/boot partition tables
788 # Write firmware/boot partition tables
787 sfdisk -q -L -uS -f "$IMAGE_NAME-frmw.img" 2> /dev/null <<EOM
789 sfdisk -q -L -uS -f "$IMAGE_NAME-frmw.img" 2> /dev/null <<EOM
788 ${TABLE_SECTORS},${FRMW_SECTORS},c,*
790 ${TABLE_SECTORS},${FRMW_SECTORS},c,*
789 EOM
791 EOM
790
792
791 # Write root partition table
793 # Write root partition table
792 sfdisk -q -L -uS -f "$IMAGE_NAME-root.img" 2> /dev/null <<EOM
794 sfdisk -q -L -uS -f "$IMAGE_NAME-root.img" 2> /dev/null <<EOM
793 ${TABLE_SECTORS},${ROOT_SECTORS},83
795 ${TABLE_SECTORS},${ROOT_SECTORS},83
794 EOM
796 EOM
795
797
796 # Setup temporary loop devices
798 # Setup temporary loop devices
797 FRMW_LOOP="$(losetup -o 1M --sizelimit 64M -f --show "$IMAGE_NAME"-frmw.img)"
799 FRMW_LOOP="$(losetup -o 1M --sizelimit 64M -f --show "$IMAGE_NAME"-frmw.img)"
798 ROOT_LOOP="$(losetup -o 1M -f --show "$IMAGE_NAME"-root.img)"
800 ROOT_LOOP="$(losetup -o 1M -f --show "$IMAGE_NAME"-root.img)"
799 else # ENABLE_SPLITFS=false
801 else # ENABLE_SPLITFS=false
800 dd if=/dev/zero of="$IMAGE_NAME.img" bs=512 count="${TABLE_SECTORS}"
802 dd if=/dev/zero of="$IMAGE_NAME.img" bs=512 count="${TABLE_SECTORS}"
801 dd if=/dev/zero of="$IMAGE_NAME.img" bs=512 count=0 seek="${IMAGE_SECTORS}"
803 dd if=/dev/zero of="$IMAGE_NAME.img" bs=512 count=0 seek="${IMAGE_SECTORS}"
802
804
803 # Write partition table
805 # Write partition table
804 sfdisk -q -L -uS -f "$IMAGE_NAME.img" 2> /dev/null <<EOM
806 sfdisk -q -L -uS -f "$IMAGE_NAME.img" 2> /dev/null <<EOM
805 ${TABLE_SECTORS},${FRMW_SECTORS},c,*
807 ${TABLE_SECTORS},${FRMW_SECTORS},c,*
806 ${ROOT_OFFSET},${ROOT_SECTORS},83
808 ${ROOT_OFFSET},${ROOT_SECTORS},83
807 EOM
809 EOM
808
810
809 # Setup temporary loop devices
811 # Setup temporary loop devices
810 FRMW_LOOP="$(losetup -o 1M --sizelimit 64M -f --show "$IMAGE_NAME".img)"
812 FRMW_LOOP="$(losetup -o 1M --sizelimit 64M -f --show "$IMAGE_NAME".img)"
811 ROOT_LOOP="$(losetup -o 65M -f --show "$IMAGE_NAME".img)"
813 ROOT_LOOP="$(losetup -o 65M -f --show "$IMAGE_NAME".img)"
812 fi
814 fi
813
815
814 if [ "$ENABLE_CRYPTFS" = true ] ; then
816 if [ "$ENABLE_CRYPTFS" = true ] ; then
815 # Create dummy ext4 fs
817 # Create dummy ext4 fs
816 mkfs.ext4 "$ROOT_LOOP"
818 mkfs.ext4 "$ROOT_LOOP"
817
819
818 # Setup password keyfile
820 # Setup password keyfile
819 touch .password
821 touch .password
820 chmod 600 .password
822 chmod 600 .password
821 echo -n ${CRYPTFS_PASSWORD} > .password
823 echo -n ${CRYPTFS_PASSWORD} > .password
822
824
823 # Initialize encrypted partition
825 # Initialize encrypted partition
824 echo "YES" | cryptsetup luksFormat "${ROOT_LOOP}" -c "${CRYPTFS_CIPHER}" -s "${CRYPTFS_XTSKEYSIZE}" .password
826 echo "YES" | cryptsetup luksFormat "${ROOT_LOOP}" -c "${CRYPTFS_CIPHER}" -s "${CRYPTFS_XTSKEYSIZE}" .password
825
827
826 # Open encrypted partition and setup mapping
828 # Open encrypted partition and setup mapping
827 cryptsetup luksOpen "${ROOT_LOOP}" -d .password "${CRYPTFS_MAPPING}"
829 cryptsetup luksOpen "${ROOT_LOOP}" -d .password "${CRYPTFS_MAPPING}"
828
830
829 # Secure delete password keyfile
831 # Secure delete password keyfile
830 shred -zu .password
832 shred -zu .password
831
833
832 # Update temporary loop device
834 # Update temporary loop device
833 ROOT_LOOP="/dev/mapper/${CRYPTFS_MAPPING}"
835 ROOT_LOOP="/dev/mapper/${CRYPTFS_MAPPING}"
834
836
835 # Wipe encrypted partition (encryption cipher is used for randomness)
837 # Wipe encrypted partition (encryption cipher is used for randomness)
836 dd if=/dev/zero of="${ROOT_LOOP}" bs=512 count="$(blockdev --getsz "${ROOT_LOOP}")"
838 dd if=/dev/zero of="${ROOT_LOOP}" bs=512 count="$(blockdev --getsz "${ROOT_LOOP}")"
837 fi
839 fi
838
840
839 # Build filesystems
841 # Build filesystems
840 mkfs.vfat "$FRMW_LOOP"
842 mkfs.vfat "$FRMW_LOOP"
841 mkfs.ext4 "$ROOT_LOOP"
843 mkfs.ext4 "$ROOT_LOOP"
842
844
843 # Mount the temporary loop devices
845 # Mount the temporary loop devices
844 mkdir -p "$BUILDDIR/mount"
846 mkdir -p "$BUILDDIR/mount"
845 mount "$ROOT_LOOP" "$BUILDDIR/mount"
847 mount "$ROOT_LOOP" "$BUILDDIR/mount"
846
848
847 mkdir -p "$BUILDDIR/mount/boot/firmware"
849 mkdir -p "$BUILDDIR/mount/boot/firmware"
848 mount "$FRMW_LOOP" "$BUILDDIR/mount/boot/firmware"
850 mount "$FRMW_LOOP" "$BUILDDIR/mount/boot/firmware"
849
851
850 # Copy all files from the chroot to the loop device mount point directory
852 # Copy all files from the chroot to the loop device mount point directory
851 rsync -a "${R}/" "$BUILDDIR/mount/"
853 rsync -a "${R}/" "$BUILDDIR/mount/"
852
854
853 # Unmount all temporary loop devices and mount points
855 # Unmount all temporary loop devices and mount points
854 cleanup
856 cleanup
855
857
856 # Create block map file(s) of image(s)
858 # Create block map file(s) of image(s)
857 if [ "$ENABLE_SPLITFS" = true ] ; then
859 if [ "$ENABLE_SPLITFS" = true ] ; then
858 # Create block map files for "bmaptool"
860 # Create block map files for "bmaptool"
859 bmaptool create -o "$IMAGE_NAME-frmw.bmap" "$IMAGE_NAME-frmw.img"
861 bmaptool create -o "$IMAGE_NAME-frmw.bmap" "$IMAGE_NAME-frmw.img"
860 bmaptool create -o "$IMAGE_NAME-root.bmap" "$IMAGE_NAME-root.img"
862 bmaptool create -o "$IMAGE_NAME-root.bmap" "$IMAGE_NAME-root.img"
861
863
862 # Image was successfully created
864 # Image was successfully created
863 echo "$IMAGE_NAME-frmw.img ($(expr \( "${TABLE_SECTORS}" + "${FRMW_SECTORS}" \) \* 512 \/ 1024 \/ 1024)M)" ": successfully created"
865 echo "$IMAGE_NAME-frmw.img ($(expr \( "${TABLE_SECTORS}" + "${FRMW_SECTORS}" \) \* 512 \/ 1024 \/ 1024)M)" ": successfully created"
864 echo "$IMAGE_NAME-root.img ($(expr \( "${TABLE_SECTORS}" + "${ROOT_SECTORS}" \) \* 512 \/ 1024 \/ 1024)M)" ": successfully created"
866 echo "$IMAGE_NAME-root.img ($(expr \( "${TABLE_SECTORS}" + "${ROOT_SECTORS}" \) \* 512 \/ 1024 \/ 1024)M)" ": successfully created"
865 else
867 else
866 # Create block map file for "bmaptool"
868 # Create block map file for "bmaptool"
867 bmaptool create -o "$IMAGE_NAME.bmap" "$IMAGE_NAME.img"
869 bmaptool create -o "$IMAGE_NAME.bmap" "$IMAGE_NAME.img"
868
870
869 # Image was successfully created
871 # Image was successfully created
870 echo "$IMAGE_NAME.img ($(expr \( "${TABLE_SECTORS}" + "${FRMW_SECTORS}" + "${ROOT_SECTORS}" \) \* 512 \/ 1024 \/ 1024)M)" ": successfully created"
872 echo "$IMAGE_NAME.img ($(expr \( "${TABLE_SECTORS}" + "${FRMW_SECTORS}" + "${ROOT_SECTORS}" \) \* 512 \/ 1024 \/ 1024)M)" ": successfully created"
871
873
872 # Create qemu qcow2 image
874 # Create qemu qcow2 image
873 if [ "$ENABLE_QEMU" = true ] ; then
875 if [ "$ENABLE_QEMU" = true ] ; then
874 QEMU_IMAGE=${QEMU_IMAGE:=${BASEDIR}/qemu/${DATE}-${KERNEL_ARCH}-CURRENT-rpi${RPI_MODEL}-${RELEASE}-${RELEASE_ARCH}}
876 QEMU_IMAGE=${QEMU_IMAGE:=${BASEDIR}/qemu/${DATE}-${KERNEL_ARCH}-CURRENT-rpi${RPI_MODEL}-${RELEASE}-${RELEASE_ARCH}}
875 QEMU_SIZE=16G
877 QEMU_SIZE=16G
876
878
877 qemu-img convert -f raw -O qcow2 "$IMAGE_NAME".img "$QEMU_IMAGE".qcow2
879 qemu-img convert -f raw -O qcow2 "$IMAGE_NAME".img "$QEMU_IMAGE".qcow2
878 qemu-img resize "$QEMU_IMAGE".qcow2 $QEMU_SIZE
880 qemu-img resize "$QEMU_IMAGE".qcow2 $QEMU_SIZE
879
881
880 echo "$QEMU_IMAGE.qcow2 ($QEMU_SIZE)" ": successfully created"
882 echo "$QEMU_IMAGE.qcow2 ($QEMU_SIZE)" ": successfully created"
881 fi
883 fi
882 fi
884 fi
General Comments 0
Vous devez vous connecter pour laisser un commentaire. Se connecter maintenant