@@ -1,671 +1,663 | |||||
1 | #!/bin/sh |
|
1 | #!/bin/sh | |
2 |
|
2 | |||
3 | ######################################################################## |
|
3 | ######################################################################## | |
4 | # rpi23-gen-image.sh 2015-2017 |
|
4 | # rpi23-gen-image.sh 2015-2017 | |
5 | # |
|
5 | # | |
6 | # Advanced Debian "jessie", "stretch" and "buster" bootstrap script for RPi2/3 |
|
6 | # Advanced Debian "jessie", "stretch" and "buster" bootstrap script for RPi2/3 | |
7 | # |
|
7 | # | |
8 | # This program is free software; you can redistribute it and/or |
|
8 | # This program is free software; you can redistribute it and/or | |
9 | # modify it under the terms of the GNU General Public License |
|
9 | # modify it under the terms of the GNU General Public License | |
10 | # as published by the Free Software Foundation; either version 2 |
|
10 | # as published by the Free Software Foundation; either version 2 | |
11 | # of the License, or (at your option) any later version. |
|
11 | # of the License, or (at your option) any later version. | |
12 | # |
|
12 | # | |
13 | # Copyright (C) 2015 Jan Wagner <mail@jwagner.eu> |
|
13 | # Copyright (C) 2015 Jan Wagner <mail@jwagner.eu> | |
14 | # |
|
14 | # | |
15 | # Big thanks for patches and enhancements by 20+ github contributors! |
|
15 | # Big thanks for patches and enhancements by 20+ github contributors! | |
16 | ######################################################################## |
|
16 | ######################################################################## | |
17 |
|
17 | |||
18 | # Are we running as root? |
|
18 | # Are we running as root? | |
19 | if [ "$(id -u)" -ne "0" ] ; then |
|
19 | if [ "$(id -u)" -ne "0" ] ; then | |
20 | echo "error: this script must be executed with root privileges!" |
|
20 | echo "error: this script must be executed with root privileges!" | |
21 | exit 1 |
|
21 | exit 1 | |
22 | fi |
|
22 | fi | |
23 |
|
23 | |||
24 | # Check if ./functions.sh script exists |
|
24 | # Check if ./functions.sh script exists | |
25 | if [ ! -r "./functions.sh" ] ; then |
|
25 | if [ ! -r "./functions.sh" ] ; then | |
26 | echo "error: './functions.sh' required script not found!" |
|
26 | echo "error: './functions.sh' required script not found!" | |
27 | exit 1 |
|
27 | exit 1 | |
28 | fi |
|
28 | fi | |
29 |
|
29 | |||
30 | # Load utility functions |
|
30 | # Load utility functions | |
31 | . ./functions.sh |
|
31 | . ./functions.sh | |
32 |
|
32 | |||
33 | # Load parameters from configuration template file |
|
33 | # Load parameters from configuration template file | |
34 | if [ ! -z "$CONFIG_TEMPLATE" ] ; then |
|
34 | if [ ! -z "$CONFIG_TEMPLATE" ] ; then | |
35 | use_template |
|
35 | use_template | |
36 | fi |
|
36 | fi | |
37 |
|
37 | |||
38 | # Introduce settings |
|
38 | # Introduce settings | |
39 | set -e |
|
39 | set -e | |
40 | echo -n -e "\n#\n# RPi2/3 Bootstrap Settings\n#\n" |
|
40 | echo -n -e "\n#\n# RPi2/3 Bootstrap Settings\n#\n" | |
41 | set -x |
|
41 | set -x | |
42 |
|
42 | |||
43 | # Raspberry Pi model configuration |
|
43 | # Raspberry Pi model configuration | |
44 | RPI_MODEL=${RPI_MODEL:=2} |
|
44 | RPI_MODEL=${RPI_MODEL:=2} | |
45 | RPI2_DTB_FILE=${RPI2_DTB_FILE:=bcm2709-rpi-2-b.dtb} |
|
45 | RPI2_DTB_FILE=${RPI2_DTB_FILE:=bcm2709-rpi-2-b.dtb} | |
46 | RPI2_UBOOT_CONFIG=${RPI2_UBOOT_CONFIG:=rpi_2_defconfig} |
|
46 | RPI2_UBOOT_CONFIG=${RPI2_UBOOT_CONFIG:=rpi_2_defconfig} | |
47 | RPI3_DTB_FILE=${RPI3_DTB_FILE:=bcm2710-rpi-3-b.dtb} |
|
47 | RPI3_DTB_FILE=${RPI3_DTB_FILE:=bcm2710-rpi-3-b.dtb} | |
48 | RPI3_UBOOT_CONFIG=${RPI3_UBOOT_CONFIG:=rpi_3_32b_defconfig} |
|
48 | RPI3_UBOOT_CONFIG=${RPI3_UBOOT_CONFIG:=rpi_3_32b_defconfig} | |
49 | RPI3B_DTB_FILE=${RPI3B_DTB_FILE:=bcm2710-rpi-3-b-plus.dtb} |
|
49 | RPI3B_DTB_FILE=${RPI3B_DTB_FILE:=bcm2710-rpi-3-b-plus.dtb} | |
50 | RPI3B_UBOOT_CONFIG=${RPI3_UBOOT_CONFIG:=rpi_3_32b_defconfig} |
|
50 | RPI3B_UBOOT_CONFIG=${RPI3_UBOOT_CONFIG:=rpi_3_32b_defconfig} | |
51 |
|
51 | |||
52 | # Debian release |
|
52 | # Debian release | |
53 | RELEASE=${RELEASE:=jessie} |
|
53 | RELEASE=${RELEASE:=jessie} | |
54 | KERNEL_ARCH=${KERNEL_ARCH:=arm} |
|
54 | KERNEL_ARCH=${KERNEL_ARCH:=arm} | |
55 | RELEASE_ARCH=${RELEASE_ARCH:=armhf} |
|
55 | RELEASE_ARCH=${RELEASE_ARCH:=armhf} | |
56 | CROSS_COMPILE=${CROSS_COMPILE:=arm-linux-gnueabihf-} |
|
56 | CROSS_COMPILE=${CROSS_COMPILE:=arm-linux-gnueabihf-} | |
57 | COLLABORA_KERNEL=${COLLABORA_KERNEL:=3.18.0-trunk-rpi2} |
|
57 | COLLABORA_KERNEL=${COLLABORA_KERNEL:=3.18.0-trunk-rpi2} | |
58 | if [ "$KERNEL_ARCH" = "arm64" ] ; then |
|
58 | if [ "$KERNEL_ARCH" = "arm64" ] ; then | |
59 | KERNEL_DEFCONFIG=${KERNEL_DEFCONFIG:=bcmrpi3_defconfig} |
|
59 | KERNEL_DEFCONFIG=${KERNEL_DEFCONFIG:=bcmrpi3_defconfig} | |
60 | KERNEL_IMAGE=${KERNEL_IMAGE:=kernel8.img} |
|
60 | KERNEL_IMAGE=${KERNEL_IMAGE:=kernel8.img} | |
61 | else |
|
61 | else | |
62 | KERNEL_DEFCONFIG=${KERNEL_DEFCONFIG:=bcm2709_defconfig} |
|
62 | KERNEL_DEFCONFIG=${KERNEL_DEFCONFIG:=bcm2709_defconfig} | |
63 | KERNEL_IMAGE=${KERNEL_IMAGE:=kernel7.img} |
|
63 | KERNEL_IMAGE=${KERNEL_IMAGE:=kernel7.img} | |
64 | fi |
|
64 | fi | |
65 | if [ "$RELEASE_ARCH" = "arm64" ] ; then |
|
65 | if [ "$RELEASE_ARCH" = "arm64" ] ; then | |
66 | QEMU_BINARY=${QEMU_BINARY:=/usr/bin/qemu-aarch64-static} |
|
66 | QEMU_BINARY=${QEMU_BINARY:=/usr/bin/qemu-aarch64-static} | |
67 | else |
|
67 | else | |
68 | QEMU_BINARY=${QEMU_BINARY:=/usr/bin/qemu-arm-static} |
|
68 | QEMU_BINARY=${QEMU_BINARY:=/usr/bin/qemu-arm-static} | |
69 | fi |
|
69 | fi | |
70 | KERNEL_BRANCH=${KERNEL_BRANCH:=""} |
|
70 | KERNEL_BRANCH=${KERNEL_BRANCH:=""} | |
71 |
|
71 | |||
72 | # URLs |
|
72 | # URLs | |
73 | KERNEL_URL=${KERNEL_URL:=https://github.com/raspberrypi/linux} |
|
73 | KERNEL_URL=${KERNEL_URL:=https://github.com/raspberrypi/linux} | |
74 | FIRMWARE_URL=${FIRMWARE_URL:=https://github.com/raspberrypi/firmware/raw/master/boot} |
|
74 | FIRMWARE_URL=${FIRMWARE_URL:=https://github.com/raspberrypi/firmware/raw/master/boot} | |
75 | WLAN_FIRMWARE_URL=${WLAN_FIRMWARE_URL:=https://github.com/RPi-Distro/firmware-nonfree/raw/master/brcm} |
|
75 | WLAN_FIRMWARE_URL=${WLAN_FIRMWARE_URL:=https://github.com/RPi-Distro/firmware-nonfree/raw/master/brcm} | |
76 | COLLABORA_URL=${COLLABORA_URL:=https://repositories.collabora.co.uk/debian} |
|
76 | COLLABORA_URL=${COLLABORA_URL:=https://repositories.collabora.co.uk/debian} | |
77 | FBTURBO_URL=${FBTURBO_URL:=https://github.com/ssvb/xf86-video-fbturbo.git} |
|
77 | FBTURBO_URL=${FBTURBO_URL:=https://github.com/ssvb/xf86-video-fbturbo.git} | |
78 | UBOOT_URL=${UBOOT_URL:=git://git.denx.de/u-boot.git} |
|
78 | UBOOT_URL=${UBOOT_URL:=git://git.denx.de/u-boot.git} | |
79 |
|
79 | |||
80 | # Build directories |
|
80 | # Build directories | |
81 | BASEDIR=${BASEDIR:=$(pwd)/images/${RELEASE}} |
|
81 | BASEDIR=${BASEDIR:=$(pwd)/images/${RELEASE}} | |
82 | BUILDDIR="${BASEDIR}/build" |
|
82 | BUILDDIR="${BASEDIR}/build" | |
83 |
|
83 | |||
84 | # Prepare date string for default image file name |
|
84 | # Prepare date string for default image file name | |
85 | DATE="$(date +%Y-%m-%d)" |
|
85 | DATE="$(date +%Y-%m-%d)" | |
86 | if [ -z "$KERNEL_BRANCH" ] ; then |
|
86 | if [ -z "$KERNEL_BRANCH" ] ; then | |
87 | IMAGE_NAME=${IMAGE_NAME:=${BASEDIR}/${DATE}-${KERNEL_ARCH}-CURRENT-rpi${RPI_MODEL}-${RELEASE}-${RELEASE_ARCH}} |
|
87 | IMAGE_NAME=${IMAGE_NAME:=${BASEDIR}/${DATE}-${KERNEL_ARCH}-CURRENT-rpi${RPI_MODEL}-${RELEASE}-${RELEASE_ARCH}} | |
88 | else |
|
88 | else | |
89 | IMAGE_NAME=${IMAGE_NAME:=${BASEDIR}/${DATE}-${KERNEL_ARCH}-${KERNEL_BRANCH}-rpi${RPI_MODEL}-${RELEASE}-${RELEASE_ARCH}} |
|
89 | IMAGE_NAME=${IMAGE_NAME:=${BASEDIR}/${DATE}-${KERNEL_ARCH}-${KERNEL_BRANCH}-rpi${RPI_MODEL}-${RELEASE}-${RELEASE_ARCH}} | |
90 | fi |
|
90 | fi | |
91 |
|
91 | |||
92 | # Chroot directories |
|
92 | # Chroot directories | |
93 | R="${BUILDDIR}/chroot" |
|
93 | R="${BUILDDIR}/chroot" | |
94 | ETC_DIR="${R}/etc" |
|
94 | ETC_DIR="${R}/etc" | |
95 | LIB_DIR="${R}/lib" |
|
95 | LIB_DIR="${R}/lib" | |
96 | BOOT_DIR="${R}/boot/firmware" |
|
96 | BOOT_DIR="${R}/boot/firmware" | |
97 | KERNEL_DIR="${R}/usr/src/linux" |
|
97 | KERNEL_DIR="${R}/usr/src/linux" | |
98 | WLAN_FIRMWARE_DIR="${R}/lib/firmware/brcm" |
|
98 | WLAN_FIRMWARE_DIR="${R}/lib/firmware/brcm" | |
99 |
|
99 | |||
100 | # Firmware directory: Blank if download from github |
|
100 | # Firmware directory: Blank if download from github | |
101 | RPI_FIRMWARE_DIR=${RPI_FIRMWARE_DIR:=""} |
|
101 | RPI_FIRMWARE_DIR=${RPI_FIRMWARE_DIR:=""} | |
102 |
|
102 | |||
103 | # General settings |
|
103 | # General settings | |
104 | HOSTNAME=${HOSTNAME:=rpi${RPI_MODEL}-${RELEASE}} |
|
104 | HOSTNAME=${HOSTNAME:=rpi${RPI_MODEL}-${RELEASE}} | |
105 | PASSWORD=${PASSWORD:=raspberry} |
|
105 | PASSWORD=${PASSWORD:=raspberry} | |
106 | USER_PASSWORD=${USER_PASSWORD:=raspberry} |
|
106 | USER_PASSWORD=${USER_PASSWORD:=raspberry} | |
107 | DEFLOCAL=${DEFLOCAL:="en_US.UTF-8"} |
|
107 | DEFLOCAL=${DEFLOCAL:="en_US.UTF-8"} | |
108 | TIMEZONE=${TIMEZONE:="Europe/Berlin"} |
|
108 | TIMEZONE=${TIMEZONE:="Europe/Berlin"} | |
109 | EXPANDROOT=${EXPANDROOT:=true} |
|
109 | EXPANDROOT=${EXPANDROOT:=true} | |
110 |
|
110 | |||
111 | # Keyboard settings |
|
111 | # Keyboard settings | |
112 | XKB_MODEL=${XKB_MODEL:=""} |
|
112 | XKB_MODEL=${XKB_MODEL:=""} | |
113 | XKB_LAYOUT=${XKB_LAYOUT:=""} |
|
113 | XKB_LAYOUT=${XKB_LAYOUT:=""} | |
114 | XKB_VARIANT=${XKB_VARIANT:=""} |
|
114 | XKB_VARIANT=${XKB_VARIANT:=""} | |
115 | XKB_OPTIONS=${XKB_OPTIONS:=""} |
|
115 | XKB_OPTIONS=${XKB_OPTIONS:=""} | |
116 |
|
116 | |||
117 | # Network settings (DHCP) |
|
117 | # Network settings (DHCP) | |
118 | ENABLE_DHCP=${ENABLE_DHCP:=true} |
|
118 | ENABLE_DHCP=${ENABLE_DHCP:=true} | |
119 |
|
119 | |||
120 | # Network settings (static) |
|
120 | # Network settings (static) | |
121 | NET_ADDRESS=${NET_ADDRESS:=""} |
|
121 | NET_ADDRESS=${NET_ADDRESS:=""} | |
122 | NET_GATEWAY=${NET_GATEWAY:=""} |
|
122 | NET_GATEWAY=${NET_GATEWAY:=""} | |
123 | NET_DNS_1=${NET_DNS_1:=""} |
|
123 | NET_DNS_1=${NET_DNS_1:=""} | |
124 | NET_DNS_2=${NET_DNS_2:=""} |
|
124 | NET_DNS_2=${NET_DNS_2:=""} | |
125 | NET_DNS_DOMAINS=${NET_DNS_DOMAINS:=""} |
|
125 | NET_DNS_DOMAINS=${NET_DNS_DOMAINS:=""} | |
126 | NET_NTP_1=${NET_NTP_1:=""} |
|
126 | NET_NTP_1=${NET_NTP_1:=""} | |
127 | NET_NTP_2=${NET_NTP_2:=""} |
|
127 | NET_NTP_2=${NET_NTP_2:=""} | |
128 |
|
128 | |||
129 | # APT settings |
|
129 | # APT settings | |
130 | APT_PROXY=${APT_PROXY:=""} |
|
130 | APT_PROXY=${APT_PROXY:=""} | |
131 | APT_SERVER=${APT_SERVER:="ftp.debian.org"} |
|
131 | APT_SERVER=${APT_SERVER:="ftp.debian.org"} | |
132 |
|
132 | |||
133 | # Feature settings |
|
133 | # Feature settings | |
134 | ENABLE_CONSOLE=${ENABLE_CONSOLE:=true} |
|
134 | ENABLE_CONSOLE=${ENABLE_CONSOLE:=true} | |
135 | ENABLE_I2C=${ENABLE_I2C:=false} |
|
135 | ENABLE_I2C=${ENABLE_I2C:=false} | |
136 | ENABLE_SPI=${ENABLE_SPI:=false} |
|
136 | ENABLE_SPI=${ENABLE_SPI:=false} | |
137 | ENABLE_IPV6=${ENABLE_IPV6:=true} |
|
137 | ENABLE_IPV6=${ENABLE_IPV6:=true} | |
138 | ENABLE_SSHD=${ENABLE_SSHD:=true} |
|
138 | ENABLE_SSHD=${ENABLE_SSHD:=true} | |
139 | ENABLE_NONFREE=${ENABLE_NONFREE:=false} |
|
139 | ENABLE_NONFREE=${ENABLE_NONFREE:=false} | |
140 | ENABLE_WIRELESS=${ENABLE_WIRELESS:=false} |
|
140 | ENABLE_WIRELESS=${ENABLE_WIRELESS:=false} | |
141 | ENABLE_SOUND=${ENABLE_SOUND:=true} |
|
141 | ENABLE_SOUND=${ENABLE_SOUND:=true} | |
142 | ENABLE_DBUS=${ENABLE_DBUS:=true} |
|
142 | ENABLE_DBUS=${ENABLE_DBUS:=true} | |
143 | ENABLE_HWRANDOM=${ENABLE_HWRANDOM:=true} |
|
143 | ENABLE_HWRANDOM=${ENABLE_HWRANDOM:=true} | |
144 | ENABLE_MINGPU=${ENABLE_MINGPU:=false} |
|
144 | ENABLE_MINGPU=${ENABLE_MINGPU:=false} | |
145 | ENABLE_XORG=${ENABLE_XORG:=false} |
|
145 | ENABLE_XORG=${ENABLE_XORG:=false} | |
146 | ENABLE_WM=${ENABLE_WM:=""} |
|
146 | ENABLE_WM=${ENABLE_WM:=""} | |
147 | ENABLE_RSYSLOG=${ENABLE_RSYSLOG:=true} |
|
147 | ENABLE_RSYSLOG=${ENABLE_RSYSLOG:=true} | |
148 | ENABLE_USER=${ENABLE_USER:=true} |
|
148 | ENABLE_USER=${ENABLE_USER:=true} | |
149 | USER_NAME=${USER_NAME:="pi"} |
|
149 | USER_NAME=${USER_NAME:="pi"} | |
150 | ENABLE_ROOT=${ENABLE_ROOT:=false} |
|
150 | ENABLE_ROOT=${ENABLE_ROOT:=false} | |
151 |
|
151 | |||
152 | # SSH settings |
|
152 | # SSH settings | |
153 | SSH_ENABLE_ROOT=${SSH_ENABLE_ROOT:=false} |
|
153 | SSH_ENABLE_ROOT=${SSH_ENABLE_ROOT:=false} | |
154 | SSH_DISABLE_PASSWORD_AUTH=${SSH_DISABLE_PASSWORD_AUTH:=false} |
|
154 | SSH_DISABLE_PASSWORD_AUTH=${SSH_DISABLE_PASSWORD_AUTH:=false} | |
155 | SSH_LIMIT_USERS=${SSH_LIMIT_USERS:=false} |
|
155 | SSH_LIMIT_USERS=${SSH_LIMIT_USERS:=false} | |
156 | SSH_ROOT_PUB_KEY=${SSH_ROOT_PUB_KEY:=""} |
|
156 | SSH_ROOT_PUB_KEY=${SSH_ROOT_PUB_KEY:=""} | |
157 | SSH_USER_PUB_KEY=${SSH_USER_PUB_KEY:=""} |
|
157 | SSH_USER_PUB_KEY=${SSH_USER_PUB_KEY:=""} | |
158 |
|
158 | |||
159 | # Advanced settings |
|
159 | # Advanced settings | |
160 | ENABLE_MINBASE=${ENABLE_MINBASE:=false} |
|
160 | ENABLE_MINBASE=${ENABLE_MINBASE:=false} | |
161 | ENABLE_REDUCE=${ENABLE_REDUCE:=false} |
|
161 | ENABLE_REDUCE=${ENABLE_REDUCE:=false} | |
162 | ENABLE_UBOOT=${ENABLE_UBOOT:=false} |
|
162 | ENABLE_UBOOT=${ENABLE_UBOOT:=false} | |
163 | UBOOTSRC_DIR=${UBOOTSRC_DIR:=""} |
|
163 | UBOOTSRC_DIR=${UBOOTSRC_DIR:=""} | |
164 | ENABLE_FBTURBO=${ENABLE_FBTURBO:=false} |
|
164 | ENABLE_FBTURBO=${ENABLE_FBTURBO:=false} | |
165 | FBTURBOSRC_DIR=${FBTURBOSRC_DIR:=""} |
|
165 | FBTURBOSRC_DIR=${FBTURBOSRC_DIR:=""} | |
166 | ENABLE_HARDNET=${ENABLE_HARDNET:=false} |
|
166 | ENABLE_HARDNET=${ENABLE_HARDNET:=false} | |
167 | ENABLE_IPTABLES=${ENABLE_IPTABLES:=false} |
|
167 | ENABLE_IPTABLES=${ENABLE_IPTABLES:=false} | |
168 | ENABLE_SPLITFS=${ENABLE_SPLITFS:=false} |
|
168 | ENABLE_SPLITFS=${ENABLE_SPLITFS:=false} | |
169 | ENABLE_INITRAMFS=${ENABLE_INITRAMFS:=false} |
|
169 | ENABLE_INITRAMFS=${ENABLE_INITRAMFS:=false} | |
170 | ENABLE_IFNAMES=${ENABLE_IFNAMES:=true} |
|
170 | ENABLE_IFNAMES=${ENABLE_IFNAMES:=true} | |
171 | DISABLE_UNDERVOLT_WARNINGS=${DISABLE_UNDERVOLT_WARNINGS:=} |
|
171 | DISABLE_UNDERVOLT_WARNINGS=${DISABLE_UNDERVOLT_WARNINGS:=} | |
172 |
|
172 | |||
173 | # Kernel compilation settings |
|
173 | # Kernel compilation settings | |
174 | BUILD_KERNEL=${BUILD_KERNEL:=false} |
|
174 | BUILD_KERNEL=${BUILD_KERNEL:=false} | |
175 | KERNEL_REDUCE=${KERNEL_REDUCE:=false} |
|
175 | KERNEL_REDUCE=${KERNEL_REDUCE:=false} | |
176 | KERNEL_THREADS=${KERNEL_THREADS:=1} |
|
176 | KERNEL_THREADS=${KERNEL_THREADS:=1} | |
177 | KERNEL_HEADERS=${KERNEL_HEADERS:=true} |
|
177 | KERNEL_HEADERS=${KERNEL_HEADERS:=true} | |
178 | KERNEL_MENUCONFIG=${KERNEL_MENUCONFIG:=false} |
|
178 | KERNEL_MENUCONFIG=${KERNEL_MENUCONFIG:=false} | |
179 | KERNEL_REMOVESRC=${KERNEL_REMOVESRC:=true} |
|
179 | KERNEL_REMOVESRC=${KERNEL_REMOVESRC:=true} | |
180 | KERNEL_OLDDEFCONFIG=${KERNEL_OLDDEFCONFIG:=false} |
|
180 | KERNEL_OLDDEFCONFIG=${KERNEL_OLDDEFCONFIG:=false} | |
181 | KERNEL_CCACHE=${KERNEL_CCACHE:=false} |
|
181 | KERNEL_CCACHE=${KERNEL_CCACHE:=false} | |
182 |
|
182 | |||
183 | if [ "$KERNEL_ARCH" = "arm64" ] ; then |
|
183 | if [ "$KERNEL_ARCH" = "arm64" ] ; then | |
184 | KERNEL_BIN_IMAGE=${KERNEL_BIN_IMAGE:="Image"} |
|
184 | KERNEL_BIN_IMAGE=${KERNEL_BIN_IMAGE:="Image"} | |
185 | else |
|
185 | else | |
186 | KERNEL_BIN_IMAGE=${KERNEL_BIN_IMAGE:="zImage"} |
|
186 | KERNEL_BIN_IMAGE=${KERNEL_BIN_IMAGE:="zImage"} | |
187 | fi |
|
187 | fi | |
188 |
|
188 | |||
189 | # Kernel compilation from source directory settings |
|
189 | # Kernel compilation from source directory settings | |
190 | KERNELSRC_DIR=${KERNELSRC_DIR:=""} |
|
190 | KERNELSRC_DIR=${KERNELSRC_DIR:=""} | |
191 | KERNELSRC_CLEAN=${KERNELSRC_CLEAN:=false} |
|
191 | KERNELSRC_CLEAN=${KERNELSRC_CLEAN:=false} | |
192 | KERNELSRC_CONFIG=${KERNELSRC_CONFIG:=true} |
|
192 | KERNELSRC_CONFIG=${KERNELSRC_CONFIG:=true} | |
193 | KERNELSRC_PREBUILT=${KERNELSRC_PREBUILT:=false} |
|
193 | KERNELSRC_PREBUILT=${KERNELSRC_PREBUILT:=false} | |
194 |
|
194 | |||
195 | # Reduce disk usage settings |
|
195 | # Reduce disk usage settings | |
196 | REDUCE_APT=${REDUCE_APT:=true} |
|
196 | REDUCE_APT=${REDUCE_APT:=true} | |
197 | REDUCE_DOC=${REDUCE_DOC:=true} |
|
197 | REDUCE_DOC=${REDUCE_DOC:=true} | |
198 | REDUCE_MAN=${REDUCE_MAN:=true} |
|
198 | REDUCE_MAN=${REDUCE_MAN:=true} | |
199 | REDUCE_VIM=${REDUCE_VIM:=false} |
|
199 | REDUCE_VIM=${REDUCE_VIM:=false} | |
200 | REDUCE_BASH=${REDUCE_BASH:=false} |
|
200 | REDUCE_BASH=${REDUCE_BASH:=false} | |
201 | REDUCE_HWDB=${REDUCE_HWDB:=true} |
|
201 | REDUCE_HWDB=${REDUCE_HWDB:=true} | |
202 | REDUCE_SSHD=${REDUCE_SSHD:=true} |
|
202 | REDUCE_SSHD=${REDUCE_SSHD:=true} | |
203 | REDUCE_LOCALE=${REDUCE_LOCALE:=true} |
|
203 | REDUCE_LOCALE=${REDUCE_LOCALE:=true} | |
204 |
|
204 | |||
205 | # Encrypted filesystem settings |
|
205 | # Encrypted filesystem settings | |
206 | ENABLE_CRYPTFS=${ENABLE_CRYPTFS:=false} |
|
206 | ENABLE_CRYPTFS=${ENABLE_CRYPTFS:=false} | |
207 | CRYPTFS_PASSWORD=${CRYPTFS_PASSWORD:=""} |
|
207 | CRYPTFS_PASSWORD=${CRYPTFS_PASSWORD:=""} | |
208 | CRYPTFS_MAPPING=${CRYPTFS_MAPPING:="secure"} |
|
208 | CRYPTFS_MAPPING=${CRYPTFS_MAPPING:="secure"} | |
209 | CRYPTFS_CIPHER=${CRYPTFS_CIPHER:="aes-xts-plain64:sha512"} |
|
209 | CRYPTFS_CIPHER=${CRYPTFS_CIPHER:="aes-xts-plain64:sha512"} | |
210 | CRYPTFS_XTSKEYSIZE=${CRYPTFS_XTSKEYSIZE:=512} |
|
210 | CRYPTFS_XTSKEYSIZE=${CRYPTFS_XTSKEYSIZE:=512} | |
211 |
|
211 | |||
212 | # Stop the Crypto Wars |
|
|||
213 | DISABLE_FBI=${DISABLE_FBI:=false} |
|
|||
214 |
|
||||
215 | # Chroot scripts directory |
|
212 | # Chroot scripts directory | |
216 | CHROOT_SCRIPTS=${CHROOT_SCRIPTS:=""} |
|
213 | CHROOT_SCRIPTS=${CHROOT_SCRIPTS:=""} | |
217 |
|
214 | |||
218 | # Packages required in the chroot build environment |
|
215 | # Packages required in the chroot build environment | |
219 | APT_INCLUDES=${APT_INCLUDES:=""} |
|
216 | APT_INCLUDES=${APT_INCLUDES:=""} | |
220 | APT_INCLUDES="${APT_INCLUDES},apt-transport-https,apt-utils,ca-certificates,debian-archive-keyring,dialog,sudo,systemd,sysvinit-utils" |
|
217 | APT_INCLUDES="${APT_INCLUDES},apt-transport-https,apt-utils,ca-certificates,debian-archive-keyring,dialog,sudo,systemd,sysvinit-utils" | |
221 |
|
218 | |||
222 | # Packages required for bootstrapping |
|
219 | # Packages required for bootstrapping | |
223 | REQUIRED_PACKAGES="debootstrap debian-archive-keyring qemu-user-static binfmt-support dosfstools rsync bmap-tools whois git bc psmisc dbus sudo" |
|
220 | REQUIRED_PACKAGES="debootstrap debian-archive-keyring qemu-user-static binfmt-support dosfstools rsync bmap-tools whois git bc psmisc dbus sudo" | |
224 | MISSING_PACKAGES="" |
|
221 | MISSING_PACKAGES="" | |
225 |
|
222 | |||
226 | # Packages installed for c/c++ build environment in chroot (keep empty) |
|
223 | # Packages installed for c/c++ build environment in chroot (keep empty) | |
227 | COMPILER_PACKAGES="" |
|
224 | COMPILER_PACKAGES="" | |
228 |
|
225 | |||
229 | set +x |
|
226 | set +x | |
230 |
|
227 | |||
231 | # Set Raspberry Pi model specific configuration |
|
228 | # Set Raspberry Pi model specific configuration | |
232 | if [ "$RPI_MODEL" = 2 ] ; then |
|
229 | if [ "$RPI_MODEL" = 2 ] ; then | |
233 | DTB_FILE=${RPI2_DTB_FILE} |
|
230 | DTB_FILE=${RPI2_DTB_FILE} | |
234 | UBOOT_CONFIG=${RPI2_UBOOT_CONFIG} |
|
231 | UBOOT_CONFIG=${RPI2_UBOOT_CONFIG} | |
235 | elif [ "$RPI_MODEL" = 3 ] ; then |
|
232 | elif [ "$RPI_MODEL" = 3 ] ; then | |
236 | DTB_FILE=${RPI3_DTB_FILE} |
|
233 | DTB_FILE=${RPI3_DTB_FILE} | |
237 | UBOOT_CONFIG=${RPI3_UBOOT_CONFIG} |
|
234 | UBOOT_CONFIG=${RPI3_UBOOT_CONFIG} | |
238 | BUILD_KERNEL=true |
|
235 | BUILD_KERNEL=true | |
239 | elif [ "$RPI_MODEL" = 3B ] ; then |
|
236 | elif [ "$RPI_MODEL" = 3B ] ; then | |
240 | DTB_FILE=${RPI3B_DTB_FILE} |
|
237 | DTB_FILE=${RPI3B_DTB_FILE} | |
241 | UBOOT_CONFIG=${RPI3B_UBOOT_CONFIG} |
|
238 | UBOOT_CONFIG=${RPI3B_UBOOT_CONFIG} | |
242 | BUILD_KERNEL=true |
|
239 | BUILD_KERNEL=true | |
243 | else |
|
240 | else | |
244 | echo "error: Raspberry Pi model ${RPI_MODEL} is not supported!" |
|
241 | echo "error: Raspberry Pi model ${RPI_MODEL} is not supported!" | |
245 | exit 1 |
|
242 | exit 1 | |
246 | fi |
|
243 | fi | |
247 |
|
244 | |||
248 | # Check if the internal wireless interface is supported by the RPi model |
|
245 | # Check if the internal wireless interface is supported by the RPi model | |
249 | if [ "$ENABLE_WIRELESS" = true ] && [ "$RPI_MODEL" = 2 ]; then |
|
246 | if [ "$ENABLE_WIRELESS" = true ] && [ "$RPI_MODEL" = 2 ]; then | |
250 | echo "error: The selected Raspberry Pi model has no internal wireless interface" |
|
247 | echo "error: The selected Raspberry Pi model has no internal wireless interface" | |
251 | exit 1 |
|
248 | exit 1 | |
252 | fi |
|
249 | fi | |
253 |
|
250 | |||
254 | # Check if DISABLE_UNDERVOLT_WARNINGS parameter value is supported |
|
251 | # Check if DISABLE_UNDERVOLT_WARNINGS parameter value is supported | |
255 | if [ ! -z "$DISABLE_UNDERVOLT_WARNINGS" ] ; then |
|
252 | if [ ! -z "$DISABLE_UNDERVOLT_WARNINGS" ] ; then | |
256 | if [ "$DISABLE_UNDERVOLT_WARNINGS" != 1 ] && [ "$DISABLE_UNDERVOLT_WARNINGS" != 2 ] ; then |
|
253 | if [ "$DISABLE_UNDERVOLT_WARNINGS" != 1 ] && [ "$DISABLE_UNDERVOLT_WARNINGS" != 2 ] ; then | |
257 | echo "error: DISABLE_UNDERVOLT_WARNINGS=${DISABLE_UNDERVOLT_WARNINGS} is not supported" |
|
254 | echo "error: DISABLE_UNDERVOLT_WARNINGS=${DISABLE_UNDERVOLT_WARNINGS} is not supported" | |
258 | exit 1 |
|
255 | exit 1 | |
259 | fi |
|
256 | fi | |
260 | fi |
|
257 | fi | |
261 |
|
258 | |||
262 | # Build RPi2/3 Linux kernel if required by Debian release |
|
259 | # Build RPi2/3 Linux kernel if required by Debian release | |
263 | if [ "$RELEASE" = "stretch" ] || [ "$RELEASE" = "buster" ] ; then |
|
260 | if [ "$RELEASE" = "stretch" ] || [ "$RELEASE" = "buster" ] ; then | |
264 | BUILD_KERNEL=true |
|
261 | BUILD_KERNEL=true | |
265 | fi |
|
262 | fi | |
266 |
|
263 | |||
267 | # Add packages required for kernel cross compilation |
|
264 | # Add packages required for kernel cross compilation | |
268 | if [ "$BUILD_KERNEL" = true ] ; then |
|
265 | if [ "$BUILD_KERNEL" = true ] ; then | |
269 | if [ "$KERNEL_ARCH" = "arm" ] ; then |
|
266 | if [ "$KERNEL_ARCH" = "arm" ] ; then | |
270 | REQUIRED_PACKAGES="${REQUIRED_PACKAGES} crossbuild-essential-armhf" |
|
267 | REQUIRED_PACKAGES="${REQUIRED_PACKAGES} crossbuild-essential-armhf" | |
271 | else |
|
268 | else | |
272 | REQUIRED_PACKAGES="${REQUIRED_PACKAGES} crossbuild-essential-arm64" |
|
269 | REQUIRED_PACKAGES="${REQUIRED_PACKAGES} crossbuild-essential-arm64" | |
273 | fi |
|
270 | fi | |
274 | fi |
|
271 | fi | |
275 |
|
272 | |||
276 | # Add libncurses5 to enable kernel menuconfig |
|
273 | # Add libncurses5 to enable kernel menuconfig | |
277 | if [ "$KERNEL_MENUCONFIG" = true ] ; then |
|
274 | if [ "$KERNEL_MENUCONFIG" = true ] ; then | |
278 | REQUIRED_PACKAGES="${REQUIRED_PACKAGES} libncurses5-dev" |
|
275 | REQUIRED_PACKAGES="${REQUIRED_PACKAGES} libncurses5-dev" | |
279 | fi |
|
276 | fi | |
280 |
|
277 | |||
281 | # Add ccache compiler cache for (faster) kernel cross (re)compilation |
|
278 | # Add ccache compiler cache for (faster) kernel cross (re)compilation | |
282 | if [ "$KERNEL_CCACHE" = true ] ; then |
|
279 | if [ "$KERNEL_CCACHE" = true ] ; then | |
283 | REQUIRED_PACKAGES="${REQUIRED_PACKAGES} ccache" |
|
280 | REQUIRED_PACKAGES="${REQUIRED_PACKAGES} ccache" | |
284 | fi |
|
281 | fi | |
285 |
|
282 | |||
286 | # Stop the Crypto Wars |
|
|||
287 | if [ "$DISABLE_FBI" = true ] ; then |
|
|||
288 | ENABLE_CRYPTFS=true |
|
|||
289 | fi |
|
|||
290 |
|
||||
291 | # Add cryptsetup package to enable filesystem encryption |
|
283 | # Add cryptsetup package to enable filesystem encryption | |
292 | if [ "$ENABLE_CRYPTFS" = true ] && [ "$BUILD_KERNEL" = true ] ; then |
|
284 | if [ "$ENABLE_CRYPTFS" = true ] && [ "$BUILD_KERNEL" = true ] ; then | |
293 | REQUIRED_PACKAGES="${REQUIRED_PACKAGES} cryptsetup" |
|
285 | REQUIRED_PACKAGES="${REQUIRED_PACKAGES} cryptsetup" | |
294 | APT_INCLUDES="${APT_INCLUDES},cryptsetup" |
|
286 | APT_INCLUDES="${APT_INCLUDES},cryptsetup" | |
295 |
|
287 | |||
296 | if [ -z "$CRYPTFS_PASSWORD" ] ; then |
|
288 | if [ -z "$CRYPTFS_PASSWORD" ] ; then | |
297 | echo "error: no password defined (CRYPTFS_PASSWORD)!" |
|
289 | echo "error: no password defined (CRYPTFS_PASSWORD)!" | |
298 | exit 1 |
|
290 | exit 1 | |
299 | fi |
|
291 | fi | |
300 | ENABLE_INITRAMFS=true |
|
292 | ENABLE_INITRAMFS=true | |
301 | fi |
|
293 | fi | |
302 |
|
294 | |||
303 | # Add initramfs generation tools |
|
295 | # Add initramfs generation tools | |
304 | if [ "$ENABLE_INITRAMFS" = true ] && [ "$BUILD_KERNEL" = true ] ; then |
|
296 | if [ "$ENABLE_INITRAMFS" = true ] && [ "$BUILD_KERNEL" = true ] ; then | |
305 | APT_INCLUDES="${APT_INCLUDES},initramfs-tools" |
|
297 | APT_INCLUDES="${APT_INCLUDES},initramfs-tools" | |
306 | fi |
|
298 | fi | |
307 |
|
299 | |||
308 | # Add device-tree-compiler required for building the U-Boot bootloader |
|
300 | # Add device-tree-compiler required for building the U-Boot bootloader | |
309 | if [ "$ENABLE_UBOOT" = true ] ; then |
|
301 | if [ "$ENABLE_UBOOT" = true ] ; then | |
310 | APT_INCLUDES="${APT_INCLUDES},device-tree-compiler" |
|
302 | APT_INCLUDES="${APT_INCLUDES},device-tree-compiler" | |
311 | fi |
|
303 | fi | |
312 |
|
304 | |||
313 | # Check if root SSH (v2) public key file exists |
|
305 | # Check if root SSH (v2) public key file exists | |
314 | if [ ! -z "$SSH_ROOT_PUB_KEY" ] ; then |
|
306 | if [ ! -z "$SSH_ROOT_PUB_KEY" ] ; then | |
315 | if [ ! -f "$SSH_ROOT_PUB_KEY" ] ; then |
|
307 | if [ ! -f "$SSH_ROOT_PUB_KEY" ] ; then | |
316 | echo "error: '$SSH_ROOT_PUB_KEY' specified SSH public key file not found (SSH_ROOT_PUB_KEY)!" |
|
308 | echo "error: '$SSH_ROOT_PUB_KEY' specified SSH public key file not found (SSH_ROOT_PUB_KEY)!" | |
317 | exit 1 |
|
309 | exit 1 | |
318 | fi |
|
310 | fi | |
319 | fi |
|
311 | fi | |
320 |
|
312 | |||
321 | # Check if $USER_NAME SSH (v2) public key file exists |
|
313 | # Check if $USER_NAME SSH (v2) public key file exists | |
322 | if [ ! -z "$SSH_USER_PUB_KEY" ] ; then |
|
314 | if [ ! -z "$SSH_USER_PUB_KEY" ] ; then | |
323 | if [ ! -f "$SSH_USER_PUB_KEY" ] ; then |
|
315 | if [ ! -f "$SSH_USER_PUB_KEY" ] ; then | |
324 | echo "error: '$SSH_USER_PUB_KEY' specified SSH public key file not found (SSH_USER_PUB_KEY)!" |
|
316 | echo "error: '$SSH_USER_PUB_KEY' specified SSH public key file not found (SSH_USER_PUB_KEY)!" | |
325 | exit 1 |
|
317 | exit 1 | |
326 | fi |
|
318 | fi | |
327 | fi |
|
319 | fi | |
328 |
|
320 | |||
329 | # Check if all required packages are installed on the build system |
|
321 | # Check if all required packages are installed on the build system | |
330 | for package in $REQUIRED_PACKAGES ; do |
|
322 | for package in $REQUIRED_PACKAGES ; do | |
331 | if [ "`dpkg-query -W -f='${Status}' $package`" != "install ok installed" ] ; then |
|
323 | if [ "`dpkg-query -W -f='${Status}' $package`" != "install ok installed" ] ; then | |
332 | MISSING_PACKAGES="${MISSING_PACKAGES} $package" |
|
324 | MISSING_PACKAGES="${MISSING_PACKAGES} $package" | |
333 | fi |
|
325 | fi | |
334 | done |
|
326 | done | |
335 |
|
327 | |||
336 | # If there are missing packages ask confirmation for install, or exit |
|
328 | # If there are missing packages ask confirmation for install, or exit | |
337 | if [ -n "$MISSING_PACKAGES" ] ; then |
|
329 | if [ -n "$MISSING_PACKAGES" ] ; then | |
338 | echo "the following packages needed by this script are not installed:" |
|
330 | echo "the following packages needed by this script are not installed:" | |
339 | echo "$MISSING_PACKAGES" |
|
331 | echo "$MISSING_PACKAGES" | |
340 |
|
332 | |||
341 | echo -n "\ndo you want to install the missing packages right now? [y/n] " |
|
333 | echo -n "\ndo you want to install the missing packages right now? [y/n] " | |
342 | read confirm |
|
334 | read confirm | |
343 | [ "$confirm" != "y" ] && exit 1 |
|
335 | [ "$confirm" != "y" ] && exit 1 | |
344 |
|
336 | |||
345 | # Make sure all missing required packages are installed |
|
337 | # Make sure all missing required packages are installed | |
346 | apt-get -qq -y install ${MISSING_PACKAGES} |
|
338 | apt-get -qq -y install ${MISSING_PACKAGES} | |
347 | fi |
|
339 | fi | |
348 |
|
340 | |||
349 | # Check if ./bootstrap.d directory exists |
|
341 | # Check if ./bootstrap.d directory exists | |
350 | if [ ! -d "./bootstrap.d/" ] ; then |
|
342 | if [ ! -d "./bootstrap.d/" ] ; then | |
351 | echo "error: './bootstrap.d' required directory not found!" |
|
343 | echo "error: './bootstrap.d' required directory not found!" | |
352 | exit 1 |
|
344 | exit 1 | |
353 | fi |
|
345 | fi | |
354 |
|
346 | |||
355 | # Check if ./files directory exists |
|
347 | # Check if ./files directory exists | |
356 | if [ ! -d "./files/" ] ; then |
|
348 | if [ ! -d "./files/" ] ; then | |
357 | echo "error: './files' required directory not found!" |
|
349 | echo "error: './files' required directory not found!" | |
358 | exit 1 |
|
350 | exit 1 | |
359 | fi |
|
351 | fi | |
360 |
|
352 | |||
361 | # Check if specified KERNELSRC_DIR directory exists |
|
353 | # Check if specified KERNELSRC_DIR directory exists | |
362 | if [ -n "$KERNELSRC_DIR" ] && [ ! -d "$KERNELSRC_DIR" ] ; then |
|
354 | if [ -n "$KERNELSRC_DIR" ] && [ ! -d "$KERNELSRC_DIR" ] ; then | |
363 | echo "error: '${KERNELSRC_DIR}' specified directory not found (KERNELSRC_DIR)!" |
|
355 | echo "error: '${KERNELSRC_DIR}' specified directory not found (KERNELSRC_DIR)!" | |
364 | exit 1 |
|
356 | exit 1 | |
365 | fi |
|
357 | fi | |
366 |
|
358 | |||
367 | # Check if specified UBOOTSRC_DIR directory exists |
|
359 | # Check if specified UBOOTSRC_DIR directory exists | |
368 | if [ -n "$UBOOTSRC_DIR" ] && [ ! -d "$UBOOTSRC_DIR" ] ; then |
|
360 | if [ -n "$UBOOTSRC_DIR" ] && [ ! -d "$UBOOTSRC_DIR" ] ; then | |
369 | echo "error: '${UBOOTSRC_DIR}' specified directory not found (UBOOTSRC_DIR)!" |
|
361 | echo "error: '${UBOOTSRC_DIR}' specified directory not found (UBOOTSRC_DIR)!" | |
370 | exit 1 |
|
362 | exit 1 | |
371 | fi |
|
363 | fi | |
372 |
|
364 | |||
373 | # Check if specified FBTURBOSRC_DIR directory exists |
|
365 | # Check if specified FBTURBOSRC_DIR directory exists | |
374 | if [ -n "$FBTURBOSRC_DIR" ] && [ ! -d "$FBTURBOSRC_DIR" ] ; then |
|
366 | if [ -n "$FBTURBOSRC_DIR" ] && [ ! -d "$FBTURBOSRC_DIR" ] ; then | |
375 | echo "error: '${FBTURBOSRC_DIR}' specified directory not found (FBTURBOSRC_DIR)!" |
|
367 | echo "error: '${FBTURBOSRC_DIR}' specified directory not found (FBTURBOSRC_DIR)!" | |
376 | exit 1 |
|
368 | exit 1 | |
377 | fi |
|
369 | fi | |
378 |
|
370 | |||
379 | # Check if specified CHROOT_SCRIPTS directory exists |
|
371 | # Check if specified CHROOT_SCRIPTS directory exists | |
380 | if [ -n "$CHROOT_SCRIPTS" ] && [ ! -d "$CHROOT_SCRIPTS" ] ; then |
|
372 | if [ -n "$CHROOT_SCRIPTS" ] && [ ! -d "$CHROOT_SCRIPTS" ] ; then | |
381 | echo "error: ${CHROOT_SCRIPTS} specified directory not found (CHROOT_SCRIPTS)!" |
|
373 | echo "error: ${CHROOT_SCRIPTS} specified directory not found (CHROOT_SCRIPTS)!" | |
382 | exit 1 |
|
374 | exit 1 | |
383 | fi |
|
375 | fi | |
384 |
|
376 | |||
385 | # Check if specified device mapping already exists (will be used by cryptsetup) |
|
377 | # Check if specified device mapping already exists (will be used by cryptsetup) | |
386 | if [ -r "/dev/mapping/${CRYPTFS_MAPPING}" ] ; then |
|
378 | if [ -r "/dev/mapping/${CRYPTFS_MAPPING}" ] ; then | |
387 | echo "error: mapping /dev/mapping/${CRYPTFS_MAPPING} already exists, not proceeding" |
|
379 | echo "error: mapping /dev/mapping/${CRYPTFS_MAPPING} already exists, not proceeding" | |
388 | exit 1 |
|
380 | exit 1 | |
389 | fi |
|
381 | fi | |
390 |
|
382 | |||
391 | # Don't clobber an old build |
|
383 | # Don't clobber an old build | |
392 | if [ -e "$BUILDDIR" ] ; then |
|
384 | if [ -e "$BUILDDIR" ] ; then | |
393 | echo "error: directory ${BUILDDIR} already exists, not proceeding" |
|
385 | echo "error: directory ${BUILDDIR} already exists, not proceeding" | |
394 | exit 1 |
|
386 | exit 1 | |
395 | fi |
|
387 | fi | |
396 |
|
388 | |||
397 | # Setup chroot directory |
|
389 | # Setup chroot directory | |
398 | mkdir -p "${R}" |
|
390 | mkdir -p "${R}" | |
399 |
|
391 | |||
400 | # Check if build directory has enough of free disk space >512MB |
|
392 | # Check if build directory has enough of free disk space >512MB | |
401 | if [ "$(df --output=avail ${BUILDDIR} | sed "1d")" -le "524288" ] ; then |
|
393 | if [ "$(df --output=avail ${BUILDDIR} | sed "1d")" -le "524288" ] ; then | |
402 | echo "error: ${BUILDDIR} not enough space left to generate the output image!" |
|
394 | echo "error: ${BUILDDIR} not enough space left to generate the output image!" | |
403 | exit 1 |
|
395 | exit 1 | |
404 | fi |
|
396 | fi | |
405 |
|
397 | |||
406 | set -x |
|
398 | set -x | |
407 |
|
399 | |||
408 | # Call "cleanup" function on various signals and errors |
|
400 | # Call "cleanup" function on various signals and errors | |
409 | trap cleanup 0 1 2 3 6 |
|
401 | trap cleanup 0 1 2 3 6 | |
410 |
|
402 | |||
411 | # Add required packages for the minbase installation |
|
403 | # Add required packages for the minbase installation | |
412 | if [ "$ENABLE_MINBASE" = true ] ; then |
|
404 | if [ "$ENABLE_MINBASE" = true ] ; then | |
413 | APT_INCLUDES="${APT_INCLUDES},vim-tiny,netbase,net-tools,ifupdown" |
|
405 | APT_INCLUDES="${APT_INCLUDES},vim-tiny,netbase,net-tools,ifupdown" | |
414 | fi |
|
406 | fi | |
415 |
|
407 | |||
416 | # Add required locales packages |
|
408 | # Add required locales packages | |
417 | if [ "$DEFLOCAL" != "en_US.UTF-8" ] ; then |
|
409 | if [ "$DEFLOCAL" != "en_US.UTF-8" ] ; then | |
418 | APT_INCLUDES="${APT_INCLUDES},locales,keyboard-configuration,console-setup" |
|
410 | APT_INCLUDES="${APT_INCLUDES},locales,keyboard-configuration,console-setup" | |
419 | fi |
|
411 | fi | |
420 |
|
412 | |||
421 | # Add parted package, required to get partprobe utility |
|
413 | # Add parted package, required to get partprobe utility | |
422 | if [ "$EXPANDROOT" = true ] ; then |
|
414 | if [ "$EXPANDROOT" = true ] ; then | |
423 | APT_INCLUDES="${APT_INCLUDES},parted" |
|
415 | APT_INCLUDES="${APT_INCLUDES},parted" | |
424 | fi |
|
416 | fi | |
425 |
|
417 | |||
426 | # Add dbus package, recommended if using systemd |
|
418 | # Add dbus package, recommended if using systemd | |
427 | if [ "$ENABLE_DBUS" = true ] ; then |
|
419 | if [ "$ENABLE_DBUS" = true ] ; then | |
428 | APT_INCLUDES="${APT_INCLUDES},dbus" |
|
420 | APT_INCLUDES="${APT_INCLUDES},dbus" | |
429 | fi |
|
421 | fi | |
430 |
|
422 | |||
431 | # Add iptables IPv4/IPv6 package |
|
423 | # Add iptables IPv4/IPv6 package | |
432 | if [ "$ENABLE_IPTABLES" = true ] ; then |
|
424 | if [ "$ENABLE_IPTABLES" = true ] ; then | |
433 | APT_INCLUDES="${APT_INCLUDES},iptables" |
|
425 | APT_INCLUDES="${APT_INCLUDES},iptables" | |
434 | fi |
|
426 | fi | |
435 |
|
427 | |||
436 | # Add openssh server package |
|
428 | # Add openssh server package | |
437 | if [ "$ENABLE_SSHD" = true ] ; then |
|
429 | if [ "$ENABLE_SSHD" = true ] ; then | |
438 | APT_INCLUDES="${APT_INCLUDES},openssh-server" |
|
430 | APT_INCLUDES="${APT_INCLUDES},openssh-server" | |
439 | fi |
|
431 | fi | |
440 |
|
432 | |||
441 | # Add alsa-utils package |
|
433 | # Add alsa-utils package | |
442 | if [ "$ENABLE_SOUND" = true ] ; then |
|
434 | if [ "$ENABLE_SOUND" = true ] ; then | |
443 | APT_INCLUDES="${APT_INCLUDES},alsa-utils" |
|
435 | APT_INCLUDES="${APT_INCLUDES},alsa-utils" | |
444 | fi |
|
436 | fi | |
445 |
|
437 | |||
446 | # Add rng-tools package |
|
438 | # Add rng-tools package | |
447 | if [ "$ENABLE_HWRANDOM" = true ] ; then |
|
439 | if [ "$ENABLE_HWRANDOM" = true ] ; then | |
448 | APT_INCLUDES="${APT_INCLUDES},rng-tools" |
|
440 | APT_INCLUDES="${APT_INCLUDES},rng-tools" | |
449 | fi |
|
441 | fi | |
450 |
|
442 | |||
451 | # Add fbturbo video driver |
|
443 | # Add fbturbo video driver | |
452 | if [ "$ENABLE_FBTURBO" = true ] ; then |
|
444 | if [ "$ENABLE_FBTURBO" = true ] ; then | |
453 | # Enable xorg package dependencies |
|
445 | # Enable xorg package dependencies | |
454 | ENABLE_XORG=true |
|
446 | ENABLE_XORG=true | |
455 | fi |
|
447 | fi | |
456 |
|
448 | |||
457 | # Add user defined window manager package |
|
449 | # Add user defined window manager package | |
458 | if [ -n "$ENABLE_WM" ] ; then |
|
450 | if [ -n "$ENABLE_WM" ] ; then | |
459 | APT_INCLUDES="${APT_INCLUDES},${ENABLE_WM}" |
|
451 | APT_INCLUDES="${APT_INCLUDES},${ENABLE_WM}" | |
460 |
|
452 | |||
461 | # Enable xorg package dependencies |
|
453 | # Enable xorg package dependencies | |
462 | ENABLE_XORG=true |
|
454 | ENABLE_XORG=true | |
463 | fi |
|
455 | fi | |
464 |
|
456 | |||
465 | # Add xorg package |
|
457 | # Add xorg package | |
466 | if [ "$ENABLE_XORG" = true ] ; then |
|
458 | if [ "$ENABLE_XORG" = true ] ; then | |
467 | APT_INCLUDES="${APT_INCLUDES},xorg,dbus-x11" |
|
459 | APT_INCLUDES="${APT_INCLUDES},xorg,dbus-x11" | |
468 | fi |
|
460 | fi | |
469 |
|
461 | |||
470 | # Replace selected packages with smaller clones |
|
462 | # Replace selected packages with smaller clones | |
471 | if [ "$ENABLE_REDUCE" = true ] ; then |
|
463 | if [ "$ENABLE_REDUCE" = true ] ; then | |
472 | # Add levee package instead of vim-tiny |
|
464 | # Add levee package instead of vim-tiny | |
473 | if [ "$REDUCE_VIM" = true ] ; then |
|
465 | if [ "$REDUCE_VIM" = true ] ; then | |
474 | APT_INCLUDES="$(echo ${APT_INCLUDES} | sed "s/vim-tiny/levee/")" |
|
466 | APT_INCLUDES="$(echo ${APT_INCLUDES} | sed "s/vim-tiny/levee/")" | |
475 | fi |
|
467 | fi | |
476 |
|
468 | |||
477 | # Add dropbear package instead of openssh-server |
|
469 | # Add dropbear package instead of openssh-server | |
478 | if [ "$REDUCE_SSHD" = true ] ; then |
|
470 | if [ "$REDUCE_SSHD" = true ] ; then | |
479 | APT_INCLUDES="$(echo ${APT_INCLUDES} | sed "s/openssh-server/dropbear/")" |
|
471 | APT_INCLUDES="$(echo ${APT_INCLUDES} | sed "s/openssh-server/dropbear/")" | |
480 | fi |
|
472 | fi | |
481 | fi |
|
473 | fi | |
482 |
|
474 | |||
483 | if [ "$RELEASE" != "jessie" ] ; then |
|
475 | if [ "$RELEASE" != "jessie" ] ; then | |
484 | APT_INCLUDES="${APT_INCLUDES},libnss-systemd" |
|
476 | APT_INCLUDES="${APT_INCLUDES},libnss-systemd" | |
485 | fi |
|
477 | fi | |
486 |
|
478 | |||
487 | # Configure kernel sources if no KERNELSRC_DIR |
|
479 | # Configure kernel sources if no KERNELSRC_DIR | |
488 | if [ "$BUILD_KERNEL" = true ] && [ -z "$KERNELSRC_DIR" ] ; then |
|
480 | if [ "$BUILD_KERNEL" = true ] && [ -z "$KERNELSRC_DIR" ] ; then | |
489 | KERNELSRC_CONFIG=true |
|
481 | KERNELSRC_CONFIG=true | |
490 | fi |
|
482 | fi | |
491 |
|
483 | |||
492 | # Configure reduced kernel |
|
484 | # Configure reduced kernel | |
493 | if [ "$KERNEL_REDUCE" = true ] ; then |
|
485 | if [ "$KERNEL_REDUCE" = true ] ; then | |
494 | KERNELSRC_CONFIG=false |
|
486 | KERNELSRC_CONFIG=false | |
495 | fi |
|
487 | fi | |
496 |
|
488 | |||
497 | # Execute bootstrap scripts |
|
489 | # Execute bootstrap scripts | |
498 | for SCRIPT in bootstrap.d/*.sh; do |
|
490 | for SCRIPT in bootstrap.d/*.sh; do | |
499 | head -n 3 "$SCRIPT" |
|
491 | head -n 3 "$SCRIPT" | |
500 | . "$SCRIPT" |
|
492 | . "$SCRIPT" | |
501 | done |
|
493 | done | |
502 |
|
494 | |||
503 | ## Execute custom bootstrap scripts |
|
495 | ## Execute custom bootstrap scripts | |
504 | if [ -d "custom.d" ] ; then |
|
496 | if [ -d "custom.d" ] ; then | |
505 | for SCRIPT in custom.d/*.sh; do |
|
497 | for SCRIPT in custom.d/*.sh; do | |
506 | . "$SCRIPT" |
|
498 | . "$SCRIPT" | |
507 | done |
|
499 | done | |
508 | fi |
|
500 | fi | |
509 |
|
501 | |||
510 | # Execute custom scripts inside the chroot |
|
502 | # Execute custom scripts inside the chroot | |
511 | if [ -n "$CHROOT_SCRIPTS" ] && [ -d "$CHROOT_SCRIPTS" ] ; then |
|
503 | if [ -n "$CHROOT_SCRIPTS" ] && [ -d "$CHROOT_SCRIPTS" ] ; then | |
512 | cp -r "${CHROOT_SCRIPTS}" "${R}/chroot_scripts" |
|
504 | cp -r "${CHROOT_SCRIPTS}" "${R}/chroot_scripts" | |
513 | chroot_exec /bin/bash -x <<'EOF' |
|
505 | chroot_exec /bin/bash -x <<'EOF' | |
514 | for SCRIPT in /chroot_scripts/* ; do |
|
506 | for SCRIPT in /chroot_scripts/* ; do | |
515 | if [ -f $SCRIPT -a -x $SCRIPT ] ; then |
|
507 | if [ -f $SCRIPT -a -x $SCRIPT ] ; then | |
516 | $SCRIPT |
|
508 | $SCRIPT | |
517 | fi |
|
509 | fi | |
518 | done |
|
510 | done | |
519 | EOF |
|
511 | EOF | |
520 | rm -rf "${R}/chroot_scripts" |
|
512 | rm -rf "${R}/chroot_scripts" | |
521 | fi |
|
513 | fi | |
522 |
|
514 | |||
523 | # Remove c/c++ build environment from the chroot |
|
515 | # Remove c/c++ build environment from the chroot | |
524 | chroot_remove_cc |
|
516 | chroot_remove_cc | |
525 |
|
517 | |||
526 | # Remove apt-utils |
|
518 | # Remove apt-utils | |
527 | if [ "$RELEASE" = "jessie" ] ; then |
|
519 | if [ "$RELEASE" = "jessie" ] ; then | |
528 | chroot_exec apt-get purge -qq -y --force-yes apt-utils |
|
520 | chroot_exec apt-get purge -qq -y --force-yes apt-utils | |
529 | fi |
|
521 | fi | |
530 |
|
522 | |||
531 | # Generate required machine-id |
|
523 | # Generate required machine-id | |
532 | MACHINE_ID=$(dbus-uuidgen) |
|
524 | MACHINE_ID=$(dbus-uuidgen) | |
533 | echo -n "${MACHINE_ID}" > "${R}/var/lib/dbus/machine-id" |
|
525 | echo -n "${MACHINE_ID}" > "${R}/var/lib/dbus/machine-id" | |
534 | echo -n "${MACHINE_ID}" > "${ETC_DIR}/machine-id" |
|
526 | echo -n "${MACHINE_ID}" > "${ETC_DIR}/machine-id" | |
535 |
|
527 | |||
536 | # APT Cleanup |
|
528 | # APT Cleanup | |
537 | chroot_exec apt-get -y clean |
|
529 | chroot_exec apt-get -y clean | |
538 | chroot_exec apt-get -y autoclean |
|
530 | chroot_exec apt-get -y autoclean | |
539 | chroot_exec apt-get -y autoremove |
|
531 | chroot_exec apt-get -y autoremove | |
540 |
|
532 | |||
541 | # Unmount mounted filesystems |
|
533 | # Unmount mounted filesystems | |
542 | umount -l "${R}/proc" |
|
534 | umount -l "${R}/proc" | |
543 | umount -l "${R}/sys" |
|
535 | umount -l "${R}/sys" | |
544 |
|
536 | |||
545 | # Clean up directories |
|
537 | # Clean up directories | |
546 | rm -rf "${R}/run/*" |
|
538 | rm -rf "${R}/run/*" | |
547 | rm -rf "${R}/tmp/*" |
|
539 | rm -rf "${R}/tmp/*" | |
548 |
|
540 | |||
549 | # Clean up files |
|
541 | # Clean up files | |
550 | rm -f "${ETC_DIR}/ssh/ssh_host_*" |
|
542 | rm -f "${ETC_DIR}/ssh/ssh_host_*" | |
551 | rm -f "${ETC_DIR}/dropbear/dropbear_*" |
|
543 | rm -f "${ETC_DIR}/dropbear/dropbear_*" | |
552 | rm -f "${ETC_DIR}/apt/sources.list.save" |
|
544 | rm -f "${ETC_DIR}/apt/sources.list.save" | |
553 | rm -f "${ETC_DIR}/resolvconf/resolv.conf.d/original" |
|
545 | rm -f "${ETC_DIR}/resolvconf/resolv.conf.d/original" | |
554 | rm -f "${ETC_DIR}/*-" |
|
546 | rm -f "${ETC_DIR}/*-" | |
555 | rm -f "${ETC_DIR}/apt/apt.conf.d/10proxy" |
|
547 | rm -f "${ETC_DIR}/apt/apt.conf.d/10proxy" | |
556 | rm -f "${ETC_DIR}/resolv.conf" |
|
548 | rm -f "${ETC_DIR}/resolv.conf" | |
557 | rm -f "${R}/root/.bash_history" |
|
549 | rm -f "${R}/root/.bash_history" | |
558 | rm -f "${R}/var/lib/urandom/random-seed" |
|
550 | rm -f "${R}/var/lib/urandom/random-seed" | |
559 | rm -f "${R}/initrd.img" |
|
551 | rm -f "${R}/initrd.img" | |
560 | rm -f "${R}/vmlinuz" |
|
552 | rm -f "${R}/vmlinuz" | |
561 | rm -f "${R}${QEMU_BINARY}" |
|
553 | rm -f "${R}${QEMU_BINARY}" | |
562 |
|
554 | |||
563 | # Calculate size of the chroot directory in KB |
|
555 | # Calculate size of the chroot directory in KB | |
564 | CHROOT_SIZE=$(expr `du -s "${R}" | awk '{ print $1 }'`) |
|
556 | CHROOT_SIZE=$(expr `du -s "${R}" | awk '{ print $1 }'`) | |
565 |
|
557 | |||
566 | # Calculate the amount of needed 512 Byte sectors |
|
558 | # Calculate the amount of needed 512 Byte sectors | |
567 | TABLE_SECTORS=$(expr 1 \* 1024 \* 1024 \/ 512) |
|
559 | TABLE_SECTORS=$(expr 1 \* 1024 \* 1024 \/ 512) | |
568 | FRMW_SECTORS=$(expr 64 \* 1024 \* 1024 \/ 512) |
|
560 | FRMW_SECTORS=$(expr 64 \* 1024 \* 1024 \/ 512) | |
569 | ROOT_OFFSET=$(expr ${TABLE_SECTORS} + ${FRMW_SECTORS}) |
|
561 | ROOT_OFFSET=$(expr ${TABLE_SECTORS} + ${FRMW_SECTORS}) | |
570 |
|
562 | |||
571 | # The root partition is EXT4 |
|
563 | # The root partition is EXT4 | |
572 | # This means more space than the actual used space of the chroot is used. |
|
564 | # This means more space than the actual used space of the chroot is used. | |
573 | # As overhead for journaling and reserved blocks 35% are added. |
|
565 | # As overhead for journaling and reserved blocks 35% are added. | |
574 | ROOT_SECTORS=$(expr $(expr ${CHROOT_SIZE} + ${CHROOT_SIZE} \/ 100 \* 35) \* 1024 \/ 512) |
|
566 | ROOT_SECTORS=$(expr $(expr ${CHROOT_SIZE} + ${CHROOT_SIZE} \/ 100 \* 35) \* 1024 \/ 512) | |
575 |
|
567 | |||
576 | # Calculate required image size in 512 Byte sectors |
|
568 | # Calculate required image size in 512 Byte sectors | |
577 | IMAGE_SECTORS=$(expr ${TABLE_SECTORS} + ${FRMW_SECTORS} + ${ROOT_SECTORS}) |
|
569 | IMAGE_SECTORS=$(expr ${TABLE_SECTORS} + ${FRMW_SECTORS} + ${ROOT_SECTORS}) | |
578 |
|
570 | |||
579 | # Prepare image file |
|
571 | # Prepare image file | |
580 | if [ "$ENABLE_SPLITFS" = true ] ; then |
|
572 | if [ "$ENABLE_SPLITFS" = true ] ; then | |
581 | dd if=/dev/zero of="$IMAGE_NAME-frmw.img" bs=512 count=${TABLE_SECTORS} |
|
573 | dd if=/dev/zero of="$IMAGE_NAME-frmw.img" bs=512 count=${TABLE_SECTORS} | |
582 | dd if=/dev/zero of="$IMAGE_NAME-frmw.img" bs=512 count=0 seek=${FRMW_SECTORS} |
|
574 | dd if=/dev/zero of="$IMAGE_NAME-frmw.img" bs=512 count=0 seek=${FRMW_SECTORS} | |
583 | dd if=/dev/zero of="$IMAGE_NAME-root.img" bs=512 count=${TABLE_SECTORS} |
|
575 | dd if=/dev/zero of="$IMAGE_NAME-root.img" bs=512 count=${TABLE_SECTORS} | |
584 | dd if=/dev/zero of="$IMAGE_NAME-root.img" bs=512 count=0 seek=${ROOT_SECTORS} |
|
576 | dd if=/dev/zero of="$IMAGE_NAME-root.img" bs=512 count=0 seek=${ROOT_SECTORS} | |
585 |
|
577 | |||
586 | # Write firmware/boot partition tables |
|
578 | # Write firmware/boot partition tables | |
587 | sfdisk -q -L -uS -f "$IMAGE_NAME-frmw.img" 2> /dev/null <<EOM |
|
579 | sfdisk -q -L -uS -f "$IMAGE_NAME-frmw.img" 2> /dev/null <<EOM | |
588 | ${TABLE_SECTORS},${FRMW_SECTORS},c,* |
|
580 | ${TABLE_SECTORS},${FRMW_SECTORS},c,* | |
589 | EOM |
|
581 | EOM | |
590 |
|
582 | |||
591 | # Write root partition table |
|
583 | # Write root partition table | |
592 | sfdisk -q -L -uS -f "$IMAGE_NAME-root.img" 2> /dev/null <<EOM |
|
584 | sfdisk -q -L -uS -f "$IMAGE_NAME-root.img" 2> /dev/null <<EOM | |
593 | ${TABLE_SECTORS},${ROOT_SECTORS},83 |
|
585 | ${TABLE_SECTORS},${ROOT_SECTORS},83 | |
594 | EOM |
|
586 | EOM | |
595 |
|
587 | |||
596 | # Setup temporary loop devices |
|
588 | # Setup temporary loop devices | |
597 | FRMW_LOOP="$(losetup -o 1M --sizelimit 64M -f --show $IMAGE_NAME-frmw.img)" |
|
589 | FRMW_LOOP="$(losetup -o 1M --sizelimit 64M -f --show $IMAGE_NAME-frmw.img)" | |
598 | ROOT_LOOP="$(losetup -o 1M -f --show $IMAGE_NAME-root.img)" |
|
590 | ROOT_LOOP="$(losetup -o 1M -f --show $IMAGE_NAME-root.img)" | |
599 | else # ENABLE_SPLITFS=false |
|
591 | else # ENABLE_SPLITFS=false | |
600 | dd if=/dev/zero of="$IMAGE_NAME.img" bs=512 count=${TABLE_SECTORS} |
|
592 | dd if=/dev/zero of="$IMAGE_NAME.img" bs=512 count=${TABLE_SECTORS} | |
601 | dd if=/dev/zero of="$IMAGE_NAME.img" bs=512 count=0 seek=${IMAGE_SECTORS} |
|
593 | dd if=/dev/zero of="$IMAGE_NAME.img" bs=512 count=0 seek=${IMAGE_SECTORS} | |
602 |
|
594 | |||
603 | # Write partition table |
|
595 | # Write partition table | |
604 | sfdisk -q -L -uS -f "$IMAGE_NAME.img" 2> /dev/null <<EOM |
|
596 | sfdisk -q -L -uS -f "$IMAGE_NAME.img" 2> /dev/null <<EOM | |
605 | ${TABLE_SECTORS},${FRMW_SECTORS},c,* |
|
597 | ${TABLE_SECTORS},${FRMW_SECTORS},c,* | |
606 | ${ROOT_OFFSET},${ROOT_SECTORS},83 |
|
598 | ${ROOT_OFFSET},${ROOT_SECTORS},83 | |
607 | EOM |
|
599 | EOM | |
608 |
|
600 | |||
609 | # Setup temporary loop devices |
|
601 | # Setup temporary loop devices | |
610 | FRMW_LOOP="$(losetup -o 1M --sizelimit 64M -f --show $IMAGE_NAME.img)" |
|
602 | FRMW_LOOP="$(losetup -o 1M --sizelimit 64M -f --show $IMAGE_NAME.img)" | |
611 | ROOT_LOOP="$(losetup -o 65M -f --show $IMAGE_NAME.img)" |
|
603 | ROOT_LOOP="$(losetup -o 65M -f --show $IMAGE_NAME.img)" | |
612 | fi |
|
604 | fi | |
613 |
|
605 | |||
614 | if [ "$ENABLE_CRYPTFS" = true ] ; then |
|
606 | if [ "$ENABLE_CRYPTFS" = true ] ; then | |
615 | # Create dummy ext4 fs |
|
607 | # Create dummy ext4 fs | |
616 | mkfs.ext4 "$ROOT_LOOP" |
|
608 | mkfs.ext4 "$ROOT_LOOP" | |
617 |
|
609 | |||
618 | # Setup password keyfile |
|
610 | # Setup password keyfile | |
619 | touch .password |
|
611 | touch .password | |
620 | chmod 600 .password |
|
612 | chmod 600 .password | |
621 | echo -n ${CRYPTFS_PASSWORD} > .password |
|
613 | echo -n ${CRYPTFS_PASSWORD} > .password | |
622 |
|
614 | |||
623 | # Initialize encrypted partition |
|
615 | # Initialize encrypted partition | |
624 | echo "YES" | cryptsetup luksFormat "${ROOT_LOOP}" -c "${CRYPTFS_CIPHER}" -s "${CRYPTFS_XTSKEYSIZE}" .password |
|
616 | echo "YES" | cryptsetup luksFormat "${ROOT_LOOP}" -c "${CRYPTFS_CIPHER}" -s "${CRYPTFS_XTSKEYSIZE}" .password | |
625 |
|
617 | |||
626 | # Open encrypted partition and setup mapping |
|
618 | # Open encrypted partition and setup mapping | |
627 | cryptsetup luksOpen "${ROOT_LOOP}" -d .password "${CRYPTFS_MAPPING}" |
|
619 | cryptsetup luksOpen "${ROOT_LOOP}" -d .password "${CRYPTFS_MAPPING}" | |
628 |
|
620 | |||
629 | # Secure delete password keyfile |
|
621 | # Secure delete password keyfile | |
630 | shred -zu .password |
|
622 | shred -zu .password | |
631 |
|
623 | |||
632 | # Update temporary loop device |
|
624 | # Update temporary loop device | |
633 | ROOT_LOOP="/dev/mapper/${CRYPTFS_MAPPING}" |
|
625 | ROOT_LOOP="/dev/mapper/${CRYPTFS_MAPPING}" | |
634 |
|
626 | |||
635 | # Wipe encrypted partition (encryption cipher is used for randomness) |
|
627 | # Wipe encrypted partition (encryption cipher is used for randomness) | |
636 | dd if=/dev/zero of="${ROOT_LOOP}" bs=512 count=$(blockdev --getsz "${ROOT_LOOP}") |
|
628 | dd if=/dev/zero of="${ROOT_LOOP}" bs=512 count=$(blockdev --getsz "${ROOT_LOOP}") | |
637 | fi |
|
629 | fi | |
638 |
|
630 | |||
639 | # Build filesystems |
|
631 | # Build filesystems | |
640 | mkfs.vfat "$FRMW_LOOP" |
|
632 | mkfs.vfat "$FRMW_LOOP" | |
641 | mkfs.ext4 "$ROOT_LOOP" |
|
633 | mkfs.ext4 "$ROOT_LOOP" | |
642 |
|
634 | |||
643 | # Mount the temporary loop devices |
|
635 | # Mount the temporary loop devices | |
644 | mkdir -p "$BUILDDIR/mount" |
|
636 | mkdir -p "$BUILDDIR/mount" | |
645 | mount "$ROOT_LOOP" "$BUILDDIR/mount" |
|
637 | mount "$ROOT_LOOP" "$BUILDDIR/mount" | |
646 |
|
638 | |||
647 | mkdir -p "$BUILDDIR/mount/boot/firmware" |
|
639 | mkdir -p "$BUILDDIR/mount/boot/firmware" | |
648 | mount "$FRMW_LOOP" "$BUILDDIR/mount/boot/firmware" |
|
640 | mount "$FRMW_LOOP" "$BUILDDIR/mount/boot/firmware" | |
649 |
|
641 | |||
650 | # Copy all files from the chroot to the loop device mount point directory |
|
642 | # Copy all files from the chroot to the loop device mount point directory | |
651 | rsync -a "${R}/" "$BUILDDIR/mount/" |
|
643 | rsync -a "${R}/" "$BUILDDIR/mount/" | |
652 |
|
644 | |||
653 | # Unmount all temporary loop devices and mount points |
|
645 | # Unmount all temporary loop devices and mount points | |
654 | cleanup |
|
646 | cleanup | |
655 |
|
647 | |||
656 | # Create block map file(s) of image(s) |
|
648 | # Create block map file(s) of image(s) | |
657 | if [ "$ENABLE_SPLITFS" = true ] ; then |
|
649 | if [ "$ENABLE_SPLITFS" = true ] ; then | |
658 | # Create block map files for "bmaptool" |
|
650 | # Create block map files for "bmaptool" | |
659 | bmaptool create -o "$IMAGE_NAME-frmw.bmap" "$IMAGE_NAME-frmw.img" |
|
651 | bmaptool create -o "$IMAGE_NAME-frmw.bmap" "$IMAGE_NAME-frmw.img" | |
660 | bmaptool create -o "$IMAGE_NAME-root.bmap" "$IMAGE_NAME-root.img" |
|
652 | bmaptool create -o "$IMAGE_NAME-root.bmap" "$IMAGE_NAME-root.img" | |
661 |
|
653 | |||
662 | # Image was successfully created |
|
654 | # Image was successfully created | |
663 | echo "$IMAGE_NAME-frmw.img ($(expr \( ${TABLE_SECTORS} + ${FRMW_SECTORS} \) \* 512 \/ 1024 \/ 1024)M)" ": successfully created" |
|
655 | echo "$IMAGE_NAME-frmw.img ($(expr \( ${TABLE_SECTORS} + ${FRMW_SECTORS} \) \* 512 \/ 1024 \/ 1024)M)" ": successfully created" | |
664 | echo "$IMAGE_NAME-root.img ($(expr \( ${TABLE_SECTORS} + ${ROOT_SECTORS} \) \* 512 \/ 1024 \/ 1024)M)" ": successfully created" |
|
656 | echo "$IMAGE_NAME-root.img ($(expr \( ${TABLE_SECTORS} + ${ROOT_SECTORS} \) \* 512 \/ 1024 \/ 1024)M)" ": successfully created" | |
665 | else |
|
657 | else | |
666 | # Create block map file for "bmaptool" |
|
658 | # Create block map file for "bmaptool" | |
667 | bmaptool create -o "$IMAGE_NAME.bmap" "$IMAGE_NAME.img" |
|
659 | bmaptool create -o "$IMAGE_NAME.bmap" "$IMAGE_NAME.img" | |
668 |
|
660 | |||
669 | # Image was successfully created |
|
661 | # Image was successfully created | |
670 | echo "$IMAGE_NAME.img ($(expr \( ${TABLE_SECTORS} + ${FRMW_SECTORS} + ${ROOT_SECTORS} \) \* 512 \/ 1024 \/ 1024)M)" ": successfully created" |
|
662 | echo "$IMAGE_NAME.img ($(expr \( ${TABLE_SECTORS} + ${FRMW_SECTORS} + ${ROOT_SECTORS} \) \* 512 \/ 1024 \/ 1024)M)" ": successfully created" | |
671 | fi |
|
663 | fi |
General Comments 0
Vous devez vous connecter pour laisser un commentaire.
Se connecter maintenant