@@ -1,273 +1,268 | |||||
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 [ "$BUILD_KERNEL" = true ] ; then |
|
8 | #if [ "$BUILD_KERNEL" = true ] ; then | |
9 | if [ -n "$RPI_FIRMWARE_DIR" ] && [ -d "$RPI_FIRMWARE_DIR" ] ; then |
|
9 | if [ -n "$RPI_FIRMWARE_DIR" ] && [ -d "$RPI_FIRMWARE_DIR" ] ; then | |
10 | # Install boot binaries from local directory |
|
10 | # Install boot binaries from local directory | |
11 | cp "${RPI_FIRMWARE_DIR}"/boot/bootcode.bin "${BOOT_DIR}"/bootcode.bin |
|
11 | cp "${RPI_FIRMWARE_DIR}"/boot/bootcode.bin "${BOOT_DIR}"/bootcode.bin | |
12 | cp "${RPI_FIRMWARE_DIR}"/boot/fixup.dat "${BOOT_DIR}"/fixup.dat |
|
12 | cp "${RPI_FIRMWARE_DIR}"/boot/fixup.dat "${BOOT_DIR}"/fixup.dat | |
13 | cp "${RPI_FIRMWARE_DIR}"/boot/fixup_cd.dat "${BOOT_DIR}"/fixup_cd.dat |
|
13 | cp "${RPI_FIRMWARE_DIR}"/boot/fixup_cd.dat "${BOOT_DIR}"/fixup_cd.dat | |
14 | cp "${RPI_FIRMWARE_DIR}"/boot/fixup_x.dat "${BOOT_DIR}"/fixup_x.dat |
|
14 | cp "${RPI_FIRMWARE_DIR}"/boot/fixup_x.dat "${BOOT_DIR}"/fixup_x.dat | |
15 | cp "${RPI_FIRMWARE_DIR}"/boot/start.elf "${BOOT_DIR}"/start.elf |
|
15 | cp "${RPI_FIRMWARE_DIR}"/boot/start.elf "${BOOT_DIR}"/start.elf | |
16 | cp "${RPI_FIRMWARE_DIR}"/boot/start_cd.elf "${BOOT_DIR}"/start_cd.elf |
|
16 | cp "${RPI_FIRMWARE_DIR}"/boot/start_cd.elf "${BOOT_DIR}"/start_cd.elf | |
17 | cp "${RPI_FIRMWARE_DIR}"/boot/start_x.elf "${BOOT_DIR}"/start_x.elf |
|
17 | cp "${RPI_FIRMWARE_DIR}"/boot/start_x.elf "${BOOT_DIR}"/start_x.elf | |
18 | else |
|
18 | else | |
19 | # Create temporary directory for boot binaries |
|
19 | # Create temporary directory for boot binaries | |
20 | temp_dir=$(as_nobody mktemp -d) |
|
20 | temp_dir=$(as_nobody mktemp -d) | |
21 |
|
21 | |||
22 | # Install latest boot binaries from raspberry/firmware github |
|
22 | # Install latest boot binaries from raspberry/firmware github | |
23 | as_nobody wget -q -O "${temp_dir}/bootcode.bin" "${FIRMWARE_URL}/bootcode.bin" |
|
23 | as_nobody wget -q -O "${temp_dir}/bootcode.bin" "${FIRMWARE_URL}/bootcode.bin" | |
24 | as_nobody wget -q -O "${temp_dir}/fixup.dat" "${FIRMWARE_URL}/fixup.dat" |
|
24 | as_nobody wget -q -O "${temp_dir}/fixup.dat" "${FIRMWARE_URL}/fixup.dat" | |
25 | as_nobody wget -q -O "${temp_dir}/fixup_cd.dat" "${FIRMWARE_URL}/fixup_cd.dat" |
|
25 | as_nobody wget -q -O "${temp_dir}/fixup_cd.dat" "${FIRMWARE_URL}/fixup_cd.dat" | |
26 | as_nobody wget -q -O "${temp_dir}/fixup_x.dat" "${FIRMWARE_URL}/fixup_x.dat" |
|
26 | as_nobody wget -q -O "${temp_dir}/fixup_x.dat" "${FIRMWARE_URL}/fixup_x.dat" | |
27 | as_nobody wget -q -O "${temp_dir}/start.elf" "${FIRMWARE_URL}/start.elf" |
|
27 | as_nobody wget -q -O "${temp_dir}/start.elf" "${FIRMWARE_URL}/start.elf" | |
28 | as_nobody wget -q -O "${temp_dir}/start_cd.elf" "${FIRMWARE_URL}/start_cd.elf" |
|
28 | as_nobody wget -q -O "${temp_dir}/start_cd.elf" "${FIRMWARE_URL}/start_cd.elf" | |
29 | as_nobody wget -q -O "${temp_dir}/start_x.elf" "${FIRMWARE_URL}/start_x.elf" |
|
29 | as_nobody wget -q -O "${temp_dir}/start_x.elf" "${FIRMWARE_URL}/start_x.elf" | |
30 |
|
30 | |||
31 | # Move downloaded boot binaries |
|
31 | # Move downloaded boot binaries | |
32 | mv "${temp_dir}/"* "${BOOT_DIR}/" |
|
32 | mv "${temp_dir}/"* "${BOOT_DIR}/" | |
33 |
|
33 | |||
34 | # Remove temporary directory for boot binaries |
|
34 | # Remove temporary directory for boot binaries | |
35 | rm -fr "${temp_dir}" |
|
35 | rm -fr "${temp_dir}" | |
36 |
|
36 | |||
37 | # Set permissions of the boot binaries |
|
37 | # Set permissions of the boot binaries | |
38 | chown -R root:root "${BOOT_DIR}" |
|
38 | chown -R root:root "${BOOT_DIR}" | |
39 | chmod -R 600 "${BOOT_DIR}" |
|
39 | chmod -R 600 "${BOOT_DIR}" | |
40 | fi |
|
40 | fi | |
41 | #fi |
|
41 | #fi | |
42 |
|
42 | |||
43 | # Setup firmware boot cmdline |
|
43 | # Setup firmware boot cmdline | |
44 | if [ "$ENABLE_UBOOTUSB" = true ] ; then |
|
44 | if [ "$ENABLE_UBOOTUSB" = true ] ; then | |
45 | CMDLINE="dwc_otg.lpm_enable=0 root=/dev/sda2 rootfstype=ext4 rootflags=commit=100,data=writeback elevator=deadline rootwait console=tty1 init=/bin/systemd" |
|
45 | CMDLINE="dwc_otg.lpm_enable=0 root=/dev/sda2 rootfstype=ext4 rootflags=commit=100,data=writeback elevator=deadline rootwait console=tty1 init=/bin/systemd" | |
46 | else |
|
46 | else | |
47 | if [ "$ENABLE_SPLITFS" = true ] ; then |
|
47 | if [ "$ENABLE_SPLITFS" = true ] ; then | |
48 | CMDLINE="dwc_otg.lpm_enable=0 root=/dev/sda1 rootfstype=ext4 rootflags=commit=100,data=writeback elevator=deadline rootwait console=tty1 init=/bin/systemd" |
|
48 | CMDLINE="dwc_otg.lpm_enable=0 root=/dev/sda1 rootfstype=ext4 rootflags=commit=100,data=writeback elevator=deadline rootwait console=tty1 init=/bin/systemd" | |
49 | else |
|
49 | else | |
50 | CMDLINE="dwc_otg.lpm_enable=0 root=/dev/mmcblk0p2 rootfstype=ext4 rootflags=commit=100,data=writeback elevator=deadline rootwait console=tty1 init=/bin/systemd" |
|
50 | CMDLINE="dwc_otg.lpm_enable=0 root=/dev/mmcblk0p2 rootfstype=ext4 rootflags=commit=100,data=writeback elevator=deadline rootwait console=tty1 init=/bin/systemd" | |
51 | fi |
|
51 | fi | |
52 | fi |
|
52 | fi | |
53 |
|
53 | |||
54 | # Add encrypted root partition to cmdline.txt |
|
54 | # Add encrypted root partition to cmdline.txt | |
55 | if [ "$ENABLE_CRYPTFS" = true ] ; then |
|
55 | if [ "$ENABLE_CRYPTFS" = true ] ; then | |
56 | if [ "$ENABLE_SPLITFS" = true ] ; then |
|
56 | if [ "$ENABLE_SPLITFS" = true ] ; then | |
57 | CMDLINE=$(echo "${CMDLINE}" | sed "s/sda1/mapper\/${CRYPTFS_MAPPING} cryptdevice=\/dev\/sda1:${CRYPTFS_MAPPING}/") |
|
57 | CMDLINE=$(echo "${CMDLINE}" | sed "s/sda1/mapper\/${CRYPTFS_MAPPING} cryptdevice=\/dev\/sda1:${CRYPTFS_MAPPING}/") | |
58 | else |
|
58 | else | |
59 | if [ "$ENABLE_UBOOTUSB" = true ] ; then |
|
59 | if [ "$ENABLE_UBOOTUSB" = true ] ; then | |
60 | CMDLINE=$(echo "${CMDLINE}" | sed "s/sda2/mapper\/${CRYPTFS_MAPPING} cryptdevice=\/dev\/sda2:${CRYPTFS_MAPPING}/") |
|
60 | CMDLINE=$(echo "${CMDLINE}" | sed "s/sda2/mapper\/${CRYPTFS_MAPPING} cryptdevice=\/dev\/sda2:${CRYPTFS_MAPPING}/") | |
61 | else |
|
61 | else | |
62 | CMDLINE=$(echo "${CMDLINE}" | sed "s/mmcblk0p2/mapper\/${CRYPTFS_MAPPING} cryptdevice=\/dev\/mmcblk0p2:${CRYPTFS_MAPPING}/") |
|
62 | CMDLINE=$(echo "${CMDLINE}" | sed "s/mmcblk0p2/mapper\/${CRYPTFS_MAPPING} cryptdevice=\/dev\/mmcblk0p2:${CRYPTFS_MAPPING}/") | |
63 | fi |
|
63 | fi | |
64 | fi |
|
64 | fi | |
65 | fi |
|
65 | fi | |
66 |
|
66 | |||
67 | # Enable Kernel messages on standard output |
|
67 | # Enable Kernel messages on standard output | |
68 | if [ "$ENABLE_PRINTK" = true ] ; then |
|
68 | if [ "$ENABLE_PRINTK" = true ] ; then | |
69 | install_readonly files/sysctl.d/83-rpi-printk.conf "${ETC_DIR}/sysctl.d/83-rpi-printk.conf" |
|
69 | install_readonly files/sysctl.d/83-rpi-printk.conf "${ETC_DIR}/sysctl.d/83-rpi-printk.conf" | |
70 | fi |
|
70 | fi | |
71 |
|
71 | |||
72 | # Install udev rule for serial alias - serial0 = console serial1=bluetooth |
|
72 | # Install udev rule for serial alias - serial0 = console serial1=bluetooth | |
73 | install_readonly files/etc/99-com.rules "${LIB_DIR}/udev/rules.d/99-com.rules" |
|
73 | install_readonly files/etc/99-com.rules "${LIB_DIR}/udev/rules.d/99-com.rules" | |
74 |
|
74 | |||
75 | # Remove IPv6 networking support |
|
75 | # Remove IPv6 networking support | |
76 | if [ "$ENABLE_IPV6" = false ] ; then |
|
76 | if [ "$ENABLE_IPV6" = false ] ; then | |
77 | CMDLINE="${CMDLINE} ipv6.disable=1" |
|
77 | CMDLINE="${CMDLINE} ipv6.disable=1" | |
78 | fi |
|
78 | fi | |
79 |
|
79 | |||
80 | # Automatically assign predictable network interface names |
|
80 | # Automatically assign predictable network interface names | |
81 | if [ "$ENABLE_IFNAMES" = false ] ; then |
|
81 | if [ "$ENABLE_IFNAMES" = false ] ; then | |
82 | CMDLINE="${CMDLINE} net.ifnames=0" |
|
82 | CMDLINE="${CMDLINE} net.ifnames=0" | |
83 | else |
|
83 | else | |
84 | CMDLINE="${CMDLINE} net.ifnames=1" |
|
84 | CMDLINE="${CMDLINE} net.ifnames=1" | |
85 | fi |
|
85 | fi | |
86 |
|
86 | |||
87 | # Install firmware config |
|
87 | # Install firmware config | |
88 | install_readonly files/boot/config.txt "${BOOT_DIR}/config.txt" |
|
88 | install_readonly files/boot/config.txt "${BOOT_DIR}/config.txt" | |
89 |
|
89 | |||
90 | # Locks CPU frequency at maximum |
|
90 | # Locks CPU frequency at maximum | |
91 | if [ "$ENABLE_TURBO" = true ] ; then |
|
91 | if [ "$ENABLE_TURBO" = true ] ; then | |
92 | echo "force_turbo=1" >> "${BOOT_DIR}/config.txt" |
|
92 | echo "force_turbo=1" >> "${BOOT_DIR}/config.txt" | |
93 | # helps to avoid sdcard corruption when force_turbo is enabled. |
|
93 | # helps to avoid sdcard corruption when force_turbo is enabled. | |
94 | echo "boot_delay=1" >> "${BOOT_DIR}/config.txt" |
|
94 | echo "boot_delay=1" >> "${BOOT_DIR}/config.txt" | |
95 | fi |
|
95 | fi | |
96 |
|
96 | |||
97 | if [ "$RPI_MODEL" = 0 ] || [ "$RPI_MODEL" = 3 ] || [ "$RPI_MODEL" = 3P ] ; then |
|
97 | if [ "$RPI_MODEL" = 0 ] || [ "$RPI_MODEL" = 3 ] || [ "$RPI_MODEL" = 3P ] ; then | |
98 |
|
98 | |||
99 | # Bluetooth enabled |
|
99 | # Bluetooth enabled | |
100 | if [ "$ENABLE_BLUETOOTH" = true ] ; then |
|
100 | if [ "$ENABLE_BLUETOOTH" = true ] ; then | |
101 | # Create temporary directory for Bluetooth sources |
|
101 | # Create temporary directory for Bluetooth sources | |
102 | temp_dir=$(as_nobody mktemp -d) |
|
102 | temp_dir=$(as_nobody mktemp -d) | |
103 |
|
103 | |||
104 | # Fetch Bluetooth sources |
|
104 | # Fetch Bluetooth sources | |
105 | as_nobody git -C "${temp_dir}" clone "${BLUETOOTH_URL}" |
|
105 | as_nobody git -C "${temp_dir}" clone "${BLUETOOTH_URL}" | |
106 |
|
106 | |||
107 | # Copy downloaded sources |
|
107 | # Copy downloaded sources | |
108 | mv "${temp_dir}/pi-bluetooth" "${R}/tmp/" |
|
108 | mv "${temp_dir}/pi-bluetooth" "${R}/tmp/" | |
109 |
|
109 | |||
110 | # Bluetooth firmware from arch aur https://aur.archlinux.org/packages/pi-bluetooth/ |
|
110 | # Bluetooth firmware from arch aur https://aur.archlinux.org/packages/pi-bluetooth/ | |
111 | 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 |
|
111 | 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 | |
112 | as_nobody wget -q -O "${R}/tmp/pi-bluetooth/BCM43430A1.hcd" https://aur.archlinux.org/cgit/aur.git/plain/BCM43430A1.hcd?h=pi-bluetooth |
|
112 | as_nobody wget -q -O "${R}/tmp/pi-bluetooth/BCM43430A1.hcd" https://aur.archlinux.org/cgit/aur.git/plain/BCM43430A1.hcd?h=pi-bluetooth | |
113 |
|
113 | |||
114 | # Set permissions |
|
114 | # Set permissions | |
115 | chown -R root:root "${R}/tmp/pi-bluetooth" |
|
115 | chown -R root:root "${R}/tmp/pi-bluetooth" | |
116 |
|
116 | |||
117 | # Install tools |
|
117 | # Install tools | |
118 | install_readonly "${R}/tmp/pi-bluetooth/usr/bin/btuart" "${R}/usr/bin/btuart" |
|
118 | install_readonly "${R}/tmp/pi-bluetooth/usr/bin/btuart" "${R}/usr/bin/btuart" | |
119 | install_readonly "${R}/tmp/pi-bluetooth/usr/bin/bthelper" "${R}/usr/bin/bthelper" |
|
119 | install_readonly "${R}/tmp/pi-bluetooth/usr/bin/bthelper" "${R}/usr/bin/bthelper" | |
120 |
|
120 | |||
121 | # make scripts executable |
|
121 | # make scripts executable | |
122 | chmod +x "${R}/usr/bin/bthelper" |
|
122 | chmod +x "${R}/usr/bin/bthelper" | |
123 | chmod +x "${R}/usr/bin/btuart" |
|
123 | chmod +x "${R}/usr/bin/btuart" | |
124 |
|
124 | |||
125 | # Install bluetooth udev rule |
|
125 | # Install bluetooth udev rule | |
126 | install_readonly "${R}/tmp/pi-bluetooth/lib/udev/rules.d/90-pi-bluetooth.rules" "${LIB_DIR}/udev/rules.d/90-pi-bluetooth.rules" |
|
126 | install_readonly "${R}/tmp/pi-bluetooth/lib/udev/rules.d/90-pi-bluetooth.rules" "${LIB_DIR}/udev/rules.d/90-pi-bluetooth.rules" | |
127 |
|
127 | |||
128 | # Install Firmware Flash file and apropiate licence |
|
128 | # Install Firmware Flash file and apropiate licence | |
129 | mkdir -p "$BLUETOOTH_FIRMWARE_DIR" |
|
129 | mkdir -p "$BLUETOOTH_FIRMWARE_DIR" | |
130 | install_readonly "${R}/tmp/pi-bluetooth/LICENCE.broadcom_bcm43xx" "${BLUETOOTH_FIRMWARE_DIR}/LICENCE.broadcom_bcm43xx" |
|
130 | install_readonly "${R}/tmp/pi-bluetooth/LICENCE.broadcom_bcm43xx" "${BLUETOOTH_FIRMWARE_DIR}/LICENCE.broadcom_bcm43xx" | |
131 | install_readonly "${R}/tmp/pi-bluetooth/BCM43430A1.hcd" "${BLUETOOTH_FIRMWARE_DIR}/LICENCE.broadcom_bcm43xx" |
|
131 | install_readonly "${R}/tmp/pi-bluetooth/BCM43430A1.hcd" "${BLUETOOTH_FIRMWARE_DIR}/LICENCE.broadcom_bcm43xx" | |
132 | install_readonly "${R}/tmp/pi-bluetooth/debian/pi-bluetooth.bthelper@.service" "${ETC_DIR}/systemd/system/pi-bluetooth.bthelper@.service" |
|
132 | install_readonly "${R}/tmp/pi-bluetooth/debian/pi-bluetooth.bthelper@.service" "${ETC_DIR}/systemd/system/pi-bluetooth.bthelper@.service" | |
133 | install_readonly "${R}/tmp/pi-bluetooth/debian/pi-bluetooth.hciuart.service" "${ETC_DIR}/systemd/system/pi-bluetooth.hciuart.service" |
|
133 | install_readonly "${R}/tmp/pi-bluetooth/debian/pi-bluetooth.hciuart.service" "${ETC_DIR}/systemd/system/pi-bluetooth.hciuart.service" | |
134 |
|
134 | |||
135 | # Remove temporary directories |
|
135 | # Remove temporary directories | |
136 | rm -fr "${temp_dir}" |
|
136 | rm -fr "${temp_dir}" | |
137 | rm -fr "${R}"/tmp/pi-bluetooth |
|
137 | rm -fr "${R}"/tmp/pi-bluetooth | |
138 |
|
138 | |||
139 | # 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 |
|
139 | # 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 | |
140 | if [ "$ENABLE_MINIUART_OVERLAY" = true ] ; then |
|
140 | if [ "$ENABLE_MINIUART_OVERLAY" = true ] ; then | |
141 |
|
141 | |||
142 | # set overlay to swap ttyAMA0 and ttyS0 |
|
142 | # set overlay to swap ttyAMA0 and ttyS0 | |
143 | echo "dtoverlay=pi3-miniuart-bt" >> "${BOOT_DIR}/config.txt" |
|
143 | echo "dtoverlay=pi3-miniuart-bt" >> "${BOOT_DIR}/config.txt" | |
144 |
|
144 | |||
145 | # if force_turbo didn't lock cpu at high speed, lock it at low speed (XOR logic) or miniuart will be broken |
|
145 | # if force_turbo didn't lock cpu at high speed, lock it at low speed (XOR logic) or miniuart will be broken | |
146 | if [ "$ENABLE_TURBO" = false ] ; then |
|
146 | if [ "$ENABLE_TURBO" = false ] ; then | |
147 | echo "core_freq=250" >> "${BOOT_DIR}/config.txt" |
|
147 | echo "core_freq=250" >> "${BOOT_DIR}/config.txt" | |
148 | fi |
|
148 | fi | |
149 | fi |
|
149 | fi | |
150 |
|
150 | |||
151 | # Activate services |
|
151 | # Activate services | |
152 | chroot_exec systemctl enable pi-bluetooth.hciuart.service |
|
152 | chroot_exec systemctl enable pi-bluetooth.hciuart.service | |
153 |
|
153 | |||
154 | else # if ENABLE_BLUETOOTH = false |
|
154 | else # if ENABLE_BLUETOOTH = false | |
155 | # set overlay to disable bluetooth |
|
155 | # set overlay to disable bluetooth | |
156 | echo "dtoverlay=pi3-disable-bt" >> "${BOOT_DIR}/config.txt" |
|
156 | echo "dtoverlay=pi3-disable-bt" >> "${BOOT_DIR}/config.txt" | |
157 | fi # ENABLE_BLUETOOTH end |
|
157 | fi # ENABLE_BLUETOOTH end | |
158 | fi |
|
158 | fi | |
159 |
|
159 | |||
160 | # may need sudo systemctl disable hciuart |
|
160 | # may need sudo systemctl disable hciuart | |
161 | if [ "$ENABLE_CONSOLE" = true ] ; then |
|
161 | if [ "$ENABLE_CONSOLE" = true ] ; then | |
162 | echo "enable_uart=1" >> "${BOOT_DIR}/config.txt" |
|
162 | echo "enable_uart=1" >> "${BOOT_DIR}/config.txt" | |
163 | # add string to cmdline |
|
163 | # add string to cmdline | |
164 | CMDLINE="${CMDLINE} console=serial0,115200" |
|
164 | CMDLINE="${CMDLINE} console=serial0,115200" | |
165 |
|
165 | |||
166 | # Enable serial console systemd style |
|
166 | # Enable serial console systemd style | |
167 | chroot_exec systemctl enable serial-getty@serial0.service |
|
167 | chroot_exec systemctl enable serial-getty@serial0.service | |
168 | else |
|
168 | else | |
169 | echo "enable_uart=0" >> "${BOOT_DIR}/config.txt" |
|
169 | echo "enable_uart=0" >> "${BOOT_DIR}/config.txt" | |
170 | fi |
|
170 | fi | |
171 |
|
171 | |||
172 | if [ "$ENABLE_SYSTEMDSWAP" = true ] ; then |
|
172 | if [ "$ENABLE_SYSTEMDSWAP" = true ] ; then | |
173 |
|
||||
174 | # Remove cmdline.txt entry of starting zswap |
|
|||
175 | if [ "$KERNEL_ZSWAP" = true ] ; then |
|
|||
176 | sed -i 's|zswap.enabled=1 zswap.max_pool_percent=25 zswap.compressor=lz4||g' |
|
|||
177 | fi |
|
|||
178 | # Create temporary directory for systemd-swap sources |
|
173 | # Create temporary directory for systemd-swap sources | |
179 | temp_dir=$(as_nobody mktemp -d) |
|
174 | temp_dir=$(as_nobody mktemp -d) | |
180 |
|
175 | |||
181 | # Fetch systemd-swap sources |
|
176 | # Fetch systemd-swap sources | |
182 | as_nobody git -C "${temp_dir}" clone "${SYSTEMDSWAP_URL}" |
|
177 | as_nobody git -C "${temp_dir}" clone "${SYSTEMDSWAP_URL}" | |
183 |
|
178 | |||
184 | # Copy downloaded systemd-swap sources |
|
179 | # Copy downloaded systemd-swap sources | |
185 | mv "${temp_dir}/systemd-swap" "${R}/tmp/" |
|
180 | mv "${temp_dir}/systemd-swap" "${R}/tmp/" | |
186 |
|
181 | |||
187 | # Set permissions of the systemd-swap sources |
|
182 | # Set permissions of the systemd-swap sources | |
188 | chown -R root:root "${R}/tmp/systemd-swap" |
|
183 | chown -R root:root "${R}/tmp/systemd-swap" | |
189 |
|
184 | |||
190 | # Remove temporary directory for systemd-swap sources |
|
185 | # Remove temporary directory for systemd-swap sources | |
191 | rm -fr "${temp_dir}" |
|
186 | rm -fr "${temp_dir}" | |
192 |
|
187 | |||
193 | # Change into downloaded src dir |
|
188 | # Change into downloaded src dir | |
194 | cd "${R}/tmp/systemd-swap" || exit |
|
189 | cd "${R}/tmp/systemd-swap" || exit | |
195 |
|
190 | |||
196 | # Build package |
|
191 | # Build package | |
197 | . ./package.sh debian |
|
192 | . ./package.sh debian | |
198 |
|
193 | |||
199 | # Install package |
|
194 | # Install package | |
200 | chroot_exec dpkg -i /tmp/systemd-swap/systemd-swap-*any.deb |
|
195 | chroot_exec dpkg -i /tmp/systemd-swap/systemd-swap-*any.deb | |
201 |
|
196 | |||
202 | # Enable service |
|
197 | # Enable service | |
203 | chroot_exec systemctl enable systemd-swap |
|
198 | chroot_exec systemctl enable systemd-swap | |
204 |
|
199 | |||
205 | # Change back into script root dir |
|
200 | # Change back into script root dir | |
206 | cd "${WORKDIR}" || exit |
|
201 | cd "${WORKDIR}" || exit | |
207 | else |
|
202 | else | |
208 | # Enable ZSWAP in cmdline if systemd-swap is not used |
|
203 | # Enable ZSWAP in cmdline if systemd-swap is not used | |
209 | if [ "$KERNEL_ZSWAP" = true ] ; then |
|
204 | if [ "$KERNEL_ZSWAP" = true ] ; then | |
210 | CMDLINE="${CMDLINE} zswap.enabled=1 zswap.max_pool_percent=25 zswap.compressor=lz4" |
|
205 | CMDLINE="${CMDLINE} zswap.enabled=1 zswap.max_pool_percent=25 zswap.compressor=lz4" | |
211 | fi |
|
206 | fi | |
212 | fi |
|
207 | fi | |
213 |
|
208 | |||
214 | # Install firmware boot cmdline |
|
209 | # Install firmware boot cmdline | |
215 | echo "${CMDLINE}" > "${BOOT_DIR}/cmdline.txt" |
|
210 | echo "${CMDLINE}" > "${BOOT_DIR}/cmdline.txt" | |
216 |
|
211 | |||
217 | # Setup minimal GPU memory allocation size: 16MB (no X) |
|
212 | # Setup minimal GPU memory allocation size: 16MB (no X) | |
218 | if [ "$ENABLE_MINGPU" = true ] ; then |
|
213 | if [ "$ENABLE_MINGPU" = true ] ; then | |
219 | echo "gpu_mem=16" >> "${BOOT_DIR}/config.txt" |
|
214 | echo "gpu_mem=16" >> "${BOOT_DIR}/config.txt" | |
220 | fi |
|
215 | fi | |
221 |
|
216 | |||
222 | # Setup boot with initramfs |
|
217 | # Setup boot with initramfs | |
223 | if [ "$ENABLE_INITRAMFS" = true ] ; then |
|
218 | if [ "$ENABLE_INITRAMFS" = true ] ; then | |
224 | echo "initramfs initramfs-${KERNEL_VERSION} followkernel" >> "${BOOT_DIR}/config.txt" |
|
219 | echo "initramfs initramfs-${KERNEL_VERSION} followkernel" >> "${BOOT_DIR}/config.txt" | |
225 | fi |
|
220 | fi | |
226 |
|
221 | |||
227 | # Create firmware configuration and cmdline symlinks |
|
222 | # Create firmware configuration and cmdline symlinks | |
228 | ln -sf firmware/config.txt "${R}/boot/config.txt" |
|
223 | ln -sf firmware/config.txt "${R}/boot/config.txt" | |
229 | ln -sf firmware/cmdline.txt "${R}/boot/cmdline.txt" |
|
224 | ln -sf firmware/cmdline.txt "${R}/boot/cmdline.txt" | |
230 |
|
225 | |||
231 | # Install and setup kernel modules to load at boot |
|
226 | # Install and setup kernel modules to load at boot | |
232 | mkdir -p "${LIB_DIR}/modules-load.d/" |
|
227 | mkdir -p "${LIB_DIR}/modules-load.d/" | |
233 | install_readonly files/modules/rpi2.conf "${LIB_DIR}/modules-load.d/rpi2.conf" |
|
228 | install_readonly files/modules/rpi2.conf "${LIB_DIR}/modules-load.d/rpi2.conf" | |
234 |
|
229 | |||
235 | # Load hardware random module at boot |
|
230 | # Load hardware random module at boot | |
236 | if [ "$ENABLE_HWRANDOM" = true ] && [ "$BUILD_KERNEL" = false ] ; then |
|
231 | if [ "$ENABLE_HWRANDOM" = true ] && [ "$BUILD_KERNEL" = false ] ; then | |
237 | sed -i "s/^# bcm2708_rng/bcm2708_rng/" "${LIB_DIR}/modules-load.d/rpi2.conf" |
|
232 | sed -i "s/^# bcm2708_rng/bcm2708_rng/" "${LIB_DIR}/modules-load.d/rpi2.conf" | |
238 | fi |
|
233 | fi | |
239 |
|
234 | |||
240 | # Load sound module at boot |
|
235 | # Load sound module at boot | |
241 | if [ "$ENABLE_SOUND" = true ] ; then |
|
236 | if [ "$ENABLE_SOUND" = true ] ; then | |
242 | sed -i "s/^# snd_bcm2835/snd_bcm2835/" "${LIB_DIR}/modules-load.d/rpi2.conf" |
|
237 | sed -i "s/^# snd_bcm2835/snd_bcm2835/" "${LIB_DIR}/modules-load.d/rpi2.conf" | |
243 | else |
|
238 | else | |
244 | echo "dtparam=audio=off" >> "${BOOT_DIR}/config.txt" |
|
239 | echo "dtparam=audio=off" >> "${BOOT_DIR}/config.txt" | |
245 | fi |
|
240 | fi | |
246 |
|
241 | |||
247 | # Enable I2C interface |
|
242 | # Enable I2C interface | |
248 | if [ "$ENABLE_I2C" = true ] ; then |
|
243 | if [ "$ENABLE_I2C" = true ] ; then | |
249 | echo "dtparam=i2c_arm=on" >> "${BOOT_DIR}/config.txt" |
|
244 | echo "dtparam=i2c_arm=on" >> "${BOOT_DIR}/config.txt" | |
250 | sed -i "s/^# i2c-bcm2708/i2c-bcm2708/" "${LIB_DIR}/modules-load.d/rpi2.conf" |
|
245 | sed -i "s/^# i2c-bcm2708/i2c-bcm2708/" "${LIB_DIR}/modules-load.d/rpi2.conf" | |
251 | sed -i "s/^# i2c-dev/i2c-dev/" "${LIB_DIR}/modules-load.d/rpi2.conf" |
|
246 | sed -i "s/^# i2c-dev/i2c-dev/" "${LIB_DIR}/modules-load.d/rpi2.conf" | |
252 | fi |
|
247 | fi | |
253 |
|
248 | |||
254 | # Enable SPI interface |
|
249 | # Enable SPI interface | |
255 | if [ "$ENABLE_SPI" = true ] ; then |
|
250 | if [ "$ENABLE_SPI" = true ] ; then | |
256 | echo "dtparam=spi=on" >> "${BOOT_DIR}/config.txt" |
|
251 | echo "dtparam=spi=on" >> "${BOOT_DIR}/config.txt" | |
257 | echo "spi-bcm2708" >> "${LIB_DIR}/modules-load.d/rpi2.conf" |
|
252 | echo "spi-bcm2708" >> "${LIB_DIR}/modules-load.d/rpi2.conf" | |
258 | if [ "$RPI_MODEL" = 3 ] || [ "$RPI_MODEL" = 3P ]; then |
|
253 | if [ "$RPI_MODEL" = 3 ] || [ "$RPI_MODEL" = 3P ]; then | |
259 | sed -i "s/spi-bcm2708/spi-bcm2835/" "${LIB_DIR}/modules-load.d/rpi2.conf" |
|
254 | sed -i "s/spi-bcm2708/spi-bcm2835/" "${LIB_DIR}/modules-load.d/rpi2.conf" | |
260 | fi |
|
255 | fi | |
261 | fi |
|
256 | fi | |
262 |
|
257 | |||
263 | # Disable RPi2/3 under-voltage warnings |
|
258 | # Disable RPi2/3 under-voltage warnings | |
264 | if [ -n "$DISABLE_UNDERVOLT_WARNINGS" ] ; then |
|
259 | if [ -n "$DISABLE_UNDERVOLT_WARNINGS" ] ; then | |
265 | echo "avoid_warnings=${DISABLE_UNDERVOLT_WARNINGS}" >> "${BOOT_DIR}/config.txt" |
|
260 | echo "avoid_warnings=${DISABLE_UNDERVOLT_WARNINGS}" >> "${BOOT_DIR}/config.txt" | |
266 | fi |
|
261 | fi | |
267 |
|
262 | |||
268 | # Install kernel modules blacklist |
|
263 | # Install kernel modules blacklist | |
269 | mkdir -p "${ETC_DIR}/modprobe.d/" |
|
264 | mkdir -p "${ETC_DIR}/modprobe.d/" | |
270 | install_readonly files/modules/raspi-blacklist.conf "${ETC_DIR}/modprobe.d/raspi-blacklist.conf" |
|
265 | install_readonly files/modules/raspi-blacklist.conf "${ETC_DIR}/modprobe.d/raspi-blacklist.conf" | |
271 |
|
266 | |||
272 | # Install sysctl.d configuration files |
|
267 | # Install sysctl.d configuration files | |
273 | install_readonly files/sysctl.d/81-rpi-vm.conf "${ETC_DIR}/sysctl.d/81-rpi-vm.conf" |
|
268 | install_readonly files/sysctl.d/81-rpi-vm.conf "${ETC_DIR}/sysctl.d/81-rpi-vm.conf" |
General Comments 0
Vous devez vous connecter pour laisser un commentaire.
Se connecter maintenant