@@ -1,490 +1,492 | |||||
1 | # rpi23-gen-image |
|
1 | # rpi23-gen-image | |
2 | ## Introduction |
|
2 | ## Introduction | |
3 | `rpi23-gen-image.sh` is an advanced Debian Linux bootstrapping shell script for generating Debian OS images for Raspberry Pi 2 (RPi2) and Raspberry Pi 3 (RPi3) computers. The script at this time supports the bootstrapping of the Debian (armhf) releases `stretch` and `buster`. Raspberry Pi 3 images are generated for 32-bit mode only. Raspberry Pi 3 64-bit images can be generated using custom configuration parameters (```templates/rpi3-stretch-arm64-4.14.y```). |
|
3 | `rpi23-gen-image.sh` is an advanced Debian Linux bootstrapping shell script for generating Debian OS images for Raspberry Pi 2 (RPi2) and Raspberry Pi 3 (RPi3) computers. The script at this time supports the bootstrapping of the Debian (armhf) releases `stretch` and `buster`. Raspberry Pi 3 images are generated for 32-bit mode only. Raspberry Pi 3 64-bit images can be generated using custom configuration parameters (```templates/rpi3-stretch-arm64-4.14.y```). | |
4 |
|
4 | |||
5 | ## Build dependencies |
|
5 | ## Build dependencies | |
6 | The following list of Debian packages must be installed on the build system because they are essentially required for the bootstrapping process. The script will check if all required packages are installed and missing packages will be installed automatically if confirmed by the user. |
|
6 | The following list of Debian packages must be installed on the build system because they are essentially required for the bootstrapping process. The script will check if all required packages are installed and missing packages will be installed automatically if confirmed by the user. | |
7 |
|
7 | |||
8 | ```debootstrap debian-archive-keyring qemu-user-static binfmt-support dosfstools rsync bmap-tools whois git bc psmisc dbus sudo``` |
|
8 | ```debootstrap debian-archive-keyring qemu-user-static binfmt-support dosfstools rsync bmap-tools whois git bc psmisc dbus sudo``` | |
9 |
|
9 | |||
10 | It is recommended to configure the `rpi23-gen-image.sh` script to build and install the latest Raspberry Pi Linux kernel. For the RPi3 this is mandatory. Kernel compilation and linking will be performed on the build system using an ARM (armhf) cross-compiler toolchain. |
|
10 | It is recommended to configure the `rpi23-gen-image.sh` script to build and install the latest Raspberry Pi Linux kernel. For the RPi3 this is mandatory. Kernel compilation and linking will be performed on the build system using an ARM (armhf) cross-compiler toolchain. | |
11 |
|
11 | |||
12 | The script has been tested using the default `crossbuild-essential-armhf` toolchain meta package on Debian Linux `stretch` build systems. Please check the [Debian CrossToolchains Wiki](https://wiki.debian.org/CrossToolchains) for further information. |
|
12 | The script has been tested using the default `crossbuild-essential-armhf` toolchain meta package on Debian Linux `stretch` build systems. Please check the [Debian CrossToolchains Wiki](https://wiki.debian.org/CrossToolchains) for further information. | |
13 |
|
13 | |||
14 | ## Command-line parameters |
|
14 | ## Command-line parameters | |
15 | The script accepts certain command-line parameters to enable or disable specific OS features, services and configuration settings. These parameters are passed to the `rpi23-gen-image.sh` script via (simple) shell-variables. Unlike environment shell-variables (simple) shell-variables are defined at the beginning of the command-line call of the `rpi23-gen-image.sh` script. |
|
15 | The script accepts certain command-line parameters to enable or disable specific OS features, services and configuration settings. These parameters are passed to the `rpi23-gen-image.sh` script via (simple) shell-variables. Unlike environment shell-variables (simple) shell-variables are defined at the beginning of the command-line call of the `rpi23-gen-image.sh` script. | |
16 |
|
16 | |||
17 | ##### Command-line examples: |
|
17 | ##### Command-line examples: | |
18 | ```shell |
|
18 | ```shell | |
19 | ENABLE_UBOOT=true ./rpi23-gen-image.sh |
|
19 | ENABLE_UBOOT=true ./rpi23-gen-image.sh | |
20 | ENABLE_CONSOLE=false ENABLE_IPV6=false ./rpi23-gen-image.sh |
|
20 | ENABLE_CONSOLE=false ENABLE_IPV6=false ./rpi23-gen-image.sh | |
21 | ENABLE_WM=xfce4 ENABLE_FBTURBO=true ENABLE_MINBASE=true ./rpi23-gen-image.sh |
|
21 | ENABLE_WM=xfce4 ENABLE_FBTURBO=true ENABLE_MINBASE=true ./rpi23-gen-image.sh | |
22 | ENABLE_HARDNET=true ENABLE_IPTABLES=true /rpi23-gen-image.sh |
|
22 | ENABLE_HARDNET=true ENABLE_IPTABLES=true /rpi23-gen-image.sh | |
23 | APT_SERVER=ftp.de.debian.org APT_PROXY="http://127.0.0.1:3142/" ./rpi23-gen-image.sh |
|
23 | APT_SERVER=ftp.de.debian.org APT_PROXY="http://127.0.0.1:3142/" ./rpi23-gen-image.sh | |
24 | ENABLE_MINBASE=true ./rpi23-gen-image.sh |
|
24 | ENABLE_MINBASE=true ./rpi23-gen-image.sh | |
25 | BUILD_KERNEL=true ENABLE_MINBASE=true ENABLE_IPV6=false ./rpi23-gen-image.sh |
|
25 | BUILD_KERNEL=true ENABLE_MINBASE=true ENABLE_IPV6=false ./rpi23-gen-image.sh | |
26 | BUILD_KERNEL=true KERNELSRC_DIR=/tmp/linux ./rpi23-gen-image.sh |
|
26 | BUILD_KERNEL=true KERNELSRC_DIR=/tmp/linux ./rpi23-gen-image.sh | |
27 | ENABLE_MINBASE=true ENABLE_REDUCE=true ENABLE_MINGPU=true BUILD_KERNEL=true ./rpi23-gen-image.sh |
|
27 | ENABLE_MINBASE=true ENABLE_REDUCE=true ENABLE_MINGPU=true BUILD_KERNEL=true ./rpi23-gen-image.sh | |
28 | ENABLE_CRYPTFS=true CRYPTFS_PASSWORD=changeme EXPANDROOT=false ENABLE_MINBASE=true ENABLE_REDUCE=true ENABLE_MINGPU=true BUILD_KERNEL=true ./rpi23-gen-image.sh |
|
28 | ENABLE_CRYPTFS=true CRYPTFS_PASSWORD=changeme EXPANDROOT=false ENABLE_MINBASE=true ENABLE_REDUCE=true ENABLE_MINGPU=true BUILD_KERNEL=true ./rpi23-gen-image.sh | |
29 | RELEASE=stretch BUILD_KERNEL=true ./rpi23-gen-image.sh |
|
29 | RELEASE=stretch BUILD_KERNEL=true ./rpi23-gen-image.sh | |
30 | RPI_MODEL=3 ENABLE_WIRELESS=true ENABLE_MINBASE=true BUILD_KERNEL=true ./rpi23-gen-image.sh |
|
30 | RPI_MODEL=3 ENABLE_WIRELESS=true ENABLE_MINBASE=true BUILD_KERNEL=true ./rpi23-gen-image.sh | |
31 | RELEASE=stretch RPI_MODEL=3 ENABLE_WIRELESS=true ENABLE_MINBASE=true BUILD_KERNEL=true ./rpi23-gen-image.sh |
|
31 | RELEASE=stretch RPI_MODEL=3 ENABLE_WIRELESS=true ENABLE_MINBASE=true BUILD_KERNEL=true ./rpi23-gen-image.sh | |
32 | ``` |
|
32 | ``` | |
33 |
|
33 | |||
34 | ## Configuration template files |
|
34 | ## Configuration template files | |
35 | To avoid long lists of command-line parameters and to help to store the favourite parameter configurations the `rpi23-gen-image.sh` script supports so called configuration template files (`CONFIG_TEMPLATE`=template). These are simple text files located in the `./templates` directory that contain the list of configuration parameters that will be used. New configuration template files can be added to the `./templates` directory. |
|
35 | To avoid long lists of command-line parameters and to help to store the favourite parameter configurations the `rpi23-gen-image.sh` script supports so called configuration template files (`CONFIG_TEMPLATE`=template). These are simple text files located in the `./templates` directory that contain the list of configuration parameters that will be used. New configuration template files can be added to the `./templates` directory. | |
36 |
|
36 | |||
37 | ##### Command-line examples: |
|
37 | ##### Command-line examples: | |
38 | ```shell |
|
38 | ```shell | |
39 | CONFIG_TEMPLATE=rpi3stretch ./rpi23-gen-image.sh |
|
39 | CONFIG_TEMPLATE=rpi3stretch ./rpi23-gen-image.sh | |
40 | CONFIG_TEMPLATE=rpi2stretch ./rpi23-gen-image.sh |
|
40 | CONFIG_TEMPLATE=rpi2stretch ./rpi23-gen-image.sh | |
41 | ``` |
|
41 | ``` | |
42 |
|
42 | |||
43 | ## Supported parameters and settings |
|
43 | ## Supported parameters and settings | |
44 | #### APT settings: |
|
44 | #### APT settings: | |
45 | ##### `APT_SERVER`="ftp.debian.org" |
|
45 | ##### `APT_SERVER`="ftp.debian.org" | |
46 | Set Debian packages server address. Choose a server from the list of Debian worldwide [mirror sites](https://www.debian.org/mirror/list). Using a nearby server will probably speed-up all required downloads within the bootstrapping process. |
|
46 | Set Debian packages server address. Choose a server from the list of Debian worldwide [mirror sites](https://www.debian.org/mirror/list). Using a nearby server will probably speed-up all required downloads within the bootstrapping process. | |
47 |
|
47 | |||
48 | ##### `APT_PROXY`="" |
|
48 | ##### `APT_PROXY`="" | |
49 | Set Proxy server address. Using a local Proxy-Cache like `apt-cacher-ng` will speed-up the bootstrapping process because all required Debian packages will only be downloaded from the Debian mirror site once. If `apt-cacher-ng` is running on default `http://127.0.0.1:3142` it is autodetected and you don't need to set this. |
|
49 | Set Proxy server address. Using a local Proxy-Cache like `apt-cacher-ng` will speed-up the bootstrapping process because all required Debian packages will only be downloaded from the Debian mirror site once. If `apt-cacher-ng` is running on default `http://127.0.0.1:3142` it is autodetected and you don't need to set this. | |
50 |
|
50 | |||
51 | ##### `APT_INCLUDES`="" |
|
51 | ##### `APT_INCLUDES`="" | |
52 | A comma separated list of additional packages to be installed by debootstrap during bootstrapping. |
|
52 | A comma separated list of additional packages to be installed by debootstrap during bootstrapping. | |
53 |
|
53 | |||
54 | ##### `APT_INCLUDES_LATE`="" |
|
54 | ##### `APT_INCLUDES_LATE`="" | |
55 | A comma separated list of additional packages to be installed by apt after bootstrapping and after APT sources are set up. This is useful for packages with pre-depends, which debootstrap do not handle well. |
|
55 | A comma separated list of additional packages to be installed by apt after bootstrapping and after APT sources are set up. This is useful for packages with pre-depends, which debootstrap do not handle well. | |
56 |
|
56 | |||
57 | --- |
|
57 | --- | |
58 |
|
58 | |||
59 | #### General system settings: |
|
59 | #### General system settings: | |
60 | ##### `SET_ARCH`=32 |
|
60 | ##### `SET_ARCH`=32 | |
61 | Set Architecture to default 32bit. If you want to to compile 64bit (RPI3 or RPI3+) set it to `64`. This option will set every needed crosscompiler or boeard specific option for a successful build. |
|
61 | Set Architecture to default 32bit. If you want to to compile 64bit (RPI3 or RPI3+) set it to `64`. This option will set every needed crosscompiler or boeard specific option for a successful build. | |
62 | If you want to change e.g. cross-compiler -> Templates always override defaults |
|
62 | If you want to change e.g. cross-compiler -> Templates always override defaults | |
63 |
|
63 | |||
64 | ##### `RPI_MODEL`=2 |
|
64 | ##### `RPI_MODEL`=2 | |
65 | Specifiy the target Raspberry Pi hardware model. The script at this time supports the following Raspberry Pi models: |
|
65 | Specifiy the target Raspberry Pi hardware model. The script at this time supports the following Raspberry Pi models: | |
66 | `0` = Used for Raspberry Pi 0 and Raspberry Pi 0 W |
|
66 | `0` = Used for Raspberry Pi 0 and Raspberry Pi 0 W | |
67 | `1` = Used for Pi 1 model A and B |
|
67 | `1` = Used for Pi 1 model A and B | |
68 | `1P` = Used for Pi 1 model B+ and A+ |
|
68 | `1P` = Used for Pi 1 model B+ and A+ | |
69 | `2` = Used for Pi 2 model B |
|
69 | `2` = Used for Pi 2 model B | |
70 | `3` = Used for Pi 3 model B |
|
70 | `3` = Used for Pi 3 model B | |
71 | `3P` = Used for Pi 3 model B+ |
|
71 | `3P` = Used for Pi 3 model B+ | |
72 | `BUILD_KERNEL`=true will automatically be set if the Raspberry Pi model `3` or `3P` is used. |
|
72 | `BUILD_KERNEL`=true will automatically be set if the Raspberry Pi model `3` or `3P` is used. | |
73 |
|
73 | |||
74 | ##### `RELEASE`="buster" |
|
74 | ##### `RELEASE`="buster" | |
75 | Set the desired Debian release name. The script at this time supports the bootstrapping of the Debian releases `stretch` and `buster`. |
|
75 | Set the desired Debian release name. The script at this time supports the bootstrapping of the Debian releases `stretch` and `buster`. | |
76 |
|
76 | |||
77 | ##### `RELEASE_ARCH`="armhf" |
|
77 | ##### `RELEASE_ARCH`="armhf" | |
78 | Set the desired Debian release architecture. |
|
78 | Set the desired Debian release architecture. | |
79 |
|
79 | |||
80 | ##### `HOSTNAME`="rpi$RPI_MODEL-$RELEASE" |
|
80 | ##### `HOSTNAME`="rpi$RPI_MODEL-$RELEASE" | |
81 | Set system host name. It's recommended that the host name is unique in the corresponding subnet. |
|
81 | Set system host name. It's recommended that the host name is unique in the corresponding subnet. | |
82 |
|
82 | |||
83 | ##### `PASSWORD`="raspberry" |
|
83 | ##### `PASSWORD`="raspberry" | |
84 | Set system `root` password. It's **STRONGLY** recommended that you choose a custom password. |
|
84 | Set system `root` password. It's **STRONGLY** recommended that you choose a custom password. | |
85 |
|
85 | |||
86 | ##### `USER_PASSWORD`="raspberry" |
|
86 | ##### `USER_PASSWORD`="raspberry" | |
87 | Set password for the created non-root user `USER_NAME`=pi. Ignored if `ENABLE_USER`=false. It's **STRONGLY** recommended that you choose a custom password. |
|
87 | Set password for the created non-root user `USER_NAME`=pi. Ignored if `ENABLE_USER`=false. It's **STRONGLY** recommended that you choose a custom password. | |
88 |
|
88 | |||
89 | ##### `DEFLOCAL`="en_US.UTF-8" |
|
89 | ##### `DEFLOCAL`="en_US.UTF-8" | |
90 | Set default system locale. This setting can also be changed inside the running OS using the `dpkg-reconfigure locales` command. Please note that on using this parameter the script will automatically install the required packages `locales`, `keyboard-configuration` and `console-setup`. |
|
90 | Set default system locale. This setting can also be changed inside the running OS using the `dpkg-reconfigure locales` command. Please note that on using this parameter the script will automatically install the required packages `locales`, `keyboard-configuration` and `console-setup`. | |
91 |
|
91 | |||
92 | ##### `TIMEZONE`="Europe/Berlin" |
|
92 | ##### `TIMEZONE`="Europe/Berlin" | |
93 | Set default system timezone. All available timezones can be found in the `/usr/share/zoneinfo/` directory. This setting can also be changed inside the running OS using the `dpkg-reconfigure tzdata` command. |
|
93 | Set default system timezone. All available timezones can be found in the `/usr/share/zoneinfo/` directory. This setting can also be changed inside the running OS using the `dpkg-reconfigure tzdata` command. | |
94 |
|
94 | |||
95 | ##### `EXPANDROOT`=true |
|
95 | ##### `EXPANDROOT`=true | |
96 | Expand the root partition and filesystem automatically on first boot. |
|
96 | Expand the root partition and filesystem automatically on first boot. | |
97 |
|
97 | |||
98 | ##### `ENABLE_QEMU`=false |
|
98 | ##### `ENABLE_QEMU`=false | |
99 | Generate kernel (`vexpress_defconfig`), file system image (`qcow2`) and DTB files that can be used for QEMU full system emulation (`vexpress-A15`). The output files are stored in the `$(pwd)/images/qemu` directory. You can find more information about running the generated image in the QEMU section of this readme file. |
|
99 | Generate kernel (`vexpress_defconfig`), file system image (`qcow2`) and DTB files that can be used for QEMU full system emulation (`vexpress-A15`). The output files are stored in the `$(pwd)/images/qemu` directory. You can find more information about running the generated image in the QEMU section of this readme file. | |
100 |
|
100 | |||
101 | --- |
|
101 | --- | |
102 |
|
102 | |||
103 | #### Keyboard settings: |
|
103 | #### Keyboard settings: | |
104 | These options are used to configure keyboard layout in `/etc/default/keyboard` for console and Xorg. These settings can also be changed inside the running OS using the `dpkg-reconfigure keyboard-configuration` command. |
|
104 | These options are used to configure keyboard layout in `/etc/default/keyboard` for console and Xorg. These settings can also be changed inside the running OS using the `dpkg-reconfigure keyboard-configuration` command. | |
105 |
|
105 | |||
106 | ##### `XKB_MODEL`="" |
|
106 | ##### `XKB_MODEL`="" | |
107 | Set the name of the model of your keyboard type. |
|
107 | Set the name of the model of your keyboard type. | |
108 |
|
108 | |||
109 | ##### `XKB_LAYOUT`="" |
|
109 | ##### `XKB_LAYOUT`="" | |
110 | Set the supported keyboard layout(s). |
|
110 | Set the supported keyboard layout(s). | |
111 |
|
111 | |||
112 | ##### `XKB_VARIANT`="" |
|
112 | ##### `XKB_VARIANT`="" | |
113 | Set the supported variant(s) of the keyboard layout(s). |
|
113 | Set the supported variant(s) of the keyboard layout(s). | |
114 |
|
114 | |||
115 | ##### `XKB_OPTIONS`="" |
|
115 | ##### `XKB_OPTIONS`="" | |
116 | Set extra xkb configuration options. |
|
116 | Set extra xkb configuration options. | |
117 |
|
117 | |||
118 | --- |
|
118 | --- | |
119 |
|
119 | |||
120 | #### Networking settings (DHCP): |
|
120 | #### Networking settings (DHCP): | |
121 | This parameter is used to set up networking auto configuration in `/etc/systemd/network/eth.network`. The default location of network configuration files in the Debian `stretch` release was changed to `/lib/systemd/network`.` |
|
121 | This parameter is used to set up networking auto configuration in `/etc/systemd/network/eth.network`. The default location of network configuration files in the Debian `stretch` release was changed to `/lib/systemd/network`.` | |
122 |
|
122 | |||
123 | ##### `ENABLE_DHCP`=true |
|
123 | ##### `ENABLE_DHCP`=true | |
124 | Set the system to use DHCP. This requires an DHCP server. |
|
124 | Set the system to use DHCP. This requires an DHCP server. | |
125 |
|
125 | |||
126 | --- |
|
126 | --- | |
127 |
|
127 | |||
128 | #### Networking settings (static): |
|
128 | #### Networking settings (static): | |
129 | These parameters are used to set up a static networking configuration in `/etc/systemd/network/eth.network`. The following static networking parameters are only supported if `ENABLE_DHCP` was set to `false`. The default location of network configuration files in the Debian `stretch` release was changed to `/lib/systemd/network`. |
|
129 | These parameters are used to set up a static networking configuration in `/etc/systemd/network/eth.network`. The following static networking parameters are only supported if `ENABLE_DHCP` was set to `false`. The default location of network configuration files in the Debian `stretch` release was changed to `/lib/systemd/network`. | |
130 |
|
130 | |||
131 | ##### `NET_ADDRESS`="" |
|
131 | ##### `NET_ADDRESS`="" | |
132 | Set a static IPv4 or IPv6 address and its prefix, separated by "/", eg. "192.169.0.3/24". |
|
132 | Set a static IPv4 or IPv6 address and its prefix, separated by "/", eg. "192.169.0.3/24". | |
133 |
|
133 | |||
134 | ##### `NET_GATEWAY`="" |
|
134 | ##### `NET_GATEWAY`="" | |
135 | Set the IP address for the default gateway. |
|
135 | Set the IP address for the default gateway. | |
136 |
|
136 | |||
137 | ##### `NET_DNS_1`="" |
|
137 | ##### `NET_DNS_1`="" | |
138 | Set the IP address for the first DNS server. |
|
138 | Set the IP address for the first DNS server. | |
139 |
|
139 | |||
140 | ##### `NET_DNS_2`="" |
|
140 | ##### `NET_DNS_2`="" | |
141 | Set the IP address for the second DNS server. |
|
141 | Set the IP address for the second DNS server. | |
142 |
|
142 | |||
143 | ##### `NET_DNS_DOMAINS`="" |
|
143 | ##### `NET_DNS_DOMAINS`="" | |
144 | Set the default DNS search domains to use for non fully qualified host names. |
|
144 | Set the default DNS search domains to use for non fully qualified host names. | |
145 |
|
145 | |||
146 | ##### `NET_NTP_1`="" |
|
146 | ##### `NET_NTP_1`="" | |
147 | Set the IP address for the first NTP server. |
|
147 | Set the IP address for the first NTP server. | |
148 |
|
148 | |||
149 | ##### `NET_NTP_2`="" |
|
149 | ##### `NET_NTP_2`="" | |
150 | Set the IP address for the second NTP server. |
|
150 | Set the IP address for the second NTP server. | |
151 |
|
151 | |||
152 | --- |
|
152 | --- | |
153 |
|
153 | |||
154 | #### Basic system features: |
|
154 | #### Basic system features: | |
155 | ##### `ENABLE_CONSOLE`=true |
|
155 | ##### `ENABLE_CONSOLE`=true | |
156 | Enable serial console interface. Recommended if no monitor or keyboard is connected to the RPi2/3. In case of problems fe. if the network (auto) configuration failed - the serial console can be used to access the system. |
|
156 | Enable serial console interface. Recommended if no monitor or keyboard is connected to the RPi2/3. In case of problems fe. if the network (auto) configuration failed - the serial console can be used to access the system. | |
157 | On `RPI_MODEL= 0,3,3P` - Bluetooth gets auto enabled if `ENABLE_CONSOLE` and `ENABLE_UBOOT` are set to `false` |
|
|||
158 |
|
157 | |||
159 | ##### `ENABLE_I2C`=false |
|
158 | ##### `ENABLE_I2C`=false | |
160 | Enable I2C interface on the RPi2/3. Please check the [RPi2/3 pinout diagrams](https://elinux.org/RPi_Low-level_peripherals) to connect the right GPIO pins. |
|
159 | Enable I2C interface on the RPi2/3. Please check the [RPi2/3 pinout diagrams](https://elinux.org/RPi_Low-level_peripherals) to connect the right GPIO pins. | |
161 |
|
160 | |||
162 | ##### `ENABLE_SPI`=false |
|
161 | ##### `ENABLE_SPI`=false | |
163 | Enable SPI interface on the RPi2/3. Please check the [RPi2/3 pinout diagrams](https://elinux.org/RPi_Low-level_peripherals) to connect the right GPIO pins. |
|
162 | Enable SPI interface on the RPi2/3. Please check the [RPi2/3 pinout diagrams](https://elinux.org/RPi_Low-level_peripherals) to connect the right GPIO pins. | |
164 |
|
163 | |||
165 | ##### `ENABLE_IPV6`=true |
|
164 | ##### `ENABLE_IPV6`=true | |
166 | Enable IPv6 support. The network interface configuration is managed via systemd-networkd. |
|
165 | Enable IPv6 support. The network interface configuration is managed via systemd-networkd. | |
167 |
|
166 | |||
168 | ##### `ENABLE_SSHD`=true |
|
167 | ##### `ENABLE_SSHD`=true | |
169 | Install and enable OpenSSH service. The default configuration of the service doesn't allow `root` to login. Please use the user `pi` instead and `su -` or `sudo` to execute commands as root. |
|
168 | Install and enable OpenSSH service. The default configuration of the service doesn't allow `root` to login. Please use the user `pi` instead and `su -` or `sudo` to execute commands as root. | |
170 |
|
169 | |||
171 | ##### `ENABLE_NONFREE`=false |
|
170 | ##### `ENABLE_NONFREE`=false | |
172 | Allow the installation of non-free Debian packages that do not comply with the DFSG. This is required to install closed-source firmware binary blobs. |
|
171 | Allow the installation of non-free Debian packages that do not comply with the DFSG. This is required to install closed-source firmware binary blobs. | |
173 |
|
172 | |||
174 | ##### `ENABLE_WIRELESS`=false |
|
173 | ##### `ENABLE_WIRELESS`=false | |
175 | Download and install the [closed-source firmware binary blob](https://github.com/RPi-Distro/firmware-nonfree/raw/master/brcm) that is required to run the internal wireless interface of the Raspberry Pi model `3`. This parameter is ignored if the specified `RPI_MODEL` is not `3`. |
|
174 | Download and install the [closed-source firmware binary blob](https://github.com/RPi-Distro/firmware-nonfree/raw/master/brcm) that is required to run the internal wireless interface of the Raspberry Pi model `3`. This parameter is ignored if the specified `RPI_MODEL` is not `3`. | |
176 |
|
175 | |||
|
176 | ##### `ENABLE_BLUETOOTH`=false | |||
|
177 | Enable Bluetooth interface on the RPi0/3. | |||
|
178 | ||||
177 | ##### `ENABLE_RSYSLOG`=true |
|
179 | ##### `ENABLE_RSYSLOG`=true | |
178 | If set to false, disable and uninstall rsyslog (so logs will be available only in journal files) |
|
180 | If set to false, disable and uninstall rsyslog (so logs will be available only in journal files) | |
179 |
|
181 | |||
180 | ##### `ENABLE_SOUND`=true |
|
182 | ##### `ENABLE_SOUND`=true | |
181 | Enable sound hardware and install Advanced Linux Sound Architecture. |
|
183 | Enable sound hardware and install Advanced Linux Sound Architecture. | |
182 |
|
184 | |||
183 | ##### `ENABLE_HWRANDOM`=true |
|
185 | ##### `ENABLE_HWRANDOM`=true | |
184 | Enable Hardware Random Number Generator. Strong random numbers are important for most network based communications that use encryption. It's recommended to be enabled. |
|
186 | Enable Hardware Random Number Generator. Strong random numbers are important for most network based communications that use encryption. It's recommended to be enabled. | |
185 |
|
187 | |||
186 | ##### `ENABLE_MINGPU`=false |
|
188 | ##### `ENABLE_MINGPU`=false | |
187 | Minimize the amount of shared memory reserved for the GPU. It doesn't seem to be possible to fully disable the GPU. |
|
189 | Minimize the amount of shared memory reserved for the GPU. It doesn't seem to be possible to fully disable the GPU. | |
188 |
|
190 | |||
189 | ##### `ENABLE_DBUS`=true |
|
191 | ##### `ENABLE_DBUS`=true | |
190 | Install and enable D-Bus message bus. Please note that systemd should work without D-bus but it's recommended to be enabled. |
|
192 | Install and enable D-Bus message bus. Please note that systemd should work without D-bus but it's recommended to be enabled. | |
191 |
|
193 | |||
192 | ##### `ENABLE_XORG`=false |
|
194 | ##### `ENABLE_XORG`=false | |
193 | Install Xorg open-source X Window System. |
|
195 | Install Xorg open-source X Window System. | |
194 |
|
196 | |||
195 | ##### `ENABLE_WM`="" |
|
197 | ##### `ENABLE_WM`="" | |
196 | Install a user defined window manager for the X Window System. To make sure all X related package dependencies are getting installed `ENABLE_XORG` will automatically get enabled if `ENABLE_WM` is used. The `rpi23-gen-image.sh` script has been tested with the following list of window managers: `blackbox`, `openbox`, `fluxbox`, `jwm`, `dwm`, `xfce4`, `awesome`. |
|
198 | Install a user defined window manager for the X Window System. To make sure all X related package dependencies are getting installed `ENABLE_XORG` will automatically get enabled if `ENABLE_WM` is used. The `rpi23-gen-image.sh` script has been tested with the following list of window managers: `blackbox`, `openbox`, `fluxbox`, `jwm`, `dwm`, `xfce4`, `awesome`. | |
197 |
|
199 | |||
198 | ##### `ENABLE_SYSVINIT`=false |
|
200 | ##### `ENABLE_SYSVINIT`=false | |
199 | Support for halt,init,poweroff,reboot,runlevel,shutdown,telinit commands |
|
201 | Support for halt,init,poweroff,reboot,runlevel,shutdown,telinit commands | |
200 |
|
202 | |||
201 | --- |
|
203 | --- | |
202 |
|
204 | |||
203 | #### Advanced system features: |
|
205 | #### Advanced system features: | |
204 | ##### `ENABLE_MINBASE`=false |
|
206 | ##### `ENABLE_MINBASE`=false | |
205 | Use debootstrap script variant `minbase` which only includes essential packages and apt. This will reduce the disk usage by about 65 MB. |
|
207 | Use debootstrap script variant `minbase` which only includes essential packages and apt. This will reduce the disk usage by about 65 MB. | |
206 |
|
208 | |||
207 | ##### `ENABLE_REDUCE`=false |
|
209 | ##### `ENABLE_REDUCE`=false | |
208 | Reduce the disk space usage by deleting packages and files. See `REDUCE_*` parameters for detailed information. |
|
210 | Reduce the disk space usage by deleting packages and files. See `REDUCE_*` parameters for detailed information. | |
209 |
|
211 | |||
210 | ##### `ENABLE_UBOOT`=false |
|
212 | ##### `ENABLE_UBOOT`=false | |
211 | Replace the default RPi2/3 second stage bootloader (bootcode.bin) with [U-Boot bootloader](https://git.denx.de/?p=u-boot.git;a=summary). U-Boot can boot images via the network using the BOOTP/TFTP protocol. |
|
213 | Replace the default RPi2/3 second stage bootloader (bootcode.bin) with [U-Boot bootloader](https://git.denx.de/?p=u-boot.git;a=summary). U-Boot can boot images via the network using the BOOTP/TFTP protocol. | |
212 |
|
214 | |||
213 | ##### `UBOOTSRC_DIR`="" |
|
215 | ##### `UBOOTSRC_DIR`="" | |
214 | Path to a directory (`u-boot`) of [U-Boot bootloader sources](https://git.denx.de/?p=u-boot.git;a=summary) that will be copied, configured, build and installed inside the chroot. |
|
216 | Path to a directory (`u-boot`) of [U-Boot bootloader sources](https://git.denx.de/?p=u-boot.git;a=summary) that will be copied, configured, build and installed inside the chroot. | |
215 |
|
217 | |||
216 | ##### `ENABLE_FBTURBO`=false |
|
218 | ##### `ENABLE_FBTURBO`=false | |
217 | Install and enable the [hardware accelerated Xorg video driver](https://github.com/ssvb/xf86-video-fbturbo) `fbturbo`. Please note that this driver is currently limited to hardware accelerated window moving and scrolling. |
|
219 | Install and enable the [hardware accelerated Xorg video driver](https://github.com/ssvb/xf86-video-fbturbo) `fbturbo`. Please note that this driver is currently limited to hardware accelerated window moving and scrolling. | |
218 |
|
220 | |||
219 | ##### `FBTURBOSRC_DIR`="" |
|
221 | ##### `FBTURBOSRC_DIR`="" | |
220 | Path to a directory (`xf86-video-fbturbo`) of [hardware accelerated Xorg video driver sources](https://github.com/ssvb/xf86-video-fbturbo) that will be copied, configured, build and installed inside the chroot. |
|
222 | Path to a directory (`xf86-video-fbturbo`) of [hardware accelerated Xorg video driver sources](https://github.com/ssvb/xf86-video-fbturbo) that will be copied, configured, build and installed inside the chroot. | |
221 |
|
223 | |||
222 | ##### `ENABLE_VIDEOCORE`=false |
|
224 | ##### `ENABLE_VIDEOCORE`=false | |
223 | Install and enable the [Source code for ARM side libraries for interfacing to Raspberry Pi GPU](https://github.com/raspberrypi/userland) `vcgencmd`. Please note that this driver is currently limited to hardware accelerated window moving and scrolling. |
|
225 | Install and enable the [Source code for ARM side libraries for interfacing to Raspberry Pi GPU](https://github.com/raspberrypi/userland) `vcgencmd`. Please note that this driver is currently limited to hardware accelerated window moving and scrolling. | |
224 |
|
226 | |||
225 | ##### `VIDEOCORESRC_DIR`="" |
|
227 | ##### `VIDEOCORESRC_DIR`="" | |
226 | Path to a directory (`userland`) of [Source code for ARM side libraries for interfacing to Raspberry Pi GPU](https://github.com/raspberrypi/userland) that will be copied, configured, build and installed inside the chroot. |
|
228 | Path to a directory (`userland`) of [Source code for ARM side libraries for interfacing to Raspberry Pi GPU](https://github.com/raspberrypi/userland) that will be copied, configured, build and installed inside the chroot. | |
227 |
|
229 | |||
228 | ##### `ENABLE_IPTABLES`=false |
|
230 | ##### `ENABLE_IPTABLES`=false | |
229 | Enable iptables IPv4/IPv6 firewall. Simplified ruleset: Allow all outgoing connections. Block all incoming connections except to OpenSSH service. |
|
231 | Enable iptables IPv4/IPv6 firewall. Simplified ruleset: Allow all outgoing connections. Block all incoming connections except to OpenSSH service. | |
230 |
|
232 | |||
231 | ##### `ENABLE_USER`=true |
|
233 | ##### `ENABLE_USER`=true | |
232 | Create non-root user with password `USER_PASSWORD`=raspberry. Unless overridden with `USER_NAME`=user, username will be `pi`. |
|
234 | Create non-root user with password `USER_PASSWORD`=raspberry. Unless overridden with `USER_NAME`=user, username will be `pi`. | |
233 |
|
235 | |||
234 | ##### `USER_NAME`=pi |
|
236 | ##### `USER_NAME`=pi | |
235 | Non-root user to create. Ignored if `ENABLE_USER`=false |
|
237 | Non-root user to create. Ignored if `ENABLE_USER`=false | |
236 |
|
238 | |||
237 | ##### `ENABLE_ROOT`=false |
|
239 | ##### `ENABLE_ROOT`=false | |
238 | Set root user password so root login will be enabled |
|
240 | Set root user password so root login will be enabled | |
239 |
|
241 | |||
240 | ##### `ENABLE_HARDNET`=false |
|
242 | ##### `ENABLE_HARDNET`=false | |
241 | Enable IPv4/IPv6 network stack hardening settings. |
|
243 | Enable IPv4/IPv6 network stack hardening settings. | |
242 |
|
244 | |||
243 | ##### `ENABLE_SPLITFS`=false |
|
245 | ##### `ENABLE_SPLITFS`=false | |
244 | Enable having root partition on an USB drive by creating two image files: one for the `/boot/firmware` mount point, and another for `/`. |
|
246 | Enable having root partition on an USB drive by creating two image files: one for the `/boot/firmware` mount point, and another for `/`. | |
245 |
|
247 | |||
246 | ##### `CHROOT_SCRIPTS`="" |
|
248 | ##### `CHROOT_SCRIPTS`="" | |
247 | Path to a directory with scripts that should be run in the chroot before the image is finally built. Every executable file in this directory is run in lexicographical order. |
|
249 | Path to a directory with scripts that should be run in the chroot before the image is finally built. Every executable file in this directory is run in lexicographical order. | |
248 |
|
250 | |||
249 | ##### `ENABLE_INITRAMFS`=false |
|
251 | ##### `ENABLE_INITRAMFS`=false | |
250 | Create an initramfs that that will be loaded during the Linux startup process. `ENABLE_INITRAMFS` will automatically get enabled if `ENABLE_CRYPTFS`=true. This parameter will be ignored if `BUILD_KERNEL`=false. |
|
252 | Create an initramfs that that will be loaded during the Linux startup process. `ENABLE_INITRAMFS` will automatically get enabled if `ENABLE_CRYPTFS`=true. This parameter will be ignored if `BUILD_KERNEL`=false. | |
251 |
|
253 | |||
252 | ##### `ENABLE_IFNAMES`=true |
|
254 | ##### `ENABLE_IFNAMES`=true | |
253 | Enable automatic assignment of predictable, stable network interface names for all local Ethernet, WLAN interfaces. This might create complex and long interface names. |
|
255 | Enable automatic assignment of predictable, stable network interface names for all local Ethernet, WLAN interfaces. This might create complex and long interface names. | |
254 |
|
256 | |||
255 | ##### `DISABLE_UNDERVOLT_WARNINGS`= |
|
257 | ##### `DISABLE_UNDERVOLT_WARNINGS`= | |
256 | Disable RPi2/3 under-voltage warnings and overlays. Setting the parameter to `1` will disable the warning overlay. Setting it to `2` will additionally allow RPi2/3 turbo mode when low-voltage is present. |
|
258 | Disable RPi2/3 under-voltage warnings and overlays. Setting the parameter to `1` will disable the warning overlay. Setting it to `2` will additionally allow RPi2/3 turbo mode when low-voltage is present. | |
257 |
|
259 | |||
258 | --- |
|
260 | --- | |
259 |
|
261 | |||
260 | #### SSH settings: |
|
262 | #### SSH settings: | |
261 | ##### `SSH_ENABLE_ROOT`=false |
|
263 | ##### `SSH_ENABLE_ROOT`=false | |
262 | Enable password root login via SSH. This may be a security risk with default password, use only in trusted environments. `ENABLE_ROOT` must be set to `true`. |
|
264 | Enable password root login via SSH. This may be a security risk with default password, use only in trusted environments. `ENABLE_ROOT` must be set to `true`. | |
263 |
|
265 | |||
264 | ##### `SSH_DISABLE_PASSWORD_AUTH`=false |
|
266 | ##### `SSH_DISABLE_PASSWORD_AUTH`=false | |
265 | Disable password based SSH authentication. Only public key based SSH (v2) authentication will be supported. |
|
267 | Disable password based SSH authentication. Only public key based SSH (v2) authentication will be supported. | |
266 |
|
268 | |||
267 | ##### `SSH_LIMIT_USERS`=false |
|
269 | ##### `SSH_LIMIT_USERS`=false | |
268 | Limit the users that are allowed to login via SSH. Only allow user `USER_NAME`=pi and root if `SSH_ENABLE_ROOT`=true to login. This parameter will be ignored if `dropbear` SSH is used (`REDUCE_SSHD`=true). |
|
270 | Limit the users that are allowed to login via SSH. Only allow user `USER_NAME`=pi and root if `SSH_ENABLE_ROOT`=true to login. This parameter will be ignored if `dropbear` SSH is used (`REDUCE_SSHD`=true). | |
269 |
|
271 | |||
270 | ##### `SSH_ROOT_PUB_KEY`="" |
|
272 | ##### `SSH_ROOT_PUB_KEY`="" | |
271 | Add SSH (v2) public key(s) from specified file to `authorized_keys` file to enable public key based SSH (v2) authentication of user `root`. The specified file can also contain multiple SSH (v2) public keys. SSH protocol version 1 is not supported. `ENABLE_ROOT` **and** `SSH_ENABLE_ROOT` must be set to `true`. |
|
273 | Add SSH (v2) public key(s) from specified file to `authorized_keys` file to enable public key based SSH (v2) authentication of user `root`. The specified file can also contain multiple SSH (v2) public keys. SSH protocol version 1 is not supported. `ENABLE_ROOT` **and** `SSH_ENABLE_ROOT` must be set to `true`. | |
272 |
|
274 | |||
273 | ##### `SSH_USER_PUB_KEY`="" |
|
275 | ##### `SSH_USER_PUB_KEY`="" | |
274 | Add SSH (v2) public key(s) from specified file to `authorized_keys` file to enable public key based SSH (v2) authentication of user `USER_NAME`=pi. The specified file can also contain multiple SSH (v2) public keys. SSH protocol version 1 is not supported. |
|
276 | Add SSH (v2) public key(s) from specified file to `authorized_keys` file to enable public key based SSH (v2) authentication of user `USER_NAME`=pi. The specified file can also contain multiple SSH (v2) public keys. SSH protocol version 1 is not supported. | |
275 |
|
277 | |||
276 | --- |
|
278 | --- | |
277 |
|
279 | |||
278 | #### Kernel compilation: |
|
280 | #### Kernel compilation: | |
279 | ##### `BUILD_KERNEL`=true |
|
281 | ##### `BUILD_KERNEL`=true | |
280 | Build and install the latest RPi2/3 Linux kernel. Currently only the default RPi2/3 kernel configuration is used. |
|
282 | Build and install the latest RPi2/3 Linux kernel. Currently only the default RPi2/3 kernel configuration is used. | |
281 |
|
283 | |||
282 | ##### `CROSS_COMPILE`="arm-linux-gnueabihf-" |
|
284 | ##### `CROSS_COMPILE`="arm-linux-gnueabihf-" | |
283 | This sets the cross compile enviornment for the compiler. |
|
285 | This sets the cross compile enviornment for the compiler. | |
284 |
|
286 | |||
285 | ##### `KERNEL_ARCH`="arm" |
|
287 | ##### `KERNEL_ARCH`="arm" | |
286 | This sets the kernel architecture for the compiler. |
|
288 | This sets the kernel architecture for the compiler. | |
287 |
|
289 | |||
288 | ##### `KERNEL_IMAGE`="kernel7.img" |
|
290 | ##### `KERNEL_IMAGE`="kernel7.img" | |
289 | Name of the image file in the boot partition. If not set, `KERNEL_IMAGE` will be set to "kernel8.img" automatically if building for arm64. |
|
291 | Name of the image file in the boot partition. If not set, `KERNEL_IMAGE` will be set to "kernel8.img" automatically if building for arm64. | |
290 |
|
292 | |||
291 | ##### `KERNEL_BRANCH`="" |
|
293 | ##### `KERNEL_BRANCH`="" | |
292 | Name of the requested branch from the GIT location for the RPi Kernel. Default is using the current default branch from the GIT site. |
|
294 | Name of the requested branch from the GIT location for the RPi Kernel. Default is using the current default branch from the GIT site. | |
293 |
|
295 | |||
294 | ##### `QEMU_BINARY`="/usr/bin/qemu-arm-static" |
|
296 | ##### `QEMU_BINARY`="/usr/bin/qemu-arm-static" | |
295 | Sets the QEMU enviornment for the Debian archive. If not set, `QEMU_BINARY` will be set to "/usr/bin/qemu-aarch64-static" automatically if building for arm64. |
|
297 | Sets the QEMU enviornment for the Debian archive. If not set, `QEMU_BINARY` will be set to "/usr/bin/qemu-aarch64-static" automatically if building for arm64. | |
296 |
|
298 | |||
297 | ##### `KERNEL_DEFCONFIG`="bcm2709_defconfig" |
|
299 | ##### `KERNEL_DEFCONFIG`="bcm2709_defconfig" | |
298 | Sets the default config for kernel compiling. If not set, `KERNEL_DEFCONFIG` will be set to "bcmrpi3\_defconfig" automatically if building for arm64. |
|
300 | Sets the default config for kernel compiling. If not set, `KERNEL_DEFCONFIG` will be set to "bcmrpi3\_defconfig" automatically if building for arm64. | |
299 |
|
301 | |||
300 | ##### `KERNEL_REDUCE`=false |
|
302 | ##### `KERNEL_REDUCE`=false | |
301 | Reduce the size of the generated kernel by removing unwanted device, network and filesystem drivers (experimental). |
|
303 | Reduce the size of the generated kernel by removing unwanted device, network and filesystem drivers (experimental). | |
302 |
|
304 | |||
303 | ##### `KERNEL_THREADS`=1 |
|
305 | ##### `KERNEL_THREADS`=1 | |
304 | Number of parallel kernel building threads. If the parameter is left untouched the script will automatically determine the number of CPU cores to set the number of parallel threads to speed the kernel compilation. |
|
306 | Number of parallel kernel building threads. If the parameter is left untouched the script will automatically determine the number of CPU cores to set the number of parallel threads to speed the kernel compilation. | |
305 |
|
307 | |||
306 | ##### `KERNEL_HEADERS`=true |
|
308 | ##### `KERNEL_HEADERS`=true | |
307 | Install kernel headers with built kernel. |
|
309 | Install kernel headers with built kernel. | |
308 |
|
310 | |||
309 | ##### `KERNEL_MENUCONFIG`=false |
|
311 | ##### `KERNEL_MENUCONFIG`=false | |
310 | Start `make menuconfig` interactive menu-driven kernel configuration. The script will continue after `make menuconfig` was terminated. |
|
312 | Start `make menuconfig` interactive menu-driven kernel configuration. The script will continue after `make menuconfig` was terminated. | |
311 |
|
313 | |||
312 | ##### `KERNEL_OLDDEFCONFIG`=false |
|
314 | ##### `KERNEL_OLDDEFCONFIG`=false | |
313 | Run `make olddefconfig` to automatically set all new kernel configuration options to their recommended default values. |
|
315 | Run `make olddefconfig` to automatically set all new kernel configuration options to their recommended default values. | |
314 |
|
316 | |||
315 | ##### `KERNEL_CCACHE`=false |
|
317 | ##### `KERNEL_CCACHE`=false | |
316 | Compile the kernel using ccache. This speeds up kernel recompilation by caching previous compilations and detecting when the same compilation is being done again. |
|
318 | Compile the kernel using ccache. This speeds up kernel recompilation by caching previous compilations and detecting when the same compilation is being done again. | |
317 |
|
319 | |||
318 | ##### `KERNEL_REMOVESRC`=true |
|
320 | ##### `KERNEL_REMOVESRC`=true | |
319 | Remove all kernel sources from the generated OS image after it was built and installed. |
|
321 | Remove all kernel sources from the generated OS image after it was built and installed. | |
320 |
|
322 | |||
321 | ##### `KERNELSRC_DIR`="" |
|
323 | ##### `KERNELSRC_DIR`="" | |
322 | Path to a directory (`linux`) of [RaspberryPi Linux kernel sources](https://github.com/raspberrypi/linux) that will be copied, configured, build and installed inside the chroot. |
|
324 | Path to a directory (`linux`) of [RaspberryPi Linux kernel sources](https://github.com/raspberrypi/linux) that will be copied, configured, build and installed inside the chroot. | |
323 |
|
325 | |||
324 | ##### `KERNELSRC_CLEAN`=false |
|
326 | ##### `KERNELSRC_CLEAN`=false | |
325 | Clean the existing kernel sources directory `KERNELSRC_DIR` (using `make mrproper`) after it was copied to the chroot and before the compilation of the kernel has started. This parameter will be ignored if no `KERNELSRC_DIR` was specified or if `KERNELSRC_PREBUILT`=true. |
|
327 | Clean the existing kernel sources directory `KERNELSRC_DIR` (using `make mrproper`) after it was copied to the chroot and before the compilation of the kernel has started. This parameter will be ignored if no `KERNELSRC_DIR` was specified or if `KERNELSRC_PREBUILT`=true. | |
326 |
|
328 | |||
327 | ##### `KERNELSRC_CONFIG`=true |
|
329 | ##### `KERNELSRC_CONFIG`=true | |
328 | Run `make bcm2709_defconfig` (and optional `make menuconfig`) to configure the kernel sources before building. This parameter is automatically set to `true` if no existing kernel sources directory was specified using `KERNELSRC_DIR`. This parameter is ignored if `KERNELSRC_PREBUILT`=true. |
|
330 | Run `make bcm2709_defconfig` (and optional `make menuconfig`) to configure the kernel sources before building. This parameter is automatically set to `true` if no existing kernel sources directory was specified using `KERNELSRC_DIR`. This parameter is ignored if `KERNELSRC_PREBUILT`=true. | |
329 |
|
331 | |||
330 | ##### `KERNELSRC_USRCONFIG`="" |
|
332 | ##### `KERNELSRC_USRCONFIG`="" | |
331 | Copy own config file to kernel `.config`. If `KERNEL_MENUCONFIG`=true then running after copy. |
|
333 | Copy own config file to kernel `.config`. If `KERNEL_MENUCONFIG`=true then running after copy. | |
332 |
|
334 | |||
333 | ##### `KERNELSRC_PREBUILT`=false |
|
335 | ##### `KERNELSRC_PREBUILT`=false | |
334 | With this parameter set to true the script expects the existing kernel sources directory to be already successfully cross-compiled. The parameters `KERNELSRC_CLEAN`, `KERNELSRC_CONFIG`, `KERNELSRC_USRCONFIG` and `KERNEL_MENUCONFIG` are ignored and no kernel compilation tasks are performed. |
|
336 | With this parameter set to true the script expects the existing kernel sources directory to be already successfully cross-compiled. The parameters `KERNELSRC_CLEAN`, `KERNELSRC_CONFIG`, `KERNELSRC_USRCONFIG` and `KERNEL_MENUCONFIG` are ignored and no kernel compilation tasks are performed. | |
335 |
|
337 | |||
336 | ##### `RPI_FIRMWARE_DIR`="" |
|
338 | ##### `RPI_FIRMWARE_DIR`="" | |
337 | The directory (`firmware`) containing a local copy of the firmware from the [RaspberryPi firmware project](https://github.com/raspberrypi/firmware). Default is to download the latest firmware directly from the project. |
|
339 | The directory (`firmware`) containing a local copy of the firmware from the [RaspberryPi firmware project](https://github.com/raspberrypi/firmware). Default is to download the latest firmware directly from the project. | |
338 |
|
340 | |||
339 | --- |
|
341 | --- | |
340 |
|
342 | |||
341 | #### Reduce disk usage: |
|
343 | #### Reduce disk usage: | |
342 | The following list of parameters is ignored if `ENABLE_REDUCE`=false. |
|
344 | The following list of parameters is ignored if `ENABLE_REDUCE`=false. | |
343 |
|
345 | |||
344 | ##### `REDUCE_APT`=true |
|
346 | ##### `REDUCE_APT`=true | |
345 | Configure APT to use compressed package repository lists and no package caching files. |
|
347 | Configure APT to use compressed package repository lists and no package caching files. | |
346 |
|
348 | |||
347 | ##### `REDUCE_DOC`=true |
|
349 | ##### `REDUCE_DOC`=true | |
348 | Remove all doc files (harsh). Configure APT to not include doc files on future `apt-get` package installations. |
|
350 | Remove all doc files (harsh). Configure APT to not include doc files on future `apt-get` package installations. | |
349 |
|
351 | |||
350 | ##### `REDUCE_MAN`=true |
|
352 | ##### `REDUCE_MAN`=true | |
351 | Remove all man pages and info files (harsh). Configure APT to not include man pages on future `apt-get` package installations. |
|
353 | Remove all man pages and info files (harsh). Configure APT to not include man pages on future `apt-get` package installations. | |
352 |
|
354 | |||
353 | ##### `REDUCE_VIM`=false |
|
355 | ##### `REDUCE_VIM`=false | |
354 | Replace `vim-tiny` package by `levee` a tiny vim clone. |
|
356 | Replace `vim-tiny` package by `levee` a tiny vim clone. | |
355 |
|
357 | |||
356 | ##### `REDUCE_BASH`=false |
|
358 | ##### `REDUCE_BASH`=false | |
357 | Remove `bash` package and switch to `dash` shell (experimental). |
|
359 | Remove `bash` package and switch to `dash` shell (experimental). | |
358 |
|
360 | |||
359 | ##### `REDUCE_HWDB`=true |
|
361 | ##### `REDUCE_HWDB`=true | |
360 | Remove PCI related hwdb files (experimental). |
|
362 | Remove PCI related hwdb files (experimental). | |
361 |
|
363 | |||
362 | ##### `REDUCE_SSHD`=true |
|
364 | ##### `REDUCE_SSHD`=true | |
363 | Replace `openssh-server` with `dropbear`. |
|
365 | Replace `openssh-server` with `dropbear`. | |
364 |
|
366 | |||
365 | ##### `REDUCE_LOCALE`=true |
|
367 | ##### `REDUCE_LOCALE`=true | |
366 | Remove all `locale` translation files. |
|
368 | Remove all `locale` translation files. | |
367 |
|
369 | |||
368 | --- |
|
370 | --- | |
369 |
|
371 | |||
370 | #### Encrypted root partition: |
|
372 | #### Encrypted root partition: | |
371 | ##### `ENABLE_CRYPTFS`=false |
|
373 | ##### `ENABLE_CRYPTFS`=false | |
372 | Enable full system encryption with dm-crypt. Setup a fully LUKS encrypted root partition (aes-xts-plain64:sha512) and generate required initramfs. The /boot directory will not be encrypted. This parameter will be ignored if `BUILD_KERNEL`=false. `ENABLE_CRYPTFS` is experimental. SSH-to-initramfs is currently not supported but will be soon - feel free to help. |
|
374 | Enable full system encryption with dm-crypt. Setup a fully LUKS encrypted root partition (aes-xts-plain64:sha512) and generate required initramfs. The /boot directory will not be encrypted. This parameter will be ignored if `BUILD_KERNEL`=false. `ENABLE_CRYPTFS` is experimental. SSH-to-initramfs is currently not supported but will be soon - feel free to help. | |
373 |
|
375 | |||
374 | ##### `CRYPTFS_PASSWORD`="" |
|
376 | ##### `CRYPTFS_PASSWORD`="" | |
375 | Set password of the encrypted root partition. This parameter is mandatory if `ENABLE_CRYPTFS`=true. |
|
377 | Set password of the encrypted root partition. This parameter is mandatory if `ENABLE_CRYPTFS`=true. | |
376 |
|
378 | |||
377 | ##### `CRYPTFS_MAPPING`="secure" |
|
379 | ##### `CRYPTFS_MAPPING`="secure" | |
378 | Set name of dm-crypt managed device-mapper mapping. |
|
380 | Set name of dm-crypt managed device-mapper mapping. | |
379 |
|
381 | |||
380 | ##### `CRYPTFS_CIPHER`="aes-xts-plain64:sha512" |
|
382 | ##### `CRYPTFS_CIPHER`="aes-xts-plain64:sha512" | |
381 | Set cipher specification string. `aes-xts*` ciphers are strongly recommended. |
|
383 | Set cipher specification string. `aes-xts*` ciphers are strongly recommended. | |
382 |
|
384 | |||
383 | ##### `CRYPTFS_XTSKEYSIZE`=512 |
|
385 | ##### `CRYPTFS_XTSKEYSIZE`=512 | |
384 | Sets key size in bits. The argument has to be a multiple of 8. |
|
386 | Sets key size in bits. The argument has to be a multiple of 8. | |
385 |
|
387 | |||
386 | --- |
|
388 | --- | |
387 |
|
389 | |||
388 | #### Build settings: |
|
390 | #### Build settings: | |
389 | ##### `BASEDIR`=$(pwd)/images/${RELEASE} |
|
391 | ##### `BASEDIR`=$(pwd)/images/${RELEASE} | |
390 | Set a path to a working directory used by the script to generate an image. |
|
392 | Set a path to a working directory used by the script to generate an image. | |
391 |
|
393 | |||
392 | ##### `IMAGE_NAME`=${BASEDIR}/${DATE}-${KERNEL_ARCH}-${KERNEL_BRANCH}-rpi${RPI_MODEL}-${RELEASE}-${RELEASE_ARCH} |
|
394 | ##### `IMAGE_NAME`=${BASEDIR}/${DATE}-${KERNEL_ARCH}-${KERNEL_BRANCH}-rpi${RPI_MODEL}-${RELEASE}-${RELEASE_ARCH} | |
393 | Set a filename for the output file(s). Note: the script will create $IMAGE_NAME.img if `ENABLE_SPLITFS`=false or $IMAGE_NAME-frmw.img and $IMAGE_NAME-root.img if `ENABLE_SPLITFS`=true. Note 2: If the KERNEL_BRANCH is not set, the word "CURRENT" is used. |
|
395 | Set a filename for the output file(s). Note: the script will create $IMAGE_NAME.img if `ENABLE_SPLITFS`=false or $IMAGE_NAME-frmw.img and $IMAGE_NAME-root.img if `ENABLE_SPLITFS`=true. Note 2: If the KERNEL_BRANCH is not set, the word "CURRENT" is used. | |
394 |
|
396 | |||
395 | ## Understanding the script |
|
397 | ## Understanding the script | |
396 | The functions of this script that are required for the different stages of the bootstrapping are split up into single files located inside the `bootstrap.d` directory. During the bootstrapping every script in this directory gets executed in lexicographical order: |
|
398 | The functions of this script that are required for the different stages of the bootstrapping are split up into single files located inside the `bootstrap.d` directory. During the bootstrapping every script in this directory gets executed in lexicographical order: | |
397 |
|
399 | |||
398 | | Script | Description | |
|
400 | | Script | Description | | |
399 | | --- | --- | |
|
401 | | --- | --- | | |
400 | | `10-bootstrap.sh` | Debootstrap basic system | |
|
402 | | `10-bootstrap.sh` | Debootstrap basic system | | |
401 | | `11-apt.sh` | Setup APT repositories | |
|
403 | | `11-apt.sh` | Setup APT repositories | | |
402 | | `12-locale.sh` | Setup Locales and keyboard settings | |
|
404 | | `12-locale.sh` | Setup Locales and keyboard settings | | |
403 | | `13-kernel.sh` | Build and install RPi2/3 Kernel | |
|
405 | | `13-kernel.sh` | Build and install RPi2/3 Kernel | | |
404 | | `14-fstab.sh` | Setup fstab and initramfs | |
|
406 | | `14-fstab.sh` | Setup fstab and initramfs | | |
405 | | `15-rpi-config.sh` | Setup RPi2/3 config and cmdline | |
|
407 | | `15-rpi-config.sh` | Setup RPi2/3 config and cmdline | | |
406 | | `20-networking.sh` | Setup Networking | |
|
408 | | `20-networking.sh` | Setup Networking | | |
407 | | `21-firewall.sh` | Setup Firewall | |
|
409 | | `21-firewall.sh` | Setup Firewall | | |
408 | | `30-security.sh` | Setup Users and Security settings | |
|
410 | | `30-security.sh` | Setup Users and Security settings | | |
409 | | `31-logging.sh` | Setup Logging | |
|
411 | | `31-logging.sh` | Setup Logging | | |
410 | | `32-sshd.sh` | Setup SSH and public keys | |
|
412 | | `32-sshd.sh` | Setup SSH and public keys | | |
411 | | `41-uboot.sh` | Build and Setup U-Boot | |
|
413 | | `41-uboot.sh` | Build and Setup U-Boot | | |
412 | | `42-fbturbo.sh` | Build and Setup fbturbo Xorg driver | |
|
414 | | `42-fbturbo.sh` | Build and Setup fbturbo Xorg driver | | |
413 | | `50-firstboot.sh` | First boot actions | |
|
415 | | `50-firstboot.sh` | First boot actions | | |
414 | | `99-reduce.sh` | Reduce the disk space usage | |
|
416 | | `99-reduce.sh` | Reduce the disk space usage | | |
415 |
|
417 | |||
416 | All the required configuration files that will be copied to the generated OS image are located inside the `files` directory. It is not recommended to modify these configuration files manually. |
|
418 | All the required configuration files that will be copied to the generated OS image are located inside the `files` directory. It is not recommended to modify these configuration files manually. | |
417 |
|
419 | |||
418 | | Directory | Description | |
|
420 | | Directory | Description | | |
419 | | --- | --- | |
|
421 | | --- | --- | | |
420 | | `apt` | APT management configuration files | |
|
422 | | `apt` | APT management configuration files | | |
421 | | `boot` | Boot and RPi2/3 configuration files | |
|
423 | | `boot` | Boot and RPi2/3 configuration files | | |
422 | | `dpkg` | Package Manager configuration | |
|
424 | | `dpkg` | Package Manager configuration | | |
423 | | `etc` | Configuration files and rc scripts | |
|
425 | | `etc` | Configuration files and rc scripts | | |
424 | | `firstboot` | Scripts that get executed on first boot | |
|
426 | | `firstboot` | Scripts that get executed on first boot | | |
425 | | `initramfs` | Initramfs scripts | |
|
427 | | `initramfs` | Initramfs scripts | | |
426 | | `iptables` | Firewall configuration files | |
|
428 | | `iptables` | Firewall configuration files | | |
427 | | `locales` | Locales configuration | |
|
429 | | `locales` | Locales configuration | | |
428 | | `modules` | Kernel Modules configuration | |
|
430 | | `modules` | Kernel Modules configuration | | |
429 | | `mount` | Fstab configuration | |
|
431 | | `mount` | Fstab configuration | | |
430 | | `network` | Networking configuration files | |
|
432 | | `network` | Networking configuration files | | |
431 | | `sysctl.d` | Swapping and Network Hardening configuration | |
|
433 | | `sysctl.d` | Swapping and Network Hardening configuration | | |
432 | | `xorg` | fbturbo Xorg driver configuration | |
|
434 | | `xorg` | fbturbo Xorg driver configuration | | |
433 |
|
435 | |||
434 | ## Custom packages and scripts |
|
436 | ## Custom packages and scripts | |
435 | Debian custom packages, i.e. those not in the debian repositories, can be installed by placing them in the `packages` directory. They are installed immediately after packages from the repositories are installed. Any dependencies listed in the custom packages will be downloaded automatically from the repositories. Do not list these custom packages in `APT_INCLUDES`. |
|
437 | Debian custom packages, i.e. those not in the debian repositories, can be installed by placing them in the `packages` directory. They are installed immediately after packages from the repositories are installed. Any dependencies listed in the custom packages will be downloaded automatically from the repositories. Do not list these custom packages in `APT_INCLUDES`. | |
436 |
|
438 | |||
437 | Scripts in the custom.d directory will be executed after all other installation is complete but before the image is created. |
|
439 | Scripts in the custom.d directory will be executed after all other installation is complete but before the image is created. | |
438 |
|
440 | |||
439 | ## Logging of the bootstrapping process |
|
441 | ## Logging of the bootstrapping process | |
440 | All information related to the bootstrapping process and the commands executed by the `rpi23-gen-image.sh` script can easily be saved into a logfile. The common shell command `script` can be used for this purpose: |
|
442 | All information related to the bootstrapping process and the commands executed by the `rpi23-gen-image.sh` script can easily be saved into a logfile. The common shell command `script` can be used for this purpose: | |
441 |
|
443 | |||
442 | ```shell |
|
444 | ```shell | |
443 | script -c 'APT_SERVER=ftp.de.debian.org ./rpi23-gen-image.sh' ./build.log |
|
445 | script -c 'APT_SERVER=ftp.de.debian.org ./rpi23-gen-image.sh' ./build.log | |
444 | ``` |
|
446 | ``` | |
445 |
|
447 | |||
446 | ## Flashing the image file |
|
448 | ## Flashing the image file | |
447 | After the image file was successfully created by the `rpi23-gen-image.sh` script it can be copied to the microSD card that will be used by the RPi2/3 computer. This can be performed by using the tools `bmaptool` or `dd`. Using `bmaptool` will probably speed-up the copy process because `bmaptool` copies more wisely than `dd`. |
|
449 | After the image file was successfully created by the `rpi23-gen-image.sh` script it can be copied to the microSD card that will be used by the RPi2/3 computer. This can be performed by using the tools `bmaptool` or `dd`. Using `bmaptool` will probably speed-up the copy process because `bmaptool` copies more wisely than `dd`. | |
448 |
|
450 | |||
449 | ##### Flashing examples: |
|
451 | ##### Flashing examples: | |
450 | ```shell |
|
452 | ```shell | |
451 | bmaptool copy ./images/buster/2017-01-23-rpi3-buster.img /dev/mmcblk0 |
|
453 | bmaptool copy ./images/buster/2017-01-23-rpi3-buster.img /dev/mmcblk0 | |
452 | dd bs=4M if=./images/buster/2017-01-23-rpi3-buster.img of=/dev/mmcblk0 |
|
454 | dd bs=4M if=./images/buster/2017-01-23-rpi3-buster.img of=/dev/mmcblk0 | |
453 | ``` |
|
455 | ``` | |
454 | If you have set `ENABLE_SPLITFS`, copy the `-frmw` image on the microSD card, then the `-root` one on the USB drive: |
|
456 | If you have set `ENABLE_SPLITFS`, copy the `-frmw` image on the microSD card, then the `-root` one on the USB drive: | |
455 | ```shell |
|
457 | ```shell | |
456 | bmaptool copy ./images/buster/2017-01-23-rpi3-buster-frmw.img /dev/mmcblk0 |
|
458 | bmaptool copy ./images/buster/2017-01-23-rpi3-buster-frmw.img /dev/mmcblk0 | |
457 | bmaptool copy ./images/buster/2017-01-23-rpi3-buster-root.img /dev/sdc |
|
459 | bmaptool copy ./images/buster/2017-01-23-rpi3-buster-root.img /dev/sdc | |
458 | ``` |
|
460 | ``` | |
459 |
|
461 | |||
460 | ## QEMU emulation |
|
462 | ## QEMU emulation | |
461 | Start QEMU full system emulation: |
|
463 | Start QEMU full system emulation: | |
462 | ```shell |
|
464 | ```shell | |
463 | qemu-system-arm -m 2048M -M vexpress-a15 -cpu cortex-a15 -kernel kernel7.img -no-reboot -dtb vexpress-v2p-ca15_a7.dtb -sd ${IMAGE_NAME}.qcow2 -append "root=/dev/mmcblk0p2 rw rootfstype=ext4 console=tty1" |
|
465 | qemu-system-arm -m 2048M -M vexpress-a15 -cpu cortex-a15 -kernel kernel7.img -no-reboot -dtb vexpress-v2p-ca15_a7.dtb -sd ${IMAGE_NAME}.qcow2 -append "root=/dev/mmcblk0p2 rw rootfstype=ext4 console=tty1" | |
464 | ``` |
|
466 | ``` | |
465 |
|
467 | |||
466 | Start QEMU full system emulation and output to console: |
|
468 | Start QEMU full system emulation and output to console: | |
467 | ```shell |
|
469 | ```shell | |
468 | qemu-system-arm -m 2048M -M vexpress-a15 -cpu cortex-a15 -kernel kernel7.img -no-reboot -dtb vexpress-v2p-ca15_a7.dtb -sd ${IMAGE_NAME}.qcow2 -append "root=/dev/mmcblk0p2 rw rootfstype=ext4 console=ttyAMA0,115200 init=/bin/systemd" -serial stdio |
|
470 | qemu-system-arm -m 2048M -M vexpress-a15 -cpu cortex-a15 -kernel kernel7.img -no-reboot -dtb vexpress-v2p-ca15_a7.dtb -sd ${IMAGE_NAME}.qcow2 -append "root=/dev/mmcblk0p2 rw rootfstype=ext4 console=ttyAMA0,115200 init=/bin/systemd" -serial stdio | |
469 | ``` |
|
471 | ``` | |
470 |
|
472 | |||
471 | Start QEMU full system emulation with SMP and output to console: |
|
473 | Start QEMU full system emulation with SMP and output to console: | |
472 | ```shell |
|
474 | ```shell | |
473 | qemu-system-arm -m 2048M -M vexpress-a15 -cpu cortex-a15 -smp cpus=2,maxcpus=2 -kernel kernel7.img -no-reboot -dtb vexpress-v2p-ca15_a7.dtb -sd ${IMAGE_NAME}.qcow2 -append "root=/dev/mmcblk0p2 rw rootfstype=ext4 console=ttyAMA0,115200 init=/bin/systemd" -serial stdio |
|
475 | qemu-system-arm -m 2048M -M vexpress-a15 -cpu cortex-a15 -smp cpus=2,maxcpus=2 -kernel kernel7.img -no-reboot -dtb vexpress-v2p-ca15_a7.dtb -sd ${IMAGE_NAME}.qcow2 -append "root=/dev/mmcblk0p2 rw rootfstype=ext4 console=ttyAMA0,115200 init=/bin/systemd" -serial stdio | |
474 | ``` |
|
476 | ``` | |
475 |
|
477 | |||
476 | Start QEMU full system emulation with cryptfs, initramfs and output to console: |
|
478 | Start QEMU full system emulation with cryptfs, initramfs and output to console: | |
477 | ```shell |
|
479 | ```shell | |
478 | qemu-system-arm -m 2048M -M vexpress-a15 -cpu cortex-a15 -kernel kernel7.img -no-reboot -dtb vexpress-v2p-ca15_a7.dtb -sd ${IMAGE_NAME}.qcow2 -initrd "initramfs-${KERNEL_VERSION}" -append "root=/dev/mapper/secure cryptdevice=/dev/mmcblk0p2:secure rw rootfstype=ext4 console=ttyAMA0,115200 init=/bin/systemd" -serial stdio |
|
480 | qemu-system-arm -m 2048M -M vexpress-a15 -cpu cortex-a15 -kernel kernel7.img -no-reboot -dtb vexpress-v2p-ca15_a7.dtb -sd ${IMAGE_NAME}.qcow2 -initrd "initramfs-${KERNEL_VERSION}" -append "root=/dev/mapper/secure cryptdevice=/dev/mmcblk0p2:secure rw rootfstype=ext4 console=ttyAMA0,115200 init=/bin/systemd" -serial stdio | |
479 | ``` |
|
481 | ``` | |
480 |
|
482 | |||
481 | ## External links and references |
|
483 | ## External links and references | |
482 | * [Debian worldwide mirror sites](https://www.debian.org/mirror/list) |
|
484 | * [Debian worldwide mirror sites](https://www.debian.org/mirror/list) | |
483 | * [Debian Raspberry Pi 2 Wiki](https://wiki.debian.org/RaspberryPi2) |
|
485 | * [Debian Raspberry Pi 2 Wiki](https://wiki.debian.org/RaspberryPi2) | |
484 | * [Debian CrossToolchains Wiki](https://wiki.debian.org/CrossToolchains) |
|
486 | * [Debian CrossToolchains Wiki](https://wiki.debian.org/CrossToolchains) | |
485 | * [Official Raspberry Pi Firmware on github](https://github.com/raspberrypi/firmware) |
|
487 | * [Official Raspberry Pi Firmware on github](https://github.com/raspberrypi/firmware) | |
486 | * [Official Raspberry Pi Kernel on github](https://github.com/raspberrypi/linux) |
|
488 | * [Official Raspberry Pi Kernel on github](https://github.com/raspberrypi/linux) | |
487 | * [U-BOOT git repository](https://git.denx.de/?p=u-boot.git;a=summary) |
|
489 | * [U-BOOT git repository](https://git.denx.de/?p=u-boot.git;a=summary) | |
488 | * [Xorg DDX driver fbturbo](https://github.com/ssvb/xf86-video-fbturbo) |
|
490 | * [Xorg DDX driver fbturbo](https://github.com/ssvb/xf86-video-fbturbo) | |
489 | * [RPi3 Wireless interface firmware](https://github.com/RPi-Distro/firmware-nonfree/tree/master/brcm80211/brcm) |
|
491 | * [RPi3 Wireless interface firmware](https://github.com/RPi-Distro/firmware-nonfree/tree/master/brcm80211/brcm) | |
490 | * [Collabora RPi2 Kernel precompiled](https://repositories.collabora.co.uk/debian/) |
|
492 | * [Collabora RPi2 Kernel precompiled](https://repositories.collabora.co.uk/debian/) |
@@ -1,183 +1,185 | |||||
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_SPLITFS" = true ] ; then |
|
44 | if [ "$ENABLE_SPLITFS" = true ] ; then | |
45 | CMDLINE="dwc_otg.lpm_enable=0 root=/dev/sda1 rootfstype=ext4 rootflags=commit=100,data=writeback elevator=deadline rootwait console=tty1 init=/bin/systemd" |
|
45 | CMDLINE="dwc_otg.lpm_enable=0 root=/dev/sda1 rootfstype=ext4 rootflags=commit=100,data=writeback elevator=deadline rootwait console=tty1 init=/bin/systemd" | |
46 | else |
|
46 | else | |
47 | CMDLINE="dwc_otg.lpm_enable=0 root=/dev/mmcblk0p2 rootfstype=ext4 rootflags=commit=100,data=writeback elevator=deadline rootwait console=tty1 init=/bin/systemd" |
|
47 | CMDLINE="dwc_otg.lpm_enable=0 root=/dev/mmcblk0p2 rootfstype=ext4 rootflags=commit=100,data=writeback elevator=deadline rootwait console=tty1 init=/bin/systemd" | |
48 | fi |
|
48 | fi | |
49 |
|
49 | |||
50 | # Add encrypted root partition to cmdline.txt |
|
50 | # Add encrypted root partition to cmdline.txt | |
51 | if [ "$ENABLE_CRYPTFS" = true ] ; then |
|
51 | if [ "$ENABLE_CRYPTFS" = true ] ; then | |
52 | if [ "$ENABLE_SPLITFS" = true ] ; then |
|
52 | if [ "$ENABLE_SPLITFS" = true ] ; then | |
53 | CMDLINE=$(echo "${CMDLINE}" | sed "s/sda1/mapper\/${CRYPTFS_MAPPING} cryptdevice=\/dev\/sda1:${CRYPTFS_MAPPING}/") |
|
53 | CMDLINE=$(echo "${CMDLINE}" | sed "s/sda1/mapper\/${CRYPTFS_MAPPING} cryptdevice=\/dev\/sda1:${CRYPTFS_MAPPING}/") | |
54 | else |
|
54 | else | |
55 | CMDLINE=$(echo "${CMDLINE}" | sed "s/mmcblk0p2/mapper\/${CRYPTFS_MAPPING} cryptdevice=\/dev\/mmcblk0p2:${CRYPTFS_MAPPING}/") |
|
55 | CMDLINE=$(echo "${CMDLINE}" | sed "s/mmcblk0p2/mapper\/${CRYPTFS_MAPPING} cryptdevice=\/dev\/mmcblk0p2:${CRYPTFS_MAPPING}/") | |
56 | fi |
|
56 | fi | |
57 | fi |
|
57 | fi | |
58 |
|
58 | |||
59 | # Add serial console support |
|
59 | # Add serial console support | |
60 | if [ "$ENABLE_CONSOLE" = true ] ; then |
|
60 | if [ "$ENABLE_CONSOLE" = true ] ; then | |
61 | CMDLINE="${CMDLINE} console=ttyAMA0,115200 kgdboc=ttyAMA0,115200" |
|
61 | CMDLINE="${CMDLINE} console=ttyAMA0,115200 kgdboc=ttyAMA0,115200" | |
62 | fi |
|
62 | fi | |
63 |
|
63 | |||
64 | # Remove IPv6 networking support |
|
64 | # Remove IPv6 networking support | |
65 | if [ "$ENABLE_IPV6" = false ] ; then |
|
65 | if [ "$ENABLE_IPV6" = false ] ; then | |
66 | CMDLINE="${CMDLINE} ipv6.disable=1" |
|
66 | CMDLINE="${CMDLINE} ipv6.disable=1" | |
67 | fi |
|
67 | fi | |
68 |
|
68 | |||
69 | # Automatically assign predictable network interface names |
|
69 | # Automatically assign predictable network interface names | |
70 | if [ "$ENABLE_IFNAMES" = false ] ; then |
|
70 | if [ "$ENABLE_IFNAMES" = false ] ; then | |
71 | CMDLINE="${CMDLINE} net.ifnames=0" |
|
71 | CMDLINE="${CMDLINE} net.ifnames=0" | |
72 | else |
|
72 | else | |
73 | CMDLINE="${CMDLINE} net.ifnames=1" |
|
73 | CMDLINE="${CMDLINE} net.ifnames=1" | |
74 | fi |
|
74 | fi | |
75 |
|
75 | |||
76 | # Install firmware boot cmdline |
|
76 | # Install firmware boot cmdline | |
77 | echo "${CMDLINE}" > "${BOOT_DIR}/cmdline.txt" |
|
77 | echo "${CMDLINE}" > "${BOOT_DIR}/cmdline.txt" | |
78 |
|
78 | |||
79 | # Install firmware config |
|
79 | # Install firmware config | |
80 | install_readonly files/boot/config.txt "${BOOT_DIR}/config.txt" |
|
80 | install_readonly files/boot/config.txt "${BOOT_DIR}/config.txt" | |
81 |
|
81 | |||
82 | # Setup minimal GPU memory allocation size: 16MB (no X) |
|
82 | # Setup minimal GPU memory allocation size: 16MB (no X) | |
83 | if [ "$ENABLE_MINGPU" = true ] ; then |
|
83 | if [ "$ENABLE_MINGPU" = true ] ; then | |
84 | echo "gpu_mem=16" >> "${BOOT_DIR}/config.txt" |
|
84 | echo "gpu_mem=16" >> "${BOOT_DIR}/config.txt" | |
85 | fi |
|
85 | fi | |
86 |
|
86 | |||
87 | # Setup boot with initramfs |
|
87 | # Setup boot with initramfs | |
88 | if [ "$ENABLE_INITRAMFS" = true ] ; then |
|
88 | if [ "$ENABLE_INITRAMFS" = true ] ; then | |
89 | echo "initramfs initramfs-${KERNEL_VERSION} followkernel" >> "${BOOT_DIR}/config.txt" |
|
89 | echo "initramfs initramfs-${KERNEL_VERSION} followkernel" >> "${BOOT_DIR}/config.txt" | |
90 | fi |
|
90 | fi | |
91 |
|
91 | |||
92 | # Disable RPi3 Bluetooth and restore ttyAMA0 serial device |
|
92 | # Disable RPi3 Bluetooth and restore ttyAMA0 serial device | |
93 | if [ "$RPI_MODEL" = 3 ] || [ "$RPI_MODEL" = 3P ] ; then |
|
93 | if [ "$RPI_MODEL" = 3 ] || [ "$RPI_MODEL" = 3P ] ; then | |
94 | if [ "$ENABLE_CONSOLE" = true ] && [ "$ENABLE_UBOOT" = false ] ; then |
|
94 | if [ "$ENABLE_CONSOLE" = true ] && [ "$ENABLE_UBOOT" = false ] ; then | |
95 | echo "dtoverlay=pi3-disable-bt" >> "${BOOT_DIR}/config.txt" |
|
95 | echo "dtoverlay=pi3-disable-bt" >> "${BOOT_DIR}/config.txt" | |
96 | echo "enable_uart=1" >> "${BOOT_DIR}/config.txt" |
|
96 | echo "enable_uart=1" >> "${BOOT_DIR}/config.txt" | |
97 | else |
|
97 | fi | |
98 | # Create temporary directory for Bluetooth sources |
|
98 | fi | |
99 | temp_dir=$(as_nobody mktemp -d) |
|
|||
100 |
|
99 | |||
101 | # Fetch Bluetooth sources |
|
100 | if [ "$ENABLE_BLUETOOTH" = true ] ; then | |
102 | as_nobody git -C "${temp_dir}" clone "${BLUETOOTH_URL}" |
|
101 | # Create temporary directory for Bluetooth sources | |
|
102 | temp_dir=$(as_nobody mktemp -d) | |||
103 |
|
103 | |||
104 | # Copy downloaded sources |
|
104 | # Fetch Bluetooth sources | |
105 | mv "${temp_dir}/pi-bluetooth" "${R}/tmp/" |
|
105 | as_nobody git -C "${temp_dir}" clone "${BLUETOOTH_URL}" | |
106 |
|
106 | |||
107 | # Raspberry-sys-mod package for /dev/serial device needed by bluetooth service |
|
107 | # Copy downloaded sources | |
108 | as_nobody wget -q -O "${R}/tmp/pi-bluetooth/99-com.rules" https://raw.githubusercontent.com/RPi-Distro/raspberrypi-sys-mods/master/etc.armhf/udev/rules.d/99-com.rules |
|
108 | mv "${temp_dir}/pi-bluetooth" "${R}/tmp/" | |
109 | # Bluetooth firmware from arch aur https://aur.archlinux.org/packages/pi-bluetooth/ |
|
|||
110 | 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/BCM43430A1.hcd" https://aur.archlinux.org/cgit/aur.git/plain/BCM43430A1.hcd?h=pi-bluetooth |
|
|||
112 |
|
109 | |||
113 | # Set permissions |
|
110 | # Raspberry-sys-mod package for /dev/serial device needed by bluetooth service | |
114 | chown -R root:root "${R}/tmp/pi-bluetooth" |
|
111 | as_nobody wget -q -O "${R}/tmp/pi-bluetooth/99-com.rules" https://raw.githubusercontent.com/RPi-Distro/raspberrypi-sys-mods/master/etc.armhf/udev/rules.d/99-com.rules | |
|
112 | # Bluetooth firmware from arch aur https://aur.archlinux.org/packages/pi-bluetooth/ | |||
|
113 | 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 | |||
|
114 | as_nobody wget -q -O "${R}/tmp/pi-bluetooth/BCM43430A1.hcd" https://aur.archlinux.org/cgit/aur.git/plain/BCM43430A1.hcd?h=pi-bluetooth | |||
115 |
|
115 | |||
116 | # Install tools |
|
116 | # Set permissions | |
117 | install_readonly "${R}/tmp/pi-bluetooth/usr/bin/btuart" "${R}/usr/bin/btuart" |
|
117 | chown -R root:root "${R}/tmp/pi-bluetooth" | |
118 | install_readonly "${R}/tmp/pi-bluetooth/usr/bin/bthelper" "${R}/usr/bin/bthelper" |
|
|||
119 |
|
118 | |||
120 |
|
|
119 | # Install tools | |
121 | install_readonly "${R}/tmp/pi-bluetooth/lib/udev/rules.d/90-pi-bluetooth.rules" "${LIB_DIR}/udev/rules.d/90-pi-bluetooth.rules" |
|
120 | install_readonly "${R}/tmp/pi-bluetooth/usr/bin/btuart" "${R}/usr/bin/btuart" | |
|
121 | install_readonly "${R}/tmp/pi-bluetooth/usr/bin/bthelper" "${R}/usr/bin/bthelper" | |||
122 |
|
122 | |||
123 | # Install Firmware Flash file and apropiate licence |
|
123 | # Install bluetooth udev rule | |
124 | mkdir "${ETC_DIR}/firmware/" |
|
124 | install_readonly "${R}/tmp/pi-bluetooth/lib/udev/rules.d/90-pi-bluetooth.rules" "${LIB_DIR}/udev/rules.d/90-pi-bluetooth.rules" | |
125 | install_readonly "${R}/tmp/pi-bluetooth/LICENCE.broadcom_bcm43xx" "${ETC_DIR}/firmware/LICENCE.broadcom_bcm43xx" |
|
125 | ||
126 | install_readonly "${R}/tmp/pi-bluetooth/BCM43430A1.hcd" "${ETC_DIR}/firmware/LICENCE.broadcom_bcm43xx" |
|
126 | # Install Firmware Flash file and apropiate licence | |
127 | install_readonly "${R}/tmp/pi-bluetooth/debian/pi-bluetooth.bthelper@.service" "${ETC_DIR}/systemd/system/pi-bluetooth.bthelper@.service" |
|
127 | mkdir "${ETC_DIR}/firmware/" | |
128 | install_readonly "${R}/tmp/pi-bluetooth/debian/pi-bluetooth.hciuart.service" "${ETC_DIR}/systemd/system/pi-bluetooth.hciuart.service" |
|
128 | install_readonly "${R}/tmp/pi-bluetooth/LICENCE.broadcom_bcm43xx" "${ETC_DIR}/firmware/LICENCE.broadcom_bcm43xx" | |
129 | # Install udev rule for bluetooth device |
|
129 | install_readonly "${R}/tmp/pi-bluetooth/BCM43430A1.hcd" "${ETC_DIR}/firmware/LICENCE.broadcom_bcm43xx" | |
130 | install_readonly "${R}/tmp/pi-bluetooth/99-com.rules" "${ETC_DIR}/udev/rules.d/99-com.rules" |
|
130 | install_readonly "${R}/tmp/pi-bluetooth/debian/pi-bluetooth.bthelper@.service" "${ETC_DIR}/systemd/system/pi-bluetooth.bthelper@.service" | |
|
131 | install_readonly "${R}/tmp/pi-bluetooth/debian/pi-bluetooth.hciuart.service" "${ETC_DIR}/systemd/system/pi-bluetooth.hciuart.service" | |||
|
132 | # Install udev rule for bluetooth device | |||
|
133 | install_readonly "${R}/tmp/pi-bluetooth/99-com.rules" "${ETC_DIR}/udev/rules.d/99-com.rules" | |||
131 |
|
134 | |||
132 |
|
|
135 | # Remove temporary directory | |
133 |
|
|
136 | rm -fr "${temp_dir}" | |
134 | fi |
|
|||
135 | fi |
|
137 | fi | |
136 |
|
138 | |||
137 | # Create firmware configuration and cmdline symlinks |
|
139 | # Create firmware configuration and cmdline symlinks | |
138 | ln -sf firmware/config.txt "${R}/boot/config.txt" |
|
140 | ln -sf firmware/config.txt "${R}/boot/config.txt" | |
139 | ln -sf firmware/cmdline.txt "${R}/boot/cmdline.txt" |
|
141 | ln -sf firmware/cmdline.txt "${R}/boot/cmdline.txt" | |
140 |
|
142 | |||
141 | # Install and setup kernel modules to load at boot |
|
143 | # Install and setup kernel modules to load at boot | |
142 | mkdir -p "${LIB_DIR}/modules-load.d/" |
|
144 | mkdir -p "${LIB_DIR}/modules-load.d/" | |
143 | install_readonly files/modules/rpi2.conf "${LIB_DIR}/modules-load.d/rpi2.conf" |
|
145 | install_readonly files/modules/rpi2.conf "${LIB_DIR}/modules-load.d/rpi2.conf" | |
144 |
|
146 | |||
145 | # Load hardware random module at boot |
|
147 | # Load hardware random module at boot | |
146 | if [ "$ENABLE_HWRANDOM" = true ] && [ "$BUILD_KERNEL" = false ] ; then |
|
148 | if [ "$ENABLE_HWRANDOM" = true ] && [ "$BUILD_KERNEL" = false ] ; then | |
147 | sed -i "s/^# bcm2708_rng/bcm2708_rng/" "${LIB_DIR}/modules-load.d/rpi2.conf" |
|
149 | sed -i "s/^# bcm2708_rng/bcm2708_rng/" "${LIB_DIR}/modules-load.d/rpi2.conf" | |
148 | fi |
|
150 | fi | |
149 |
|
151 | |||
150 | # Load sound module at boot |
|
152 | # Load sound module at boot | |
151 | if [ "$ENABLE_SOUND" = true ] ; then |
|
153 | if [ "$ENABLE_SOUND" = true ] ; then | |
152 | sed -i "s/^# snd_bcm2835/snd_bcm2835/" "${LIB_DIR}/modules-load.d/rpi2.conf" |
|
154 | sed -i "s/^# snd_bcm2835/snd_bcm2835/" "${LIB_DIR}/modules-load.d/rpi2.conf" | |
153 | else |
|
155 | else | |
154 | echo "dtparam=audio=off" >> "${BOOT_DIR}/config.txt" |
|
156 | echo "dtparam=audio=off" >> "${BOOT_DIR}/config.txt" | |
155 | fi |
|
157 | fi | |
156 |
|
158 | |||
157 | # Enable I2C interface |
|
159 | # Enable I2C interface | |
158 | if [ "$ENABLE_I2C" = true ] ; then |
|
160 | if [ "$ENABLE_I2C" = true ] ; then | |
159 | echo "dtparam=i2c_arm=on" >> "${BOOT_DIR}/config.txt" |
|
161 | echo "dtparam=i2c_arm=on" >> "${BOOT_DIR}/config.txt" | |
160 | sed -i "s/^# i2c-bcm2708/i2c-bcm2708/" "${LIB_DIR}/modules-load.d/rpi2.conf" |
|
162 | sed -i "s/^# i2c-bcm2708/i2c-bcm2708/" "${LIB_DIR}/modules-load.d/rpi2.conf" | |
161 | sed -i "s/^# i2c-dev/i2c-dev/" "${LIB_DIR}/modules-load.d/rpi2.conf" |
|
163 | sed -i "s/^# i2c-dev/i2c-dev/" "${LIB_DIR}/modules-load.d/rpi2.conf" | |
162 | fi |
|
164 | fi | |
163 |
|
165 | |||
164 | # Enable SPI interface |
|
166 | # Enable SPI interface | |
165 | if [ "$ENABLE_SPI" = true ] ; then |
|
167 | if [ "$ENABLE_SPI" = true ] ; then | |
166 | echo "dtparam=spi=on" >> "${BOOT_DIR}/config.txt" |
|
168 | echo "dtparam=spi=on" >> "${BOOT_DIR}/config.txt" | |
167 | echo "spi-bcm2708" >> "${LIB_DIR}/modules-load.d/rpi2.conf" |
|
169 | echo "spi-bcm2708" >> "${LIB_DIR}/modules-load.d/rpi2.conf" | |
168 | if [ "$RPI_MODEL" = 3 ] || [ "$RPI_MODEL" = 3P ]; then |
|
170 | if [ "$RPI_MODEL" = 3 ] || [ "$RPI_MODEL" = 3P ]; then | |
169 | sed -i "s/spi-bcm2708/spi-bcm2835/" "${LIB_DIR}/modules-load.d/rpi2.conf" |
|
171 | sed -i "s/spi-bcm2708/spi-bcm2835/" "${LIB_DIR}/modules-load.d/rpi2.conf" | |
170 | fi |
|
172 | fi | |
171 | fi |
|
173 | fi | |
172 |
|
174 | |||
173 | # Disable RPi2/3 under-voltage warnings |
|
175 | # Disable RPi2/3 under-voltage warnings | |
174 | if [ -n "$DISABLE_UNDERVOLT_WARNINGS" ] ; then |
|
176 | if [ -n "$DISABLE_UNDERVOLT_WARNINGS" ] ; then | |
175 | echo "avoid_warnings=${DISABLE_UNDERVOLT_WARNINGS}" >> "${BOOT_DIR}/config.txt" |
|
177 | echo "avoid_warnings=${DISABLE_UNDERVOLT_WARNINGS}" >> "${BOOT_DIR}/config.txt" | |
176 | fi |
|
178 | fi | |
177 |
|
179 | |||
178 | # Install kernel modules blacklist |
|
180 | # Install kernel modules blacklist | |
179 | mkdir -p "${ETC_DIR}/modprobe.d/" |
|
181 | mkdir -p "${ETC_DIR}/modprobe.d/" | |
180 | install_readonly files/modules/raspi-blacklist.conf "${ETC_DIR}/modprobe.d/raspi-blacklist.conf" |
|
182 | install_readonly files/modules/raspi-blacklist.conf "${ETC_DIR}/modprobe.d/raspi-blacklist.conf" | |
181 |
|
183 | |||
182 | # Install sysctl.d configuration files |
|
184 | # Install sysctl.d configuration files | |
183 | install_readonly files/sysctl.d/81-rpi-vm.conf "${ETC_DIR}/sysctl.d/81-rpi-vm.conf" |
|
185 | install_readonly files/sysctl.d/81-rpi-vm.conf "${ETC_DIR}/sysctl.d/81-rpi-vm.conf" |
@@ -1,134 +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 | fi |
|
60 | fi | |
61 |
|
61 | |||
62 | # Remove empty settings from network configuration |
|
62 | # Remove empty settings from network configuration | |
63 | sed -i "/.*=\$/d" "${ETC_DIR}/systemd/network/eth.network" |
|
63 | sed -i "/.*=\$/d" "${ETC_DIR}/systemd/network/eth.network" | |
64 | # Remove empty settings from wlan configuration |
|
64 | # Remove empty settings from wlan configuration | |
65 | sed -i "/.*=\$/d" "${ETC_DIR}/systemd/network/wlan.network" |
|
65 | sed -i "/.*=\$/d" "${ETC_DIR}/systemd/network/wlan.network" | |
66 |
|
66 | |||
67 | # Move systemd network configuration if required by Debian release |
|
67 | # Move systemd network configuration if required by Debian release | |
68 | 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" | |
69 | # If WLAN is enabled copy wlan configuration too |
|
69 | # If WLAN is enabled copy wlan configuration too | |
70 | if [ "$ENABLE_WIRELESS" = true ] ; then |
|
70 | if [ "$ENABLE_WIRELESS" = true ] ; then | |
71 | 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" | |
72 | fi |
|
72 | fi | |
73 | rm -fr "${ETC_DIR}/systemd/network" |
|
73 | rm -fr "${ETC_DIR}/systemd/network" | |
74 |
|
74 | |||
75 | # Enable systemd-networkd service |
|
75 | # Enable systemd-networkd service | |
76 | chroot_exec systemctl enable systemd-networkd |
|
76 | chroot_exec systemctl enable systemd-networkd | |
77 |
|
77 | |||
78 | # Install host.conf resolver configuration |
|
78 | # Install host.conf resolver configuration | |
79 | install_readonly files/network/host.conf "${ETC_DIR}/host.conf" |
|
79 | install_readonly files/network/host.conf "${ETC_DIR}/host.conf" | |
80 |
|
80 | |||
81 | # Enable network stack hardening |
|
81 | # Enable network stack hardening | |
82 | if [ "$ENABLE_HARDNET" = true ] ; then |
|
82 | if [ "$ENABLE_HARDNET" = true ] ; then | |
83 | # Install sysctl.d configuration files |
|
83 | # Install sysctl.d configuration files | |
84 | 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" | |
85 |
|
85 | |||
86 | # Setup resolver warnings about spoofed addresses |
|
86 | # Setup resolver warnings about spoofed addresses | |
87 | sed -i "s/^# spoof warn/spoof warn/" "${ETC_DIR}/host.conf" |
|
87 | sed -i "s/^# spoof warn/spoof warn/" "${ETC_DIR}/host.conf" | |
88 | fi |
|
88 | fi | |
89 |
|
89 | |||
90 | # Enable time sync |
|
90 | # Enable time sync | |
91 | if [ "$NET_NTP_1" != "" ] ; then |
|
91 | if [ "$NET_NTP_1" != "" ] ; then | |
92 | chroot_exec systemctl enable systemd-timesyncd.service |
|
92 | chroot_exec systemctl enable systemd-timesyncd.service | |
93 | fi |
|
93 | fi | |
94 |
|
94 | |||
95 | # 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 | |
96 | if [ "$ENABLE_WIRELESS" = true ] ; then |
|
96 | if [ "$ENABLE_WIRELESS" = true ] ; then | |
97 | if [ ! -d "${WLAN_FIRMWARE_DIR}" ] ; then |
|
97 | if [ ! -d "${WLAN_FIRMWARE_DIR}" ] ; then | |
98 | mkdir -p "${WLAN_FIRMWARE_DIR}" |
|
98 | mkdir -p "${WLAN_FIRMWARE_DIR}" | |
99 | fi |
|
99 | fi | |
100 |
|
100 | |||
101 | # Create temporary directory for firmware binary blob |
|
101 | # Create temporary directory for firmware binary blob | |
102 | temp_dir=$(as_nobody mktemp -d) |
|
102 | temp_dir=$(as_nobody mktemp -d) | |
103 |
|
103 | |||
104 | # Fetch firmware binary blob for RPI3B+ |
|
104 | # Fetch firmware binary blob for RPI3B+ | |
105 | if [ "$RPI_MODEL" = 3P ] ; then |
|
105 | if [ "$RPI_MODEL" = 3P ] ; then | |
106 | # Fetch firmware binary blob for RPi3P |
|
106 | # Fetch firmware binary blob for RPi3P | |
107 | 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" | |
108 | 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" | |
109 | 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" | |
|
110 | ||||
|
111 | # Move downloaded firmware binary blob | |||
|
112 | mv "${temp_dir}/brcmfmac43455-sdio."* "${WLAN_FIRMWARE_DIR}/" | |||
|
113 | ||||
|
114 | # Set permissions of the firmware binary blob | |||
|
115 | chown root:root "${WLAN_FIRMWARE_DIR}/brcmfmac43455-sdio."* | |||
|
116 | chmod 600 "${WLAN_FIRMWARE_DIR}/brcmfmac43455-sdio."* | |||
110 | elif [ "$RPI_MODEL" = 3 ] || [ "$RPI_MODEL" = 0 ] ; then |
|
117 | elif [ "$RPI_MODEL" = 3 ] || [ "$RPI_MODEL" = 0 ] ; then | |
111 | # Fetch firmware binary blob for RPi3 |
|
118 | # Fetch firmware binary blob for RPi3 | |
112 | 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" | |
113 | 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" | |
114 | fi |
|
121 | ||
115 |
|
122 | # Move downloaded firmware binary blob | ||
116 | # Move downloaded firmware binary blob |
|
123 | mv "${temp_dir}/brcmfmac43430-sdio."* "${WLAN_FIRMWARE_DIR}/" | |
117 | if [ "$RPI_MODEL" = 3P ] ; then |
|
124 | ||
118 | mv "${temp_dir}/brcmfmac43455-sdio."* "${WLAN_FIRMWARE_DIR}/" |
|
125 | # Set permissions of the firmware binary blob | |
119 | elif [ "$RPI_MODEL" = 3 ] || [ "$RPI_MODEL" = 0 ] ; then |
|
126 | chown root:root "${WLAN_FIRMWARE_DIR}/brcmfmac43430-sdio."* | |
120 | mv "${temp_dir}/brcmfmac43430-sdio."* "${WLAN_FIRMWARE_DIR}/" |
|
127 | chmod 600 "${WLAN_FIRMWARE_DIR}/brcmfmac43430-sdio."* | |
121 | fi |
|
128 | fi | |
122 |
|
129 | |||
123 | # Remove temporary directory for firmware binary blob |
|
130 | # Remove temporary directory for firmware binary blob | |
124 | rm -fr "${temp_dir}" |
|
131 | rm -fr "${temp_dir}" | |
125 |
|
||||
126 | # Set permissions of the firmware binary blob |
|
|||
127 | if [ "$RPI_MODEL" = 3P ] ; then |
|
|||
128 | chown root:root "${WLAN_FIRMWARE_DIR}/brcmfmac43455-sdio."* |
|
|||
129 | chmod 600 "${WLAN_FIRMWARE_DIR}/brcmfmac43455-sdio."* |
|
|||
130 | elif [ "$RPI_MODEL" = 3 ] || [ "$RPI_MODEL" = 0 ] ; then |
|
|||
131 | chown root:root "${WLAN_FIRMWARE_DIR}/brcmfmac43430-sdio."* |
|
|||
132 | chmod 600 "${WLAN_FIRMWARE_DIR}/brcmfmac43430-sdio."* |
|
|||
133 | fi |
|
|||
134 | fi |
|
132 | fi |
@@ -1,789 +1,798 | |||||
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 RPi2/3 |
|
5 | # Advanced Debian "stretch" and "buster" bootstrap script for RPi2/3 | |
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# RPi2/3 Bootstrap Settings\n#\n" |
|
39 | echo -n -e "\n#\n# RPi2/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 |
|
60 | |||
61 | # Build directories |
|
61 | # Build directories | |
62 | WORKDIR=$(pwd) |
|
62 | WORKDIR=$(pwd) | |
63 | BASEDIR=${BASEDIR:=${WORKDIR}/images/${RELEASE}} |
|
63 | BASEDIR=${BASEDIR:=${WORKDIR}/images/${RELEASE}} | |
64 | BUILDDIR="${BASEDIR}/build" |
|
64 | BUILDDIR="${BASEDIR}/build" | |
65 |
|
65 | |||
66 | # Chroot directories |
|
66 | # Chroot directories | |
67 | R="${BUILDDIR}/chroot" |
|
67 | R="${BUILDDIR}/chroot" | |
68 | ETC_DIR="${R}/etc" |
|
68 | ETC_DIR="${R}/etc" | |
69 | LIB_DIR="${R}/lib" |
|
69 | LIB_DIR="${R}/lib" | |
70 | BOOT_DIR="${R}/boot/firmware" |
|
70 | BOOT_DIR="${R}/boot/firmware" | |
71 | KERNEL_DIR="${R}/usr/src/linux" |
|
71 | KERNEL_DIR="${R}/usr/src/linux" | |
72 | WLAN_FIRMWARE_DIR="${LIB_DIR}/firmware/brcm" |
|
72 | WLAN_FIRMWARE_DIR="${LIB_DIR}/firmware/brcm" | |
73 |
|
73 | |||
74 | # Firmware directory: Blank if download from github |
|
74 | # Firmware directory: Blank if download from github | |
75 | RPI_FIRMWARE_DIR=${RPI_FIRMWARE_DIR:=""} |
|
75 | RPI_FIRMWARE_DIR=${RPI_FIRMWARE_DIR:=""} | |
76 |
|
76 | |||
77 | # General settings |
|
77 | # General settings | |
78 | SET_ARCH=${SET_ARCH:=32} |
|
78 | SET_ARCH=${SET_ARCH:=32} | |
79 | HOSTNAME=${HOSTNAME:=rpi${RPI_MODEL}-${RELEASE}} |
|
79 | HOSTNAME=${HOSTNAME:=rpi${RPI_MODEL}-${RELEASE}} | |
80 | PASSWORD=${PASSWORD:=raspberry} |
|
80 | PASSWORD=${PASSWORD:=raspberry} | |
81 | USER_PASSWORD=${USER_PASSWORD:=raspberry} |
|
81 | USER_PASSWORD=${USER_PASSWORD:=raspberry} | |
82 | DEFLOCAL=${DEFLOCAL:="en_US.UTF-8"} |
|
82 | DEFLOCAL=${DEFLOCAL:="en_US.UTF-8"} | |
83 | TIMEZONE=${TIMEZONE:="Europe/Berlin"} |
|
83 | TIMEZONE=${TIMEZONE:="Europe/Berlin"} | |
84 | EXPANDROOT=${EXPANDROOT:=true} |
|
84 | EXPANDROOT=${EXPANDROOT:=true} | |
85 |
|
85 | |||
86 | # Keyboard settings |
|
86 | # Keyboard settings | |
87 | XKB_MODEL=${XKB_MODEL:=""} |
|
87 | XKB_MODEL=${XKB_MODEL:=""} | |
88 | XKB_LAYOUT=${XKB_LAYOUT:=""} |
|
88 | XKB_LAYOUT=${XKB_LAYOUT:=""} | |
89 | XKB_VARIANT=${XKB_VARIANT:=""} |
|
89 | XKB_VARIANT=${XKB_VARIANT:=""} | |
90 | XKB_OPTIONS=${XKB_OPTIONS:=""} |
|
90 | XKB_OPTIONS=${XKB_OPTIONS:=""} | |
91 |
|
91 | |||
92 | # Network settings (DHCP) |
|
92 | # Network settings (DHCP) | |
93 | ENABLE_DHCP=${ENABLE_DHCP:=true} |
|
93 | ENABLE_DHCP=${ENABLE_DHCP:=true} | |
94 |
|
94 | |||
95 | # Network settings (static) |
|
95 | # Network settings (static) | |
96 | NET_ADDRESS=${NET_ADDRESS:=""} |
|
96 | NET_ADDRESS=${NET_ADDRESS:=""} | |
97 | NET_GATEWAY=${NET_GATEWAY:=""} |
|
97 | NET_GATEWAY=${NET_GATEWAY:=""} | |
98 | NET_DNS_1=${NET_DNS_1:=""} |
|
98 | NET_DNS_1=${NET_DNS_1:=""} | |
99 | NET_DNS_2=${NET_DNS_2:=""} |
|
99 | NET_DNS_2=${NET_DNS_2:=""} | |
100 | NET_DNS_DOMAINS=${NET_DNS_DOMAINS:=""} |
|
100 | NET_DNS_DOMAINS=${NET_DNS_DOMAINS:=""} | |
101 | NET_NTP_1=${NET_NTP_1:=""} |
|
101 | NET_NTP_1=${NET_NTP_1:=""} | |
102 | NET_NTP_2=${NET_NTP_2:=""} |
|
102 | NET_NTP_2=${NET_NTP_2:=""} | |
103 |
|
103 | |||
104 | # APT settings |
|
104 | # APT settings | |
105 | APT_PROXY=${APT_PROXY:=""} |
|
105 | APT_PROXY=${APT_PROXY:=""} | |
106 | APT_SERVER=${APT_SERVER:="ftp.debian.org"} |
|
106 | APT_SERVER=${APT_SERVER:="ftp.debian.org"} | |
107 |
|
107 | |||
108 | # Feature settings |
|
108 | # Feature settings | |
|
109 | ENABLE_BLUETOOTH=${ENABLE_BLUETOOTH:=false} | |||
109 | ENABLE_CONSOLE=${ENABLE_CONSOLE:=true} |
|
110 | ENABLE_CONSOLE=${ENABLE_CONSOLE:=true} | |
110 | ENABLE_I2C=${ENABLE_I2C:=false} |
|
111 | ENABLE_I2C=${ENABLE_I2C:=false} | |
111 | ENABLE_SPI=${ENABLE_SPI:=false} |
|
112 | ENABLE_SPI=${ENABLE_SPI:=false} | |
112 | ENABLE_IPV6=${ENABLE_IPV6:=true} |
|
113 | ENABLE_IPV6=${ENABLE_IPV6:=true} | |
113 | ENABLE_SSHD=${ENABLE_SSHD:=true} |
|
114 | ENABLE_SSHD=${ENABLE_SSHD:=true} | |
114 | ENABLE_NONFREE=${ENABLE_NONFREE:=false} |
|
115 | ENABLE_NONFREE=${ENABLE_NONFREE:=false} | |
115 | ENABLE_WIRELESS=${ENABLE_WIRELESS:=false} |
|
116 | ENABLE_WIRELESS=${ENABLE_WIRELESS:=false} | |
116 | ENABLE_SOUND=${ENABLE_SOUND:=true} |
|
117 | ENABLE_SOUND=${ENABLE_SOUND:=true} | |
117 | ENABLE_DBUS=${ENABLE_DBUS:=true} |
|
118 | ENABLE_DBUS=${ENABLE_DBUS:=true} | |
118 | ENABLE_HWRANDOM=${ENABLE_HWRANDOM:=true} |
|
119 | ENABLE_HWRANDOM=${ENABLE_HWRANDOM:=true} | |
119 | ENABLE_MINGPU=${ENABLE_MINGPU:=false} |
|
120 | ENABLE_MINGPU=${ENABLE_MINGPU:=false} | |
120 | ENABLE_XORG=${ENABLE_XORG:=false} |
|
121 | ENABLE_XORG=${ENABLE_XORG:=false} | |
121 | ENABLE_WM=${ENABLE_WM:=""} |
|
122 | ENABLE_WM=${ENABLE_WM:=""} | |
122 | ENABLE_RSYSLOG=${ENABLE_RSYSLOG:=true} |
|
123 | ENABLE_RSYSLOG=${ENABLE_RSYSLOG:=true} | |
123 | ENABLE_USER=${ENABLE_USER:=true} |
|
124 | ENABLE_USER=${ENABLE_USER:=true} | |
124 | USER_NAME=${USER_NAME:="pi"} |
|
125 | USER_NAME=${USER_NAME:="pi"} | |
125 | ENABLE_ROOT=${ENABLE_ROOT:=false} |
|
126 | ENABLE_ROOT=${ENABLE_ROOT:=false} | |
126 | ENABLE_QEMU=${ENABLE_QEMU:=false} |
|
127 | ENABLE_QEMU=${ENABLE_QEMU:=false} | |
127 | ENABLE_SYSVINIT=${ENABLE_SYSVINIT:=false} |
|
128 | ENABLE_SYSVINIT=${ENABLE_SYSVINIT:=false} | |
128 |
|
129 | |||
129 | # SSH settings |
|
130 | # SSH settings | |
130 | SSH_ENABLE_ROOT=${SSH_ENABLE_ROOT:=false} |
|
131 | SSH_ENABLE_ROOT=${SSH_ENABLE_ROOT:=false} | |
131 | SSH_DISABLE_PASSWORD_AUTH=${SSH_DISABLE_PASSWORD_AUTH:=false} |
|
132 | SSH_DISABLE_PASSWORD_AUTH=${SSH_DISABLE_PASSWORD_AUTH:=false} | |
132 | SSH_LIMIT_USERS=${SSH_LIMIT_USERS:=false} |
|
133 | SSH_LIMIT_USERS=${SSH_LIMIT_USERS:=false} | |
133 | SSH_ROOT_PUB_KEY=${SSH_ROOT_PUB_KEY:=""} |
|
134 | SSH_ROOT_PUB_KEY=${SSH_ROOT_PUB_KEY:=""} | |
134 | SSH_USER_PUB_KEY=${SSH_USER_PUB_KEY:=""} |
|
135 | SSH_USER_PUB_KEY=${SSH_USER_PUB_KEY:=""} | |
135 |
|
136 | |||
136 | # Advanced settings |
|
137 | # Advanced settings | |
137 | ENABLE_MINBASE=${ENABLE_MINBASE:=false} |
|
138 | ENABLE_MINBASE=${ENABLE_MINBASE:=false} | |
138 | ENABLE_REDUCE=${ENABLE_REDUCE:=false} |
|
139 | ENABLE_REDUCE=${ENABLE_REDUCE:=false} | |
139 | ENABLE_UBOOT=${ENABLE_UBOOT:=false} |
|
140 | ENABLE_UBOOT=${ENABLE_UBOOT:=false} | |
140 | UBOOTSRC_DIR=${UBOOTSRC_DIR:=""} |
|
141 | UBOOTSRC_DIR=${UBOOTSRC_DIR:=""} | |
141 | ENABLE_FBTURBO=${ENABLE_FBTURBO:=false} |
|
142 | ENABLE_FBTURBO=${ENABLE_FBTURBO:=false} | |
142 | ENABLE_VIDEOCORE=${ENABLE_VIDEOCORE:=false} |
|
143 | ENABLE_VIDEOCORE=${ENABLE_VIDEOCORE:=false} | |
143 | VIDEOCORESRC_DIR=${VIDEOCORESRC_DIR:=""} |
|
144 | VIDEOCORESRC_DIR=${VIDEOCORESRC_DIR:=""} | |
144 | FBTURBOSRC_DIR=${FBTURBOSRC_DIR:=""} |
|
145 | FBTURBOSRC_DIR=${FBTURBOSRC_DIR:=""} | |
145 | ENABLE_HARDNET=${ENABLE_HARDNET:=false} |
|
146 | ENABLE_HARDNET=${ENABLE_HARDNET:=false} | |
146 | ENABLE_IPTABLES=${ENABLE_IPTABLES:=false} |
|
147 | ENABLE_IPTABLES=${ENABLE_IPTABLES:=false} | |
147 | ENABLE_SPLITFS=${ENABLE_SPLITFS:=false} |
|
148 | ENABLE_SPLITFS=${ENABLE_SPLITFS:=false} | |
148 | ENABLE_INITRAMFS=${ENABLE_INITRAMFS:=false} |
|
149 | ENABLE_INITRAMFS=${ENABLE_INITRAMFS:=false} | |
149 | ENABLE_IFNAMES=${ENABLE_IFNAMES:=true} |
|
150 | ENABLE_IFNAMES=${ENABLE_IFNAMES:=true} | |
150 | DISABLE_UNDERVOLT_WARNINGS=${DISABLE_UNDERVOLT_WARNINGS:=} |
|
151 | DISABLE_UNDERVOLT_WARNINGS=${DISABLE_UNDERVOLT_WARNINGS:=} | |
151 |
|
152 | |||
152 | # Kernel compilation settings |
|
153 | # Kernel compilation settings | |
153 | BUILD_KERNEL=${BUILD_KERNEL:=true} |
|
154 | BUILD_KERNEL=${BUILD_KERNEL:=true} | |
154 | KERNEL_REDUCE=${KERNEL_REDUCE:=false} |
|
155 | KERNEL_REDUCE=${KERNEL_REDUCE:=false} | |
155 | KERNEL_THREADS=${KERNEL_THREADS:=1} |
|
156 | KERNEL_THREADS=${KERNEL_THREADS:=1} | |
156 | KERNEL_HEADERS=${KERNEL_HEADERS:=true} |
|
157 | KERNEL_HEADERS=${KERNEL_HEADERS:=true} | |
157 | KERNEL_MENUCONFIG=${KERNEL_MENUCONFIG:=false} |
|
158 | KERNEL_MENUCONFIG=${KERNEL_MENUCONFIG:=false} | |
158 | KERNEL_REMOVESRC=${KERNEL_REMOVESRC:=true} |
|
159 | KERNEL_REMOVESRC=${KERNEL_REMOVESRC:=true} | |
159 | KERNEL_OLDDEFCONFIG=${KERNEL_OLDDEFCONFIG:=false} |
|
160 | KERNEL_OLDDEFCONFIG=${KERNEL_OLDDEFCONFIG:=false} | |
160 | KERNEL_CCACHE=${KERNEL_CCACHE:=false} |
|
161 | KERNEL_CCACHE=${KERNEL_CCACHE:=false} | |
161 |
|
162 | |||
162 | # Kernel compilation from source directory settings |
|
163 | # Kernel compilation from source directory settings | |
163 | KERNELSRC_DIR=${KERNELSRC_DIR:=""} |
|
164 | KERNELSRC_DIR=${KERNELSRC_DIR:=""} | |
164 | KERNELSRC_CLEAN=${KERNELSRC_CLEAN:=false} |
|
165 | KERNELSRC_CLEAN=${KERNELSRC_CLEAN:=false} | |
165 | KERNELSRC_CONFIG=${KERNELSRC_CONFIG:=true} |
|
166 | KERNELSRC_CONFIG=${KERNELSRC_CONFIG:=true} | |
166 | KERNELSRC_PREBUILT=${KERNELSRC_PREBUILT:=false} |
|
167 | KERNELSRC_PREBUILT=${KERNELSRC_PREBUILT:=false} | |
167 |
|
168 | |||
168 | # Reduce disk usage settings |
|
169 | # Reduce disk usage settings | |
169 | REDUCE_APT=${REDUCE_APT:=true} |
|
170 | REDUCE_APT=${REDUCE_APT:=true} | |
170 | REDUCE_DOC=${REDUCE_DOC:=true} |
|
171 | REDUCE_DOC=${REDUCE_DOC:=true} | |
171 | REDUCE_MAN=${REDUCE_MAN:=true} |
|
172 | REDUCE_MAN=${REDUCE_MAN:=true} | |
172 | REDUCE_VIM=${REDUCE_VIM:=false} |
|
173 | REDUCE_VIM=${REDUCE_VIM:=false} | |
173 | REDUCE_BASH=${REDUCE_BASH:=false} |
|
174 | REDUCE_BASH=${REDUCE_BASH:=false} | |
174 | REDUCE_HWDB=${REDUCE_HWDB:=true} |
|
175 | REDUCE_HWDB=${REDUCE_HWDB:=true} | |
175 | REDUCE_SSHD=${REDUCE_SSHD:=true} |
|
176 | REDUCE_SSHD=${REDUCE_SSHD:=true} | |
176 | REDUCE_LOCALE=${REDUCE_LOCALE:=true} |
|
177 | REDUCE_LOCALE=${REDUCE_LOCALE:=true} | |
177 |
|
178 | |||
178 | # Encrypted filesystem settings |
|
179 | # Encrypted filesystem settings | |
179 | ENABLE_CRYPTFS=${ENABLE_CRYPTFS:=false} |
|
180 | ENABLE_CRYPTFS=${ENABLE_CRYPTFS:=false} | |
180 | CRYPTFS_PASSWORD=${CRYPTFS_PASSWORD:=""} |
|
181 | CRYPTFS_PASSWORD=${CRYPTFS_PASSWORD:=""} | |
181 | CRYPTFS_MAPPING=${CRYPTFS_MAPPING:="secure"} |
|
182 | CRYPTFS_MAPPING=${CRYPTFS_MAPPING:="secure"} | |
182 | CRYPTFS_CIPHER=${CRYPTFS_CIPHER:="aes-xts-plain64:sha512"} |
|
183 | CRYPTFS_CIPHER=${CRYPTFS_CIPHER:="aes-xts-plain64:sha512"} | |
183 | CRYPTFS_XTSKEYSIZE=${CRYPTFS_XTSKEYSIZE:=512} |
|
184 | CRYPTFS_XTSKEYSIZE=${CRYPTFS_XTSKEYSIZE:=512} | |
184 |
|
185 | |||
185 | # Chroot scripts directory |
|
186 | # Chroot scripts directory | |
186 | CHROOT_SCRIPTS=${CHROOT_SCRIPTS:=""} |
|
187 | CHROOT_SCRIPTS=${CHROOT_SCRIPTS:=""} | |
187 |
|
188 | |||
188 | # Packages required in the chroot build environment |
|
189 | # Packages required in the chroot build environment | |
189 | APT_INCLUDES=${APT_INCLUDES:=""} |
|
190 | APT_INCLUDES=${APT_INCLUDES:=""} | |
190 | 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" |
|
191 | 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" | |
191 |
|
192 | |||
192 | # Packages to exclude from chroot build environment |
|
193 | # Packages to exclude from chroot build environment | |
193 | APT_EXCLUDES=${APT_EXCLUDES:=""} |
|
194 | APT_EXCLUDES=${APT_EXCLUDES:=""} | |
194 |
|
195 | |||
195 | # Packages required for bootstrapping |
|
196 | # Packages required for bootstrapping | |
196 | REQUIRED_PACKAGES="debootstrap debian-archive-keyring qemu-user-static binfmt-support dosfstools rsync bmap-tools whois git bc psmisc dbus sudo" |
|
197 | REQUIRED_PACKAGES="debootstrap debian-archive-keyring qemu-user-static binfmt-support dosfstools rsync bmap-tools whois git bc psmisc dbus sudo" | |
197 | MISSING_PACKAGES="" |
|
198 | MISSING_PACKAGES="" | |
198 |
|
199 | |||
199 | # Packages installed for c/c++ build environment in chroot (keep empty) |
|
200 | # Packages installed for c/c++ build environment in chroot (keep empty) | |
200 | COMPILER_PACKAGES="" |
|
201 | COMPILER_PACKAGES="" | |
201 |
|
202 | |||
202 | set +x |
|
203 | set +x | |
203 |
|
204 | |||
204 | #Check if apt-cacher-ng has port 3142 open and set APT_PROXY |
|
205 | #Check if apt-cacher-ng has port 3142 open and set APT_PROXY | |
205 | APT_CACHER_RUNNING=$(lsof -i :3142 | grep apt-cacher-ng | cut -d ' ' -f3 | uniq) |
|
206 | APT_CACHER_RUNNING=$(lsof -i :3142 | grep apt-cacher-ng | cut -d ' ' -f3 | uniq) | |
206 | if [ -n ${APT_CACHER_RUNNING} ] ; then |
|
207 | if [ -n ${APT_CACHER_RUNNING} ] ; then | |
207 | APT_PROXY=http://127.0.0.1:3142/ |
|
208 | APT_PROXY=http://127.0.0.1:3142/ | |
208 | fi |
|
209 | fi | |
209 |
|
210 | |||
210 | # Setup architecture specific settings |
|
211 | # Setup architecture specific settings | |
211 | if [ -n "$SET_ARCH" ] ; then |
|
212 | if [ -n "$SET_ARCH" ] ; then | |
212 | # 64 bit configuration |
|
213 | # 64 bit configuration | |
213 | if [ "$SET_ARCH" = 64 ] ; then |
|
214 | if [ "$SET_ARCH" = 64 ] ; then | |
214 | # General 64 bit depended settings |
|
215 | # General 64 bit depended settings | |
215 | QEMU_BINARY=${QEMU_BINARY:=/usr/bin/qemu-aarch64-static} |
|
216 | QEMU_BINARY=${QEMU_BINARY:=/usr/bin/qemu-aarch64-static} | |
216 | KERNEL_ARCH=${KERNEL_ARCH:=arm64} |
|
217 | KERNEL_ARCH=${KERNEL_ARCH:=arm64} | |
217 | KERNEL_BIN_IMAGE=${KERNEL_BIN_IMAGE:="Image"} |
|
218 | KERNEL_BIN_IMAGE=${KERNEL_BIN_IMAGE:="Image"} | |
218 |
|
219 | |||
219 | # Board specific settings |
|
220 | # Board specific settings | |
220 | if [ "$RPI_MODEL" = 3 ] || [ "$RPI_MODEL" = 3P ] ; then |
|
221 | if [ "$RPI_MODEL" = 3 ] || [ "$RPI_MODEL" = 3P ] ; then | |
221 | REQUIRED_PACKAGES="${REQUIRED_PACKAGES} crossbuild-essential-arm64" |
|
222 | REQUIRED_PACKAGES="${REQUIRED_PACKAGES} crossbuild-essential-arm64" | |
222 | KERNEL_DEFCONFIG=${KERNEL_DEFCONFIG:=bcmrpi3_defconfig} |
|
223 | KERNEL_DEFCONFIG=${KERNEL_DEFCONFIG:=bcmrpi3_defconfig} | |
223 | RELEASE_ARCH=${RELEASE_ARCH:=arm64} |
|
224 | RELEASE_ARCH=${RELEASE_ARCH:=arm64} | |
224 | KERNEL_IMAGE=${KERNEL_IMAGE:=kernel8.img} |
|
225 | KERNEL_IMAGE=${KERNEL_IMAGE:=kernel8.img} | |
225 | CROSS_COMPILE=${CROSS_COMPILE:=aarch64-linux-gnu-} |
|
226 | CROSS_COMPILE=${CROSS_COMPILE:=aarch64-linux-gnu-} | |
226 | else |
|
227 | else | |
227 | echo "error: Only Raspberry PI 3 and 3B+ support 64 bit" |
|
228 | echo "error: Only Raspberry PI 3 and 3B+ support 64 bit" | |
228 | exit 1 |
|
229 | exit 1 | |
229 | fi |
|
230 | fi | |
230 | fi |
|
231 | fi | |
231 |
|
232 | |||
232 | # 32 bit configuration |
|
233 | # 32 bit configuration | |
233 | if [ "$SET_ARCH" = 32 ] ; then |
|
234 | if [ "$SET_ARCH" = 32 ] ; then | |
234 | # General 32 bit dependend settings |
|
235 | # General 32 bit dependend settings | |
235 | QEMU_BINARY=${QEMU_BINARY:=/usr/bin/qemu-arm-static} |
|
236 | QEMU_BINARY=${QEMU_BINARY:=/usr/bin/qemu-arm-static} | |
236 | KERNEL_ARCH=${KERNEL_ARCH:=arm} |
|
237 | KERNEL_ARCH=${KERNEL_ARCH:=arm} | |
237 | KERNEL_BIN_IMAGE=${KERNEL_BIN_IMAGE:="zImage"} |
|
238 | KERNEL_BIN_IMAGE=${KERNEL_BIN_IMAGE:="zImage"} | |
238 |
|
239 | |||
239 | # Hardware specific settings |
|
240 | # Hardware specific settings | |
240 | if [ "$RPI_MODEL" = 0 ] || [ "$RPI_MODEL" = 1 ] || [ "$RPI_MODEL" = 1P ] ; then |
|
241 | if [ "$RPI_MODEL" = 0 ] || [ "$RPI_MODEL" = 1 ] || [ "$RPI_MODEL" = 1P ] ; then | |
241 | REQUIRED_PACKAGES="${REQUIRED_PACKAGES} crossbuild-essential-armel" |
|
242 | REQUIRED_PACKAGES="${REQUIRED_PACKAGES} crossbuild-essential-armel" | |
242 | KERNEL_DEFCONFIG=${KERNEL_DEFCONFIG:=bcmrpi_defconfig} |
|
243 | KERNEL_DEFCONFIG=${KERNEL_DEFCONFIG:=bcmrpi_defconfig} | |
243 | RELEASE_ARCH=${RELEASE_ARCH:=armel} |
|
244 | RELEASE_ARCH=${RELEASE_ARCH:=armel} | |
244 | KERNEL_IMAGE=${KERNEL_IMAGE:=kernel.img} |
|
245 | KERNEL_IMAGE=${KERNEL_IMAGE:=kernel.img} | |
245 | CROSS_COMPILE=${CROSS_COMPILE:=arm-linux-gnueabi-} |
|
246 | CROSS_COMPILE=${CROSS_COMPILE:=arm-linux-gnueabi-} | |
246 | fi |
|
247 | fi | |
247 |
|
248 | |||
248 | # Hardware specific settings |
|
249 | # Hardware specific settings | |
249 | if [ "$RPI_MODEL" = 2 ] || [ "$RPI_MODEL" = 3 ] || [ "$RPI_MODEL" = 3P ] ; then |
|
250 | if [ "$RPI_MODEL" = 2 ] || [ "$RPI_MODEL" = 3 ] || [ "$RPI_MODEL" = 3P ] ; then | |
250 | REQUIRED_PACKAGES="${REQUIRED_PACKAGES} crossbuild-essential-armhf" |
|
251 | REQUIRED_PACKAGES="${REQUIRED_PACKAGES} crossbuild-essential-armhf" | |
251 | KERNEL_DEFCONFIG=${KERNEL_DEFCONFIG:=bcm2709_defconfig} |
|
252 | KERNEL_DEFCONFIG=${KERNEL_DEFCONFIG:=bcm2709_defconfig} | |
252 | RELEASE_ARCH=${RELEASE_ARCH:=armhf} |
|
253 | RELEASE_ARCH=${RELEASE_ARCH:=armhf} | |
253 | KERNEL_IMAGE=${KERNEL_IMAGE:=kernel7.img} |
|
254 | KERNEL_IMAGE=${KERNEL_IMAGE:=kernel7.img} | |
254 | CROSS_COMPILE=${CROSS_COMPILE:=arm-linux-gnueabihf-} |
|
255 | CROSS_COMPILE=${CROSS_COMPILE:=arm-linux-gnueabihf-} | |
255 | fi |
|
256 | fi | |
256 | fi |
|
257 | fi | |
257 | #SET_ARCH not set |
|
258 | #SET_ARCH not set | |
258 | else |
|
259 | else | |
259 | echo "error: Please set '32' or '64' as value for SET_ARCH" |
|
260 | echo "error: Please set '32' or '64' as value for SET_ARCH" | |
260 | exit 1 |
|
261 | exit 1 | |
261 | fi |
|
262 | fi | |
262 | # Device specific configuration and U-Boot configuration |
|
263 | # Device specific configuration and U-Boot configuration | |
263 | case "$RPI_MODEL" in |
|
264 | case "$RPI_MODEL" in | |
264 | 0) |
|
265 | 0) | |
265 | DTB_FILE=${DTB_FILE:=bcm2708-rpi-0-w.dtb} |
|
266 | DTB_FILE=${DTB_FILE:=bcm2708-rpi-0-w.dtb} | |
266 | UBOOT_CONFIG=${UBOOT_CONFIG:=rpi_defconfig} |
|
267 | UBOOT_CONFIG=${UBOOT_CONFIG:=rpi_defconfig} | |
267 | ;; |
|
268 | ;; | |
268 | 1) |
|
269 | 1) | |
269 | DTB_FILE=${DTB_FILE:=bcm2708-rpi-b.dtb} |
|
270 | DTB_FILE=${DTB_FILE:=bcm2708-rpi-b.dtb} | |
270 | UBOOT_CONFIG=${UBOOT_CONFIG:=rpi_defconfig} |
|
271 | UBOOT_CONFIG=${UBOOT_CONFIG:=rpi_defconfig} | |
271 | ;; |
|
272 | ;; | |
272 | 1P) |
|
273 | 1P) | |
273 | DTB_FILE=${DTB_FILE:=bcm2708-rpi-b-plus.dtb} |
|
274 | DTB_FILE=${DTB_FILE:=bcm2708-rpi-b-plus.dtb} | |
274 | UBOOT_CONFIG=${UBOOT_CONFIG:=rpi_defconfig} |
|
275 | UBOOT_CONFIG=${UBOOT_CONFIG:=rpi_defconfig} | |
275 | ;; |
|
276 | ;; | |
276 | 2) |
|
277 | 2) | |
277 | DTB_FILE=${DTB_FILE:=bcm2709-rpi-2-b.dtb} |
|
278 | DTB_FILE=${DTB_FILE:=bcm2709-rpi-2-b.dtb} | |
278 | UBOOT_CONFIG=${UBOOT_CONFIG:=rpi_2_defconfig} |
|
279 | UBOOT_CONFIG=${UBOOT_CONFIG:=rpi_2_defconfig} | |
279 | ;; |
|
280 | ;; | |
280 | 3) |
|
281 | 3) | |
281 | DTB_FILE=${DTB_FILE:=bcm2710-rpi-3-b.dtb} |
|
282 | DTB_FILE=${DTB_FILE:=bcm2710-rpi-3-b.dtb} | |
282 | UBOOT_CONFIG=${UBOOT_CONFIG:=rpi_3_defconfig} |
|
283 | UBOOT_CONFIG=${UBOOT_CONFIG:=rpi_3_defconfig} | |
283 | ;; |
|
284 | ;; | |
284 | 3P) |
|
285 | 3P) | |
285 | DTB_FILE=${DTB_FILE:=bcm2710-rpi-3-b.dtb} |
|
286 | DTB_FILE=${DTB_FILE:=bcm2710-rpi-3-b.dtb} | |
286 | UBOOT_CONFIG=${UBOOT_CONFIG:=rpi_3_defconfig} |
|
287 | UBOOT_CONFIG=${UBOOT_CONFIG:=rpi_3_defconfig} | |
287 | ;; |
|
288 | ;; | |
288 | *) |
|
289 | *) | |
289 | echo "error: Raspberry Pi model $RPI_MODEL is not supported!" |
|
290 | echo "error: Raspberry Pi model $RPI_MODEL is not supported!" | |
290 | exit 1 |
|
291 | exit 1 | |
291 | ;; |
|
292 | ;; | |
292 | esac |
|
293 | esac | |
293 |
|
294 | |||
294 | # Prepare date string for default image file name |
|
295 | # Prepare date string for default image file name | |
295 | DATE="$(date +%Y-%m-%d)" |
|
296 | DATE="$(date +%Y-%m-%d)" | |
296 | if [ -z "$KERNEL_BRANCH" ] ; then |
|
297 | if [ -z "$KERNEL_BRANCH" ] ; then | |
297 | IMAGE_NAME=${IMAGE_NAME:=${BASEDIR}/${DATE}-${KERNEL_ARCH}-CURRENT-rpi${RPI_MODEL}-${RELEASE}-${RELEASE_ARCH}} |
|
298 | IMAGE_NAME=${IMAGE_NAME:=${BASEDIR}/${DATE}-${KERNEL_ARCH}-CURRENT-rpi${RPI_MODEL}-${RELEASE}-${RELEASE_ARCH}} | |
298 | else |
|
299 | else | |
299 | IMAGE_NAME=${IMAGE_NAME:=${BASEDIR}/${DATE}-${KERNEL_ARCH}-${KERNEL_BRANCH}-rpi${RPI_MODEL}-${RELEASE}-${RELEASE_ARCH}} |
|
300 | IMAGE_NAME=${IMAGE_NAME:=${BASEDIR}/${DATE}-${KERNEL_ARCH}-${KERNEL_BRANCH}-rpi${RPI_MODEL}-${RELEASE}-${RELEASE_ARCH}} | |
300 | fi |
|
301 | fi | |
301 |
|
302 | |||
302 | # Check if the internal wireless interface is supported by the RPi model |
|
303 | # Check if the internal wireless interface is supported by the RPi model | |
303 | if [ "$ENABLE_WIRELESS" = true ] ; then |
|
304 | if [ "$ENABLE_WIRELESS" = true ] ; then | |
304 | if [ "$RPI_MODEL" = 1 ] || [ "$RPI_MODEL" = 1P ] || [ "$RPI_MODEL" = 2 ] ; then |
|
305 | if [ "$RPI_MODEL" = 1 ] || [ "$RPI_MODEL" = 1P ] || [ "$RPI_MODEL" = 2 ] ; then | |
305 | echo "error: The selected Raspberry Pi model has no internal wireless interface" |
|
306 | echo "error: The selected Raspberry Pi model has no internal wireless interface" | |
306 | exit 1 |
|
307 | exit 1 | |
307 | fi |
|
308 | fi | |
308 | fi |
|
309 | fi | |
309 |
|
310 | |||
310 | # Check if DISABLE_UNDERVOLT_WARNINGS parameter value is supported |
|
311 | # Check if DISABLE_UNDERVOLT_WARNINGS parameter value is supported | |
311 | if [ -n "$DISABLE_UNDERVOLT_WARNINGS" ] ; then |
|
312 | if [ -n "$DISABLE_UNDERVOLT_WARNINGS" ] ; then | |
312 | if [ "$DISABLE_UNDERVOLT_WARNINGS" != 1 ] && [ "$DISABLE_UNDERVOLT_WARNINGS" != 2 ] ; then |
|
313 | if [ "$DISABLE_UNDERVOLT_WARNINGS" != 1 ] && [ "$DISABLE_UNDERVOLT_WARNINGS" != 2 ] ; then | |
313 | echo "error: DISABLE_UNDERVOLT_WARNINGS=${DISABLE_UNDERVOLT_WARNINGS} is not supported" |
|
314 | echo "error: DISABLE_UNDERVOLT_WARNINGS=${DISABLE_UNDERVOLT_WARNINGS} is not supported" | |
314 | exit 1 |
|
315 | exit 1 | |
315 | fi |
|
316 | fi | |
316 | fi |
|
317 | fi | |
317 |
|
318 | |||
318 | # Add cmake to compile videocore sources |
|
319 | # Add cmake to compile videocore sources | |
319 | if [ "$ENABLE_VIDEOCORE" = true ] ; then |
|
320 | if [ "$ENABLE_VIDEOCORE" = true ] ; then | |
320 | REQUIRED_PACKAGES="${REQUIRED_PACKAGES} cmake" |
|
321 | REQUIRED_PACKAGES="${REQUIRED_PACKAGES} cmake" | |
321 | fi |
|
322 | fi | |
322 |
|
323 | |||
323 | # Add libncurses5 to enable kernel menuconfig |
|
324 | # Add libncurses5 to enable kernel menuconfig | |
324 | if [ "$KERNEL_MENUCONFIG" = true ] ; then |
|
325 | if [ "$KERNEL_MENUCONFIG" = true ] ; then | |
325 | REQUIRED_PACKAGES="${REQUIRED_PACKAGES} libncurses-dev" |
|
326 | REQUIRED_PACKAGES="${REQUIRED_PACKAGES} libncurses-dev" | |
326 | fi |
|
327 | fi | |
327 |
|
328 | |||
328 | # Add ccache compiler cache for (faster) kernel cross (re)compilation |
|
329 | # Add ccache compiler cache for (faster) kernel cross (re)compilation | |
329 | if [ "$KERNEL_CCACHE" = true ] ; then |
|
330 | if [ "$KERNEL_CCACHE" = true ] ; then | |
330 | REQUIRED_PACKAGES="${REQUIRED_PACKAGES} ccache" |
|
331 | REQUIRED_PACKAGES="${REQUIRED_PACKAGES} ccache" | |
331 | fi |
|
332 | fi | |
332 |
|
333 | |||
333 | # Add cryptsetup package to enable filesystem encryption |
|
334 | # Add cryptsetup package to enable filesystem encryption | |
334 | if [ "$ENABLE_CRYPTFS" = true ] && [ "$BUILD_KERNEL" = true ] ; then |
|
335 | if [ "$ENABLE_CRYPTFS" = true ] && [ "$BUILD_KERNEL" = true ] ; then | |
335 | REQUIRED_PACKAGES="${REQUIRED_PACKAGES} cryptsetup" |
|
336 | REQUIRED_PACKAGES="${REQUIRED_PACKAGES} cryptsetup" | |
336 | APT_INCLUDES="${APT_INCLUDES},cryptsetup,busybox,console-setup" |
|
337 | APT_INCLUDES="${APT_INCLUDES},cryptsetup,busybox,console-setup" | |
337 |
|
338 | |||
338 | if [ -z "$CRYPTFS_PASSWORD" ] ; then |
|
339 | if [ -z "$CRYPTFS_PASSWORD" ] ; then | |
339 | echo "error: no password defined (CRYPTFS_PASSWORD)!" |
|
340 | echo "error: no password defined (CRYPTFS_PASSWORD)!" | |
340 | exit 1 |
|
341 | exit 1 | |
341 | fi |
|
342 | fi | |
342 | ENABLE_INITRAMFS=true |
|
343 | ENABLE_INITRAMFS=true | |
343 | fi |
|
344 | fi | |
344 |
|
345 | |||
345 | # Add initramfs generation tools |
|
346 | # Add initramfs generation tools | |
346 | if [ "$ENABLE_INITRAMFS" = true ] && [ "$BUILD_KERNEL" = true ] ; then |
|
347 | if [ "$ENABLE_INITRAMFS" = true ] && [ "$BUILD_KERNEL" = true ] ; then | |
347 | APT_INCLUDES="${APT_INCLUDES},initramfs-tools" |
|
348 | APT_INCLUDES="${APT_INCLUDES},initramfs-tools" | |
348 | fi |
|
349 | fi | |
349 |
|
350 | |||
350 | # Add device-tree-compiler required for building the U-Boot bootloader |
|
351 | # Add device-tree-compiler required for building the U-Boot bootloader | |
351 | if [ "$ENABLE_UBOOT" = true ] ; then |
|
352 | if [ "$ENABLE_UBOOT" = true ] ; then | |
352 | APT_INCLUDES="${APT_INCLUDES},device-tree-compiler,bison,flex,bc" |
|
353 | APT_INCLUDES="${APT_INCLUDES},device-tree-compiler,bison,flex,bc" | |
353 | fi |
|
354 | fi | |
354 |
|
355 | |||
|
356 | if [ "$ENABLE_BLUETOOTH" = true ] ; then | |||
|
357 | if [ "$RPI_MODEL" = 0 ] || [ "$RPI_MODEL" = 3 ] || [ "$RPI_MODEL" = 3P ] ; then | |||
|
358 | if [ "$ENABLE_CONSOLE" = false ] ; then | |||
|
359 | APT_INCLUDES="${APT_INCLUDES},bluetooth,bluez" | |||
|
360 | fi | |||
|
361 | fi | |||
|
362 | fi | |||
|
363 | ||||
355 | # Check if root SSH (v2) public key file exists |
|
364 | # Check if root SSH (v2) public key file exists | |
356 | if [ -n "$SSH_ROOT_PUB_KEY" ] ; then |
|
365 | if [ -n "$SSH_ROOT_PUB_KEY" ] ; then | |
357 | if [ ! -f "$SSH_ROOT_PUB_KEY" ] ; then |
|
366 | if [ ! -f "$SSH_ROOT_PUB_KEY" ] ; then | |
358 | echo "error: '$SSH_ROOT_PUB_KEY' specified SSH public key file not found (SSH_ROOT_PUB_KEY)!" |
|
367 | echo "error: '$SSH_ROOT_PUB_KEY' specified SSH public key file not found (SSH_ROOT_PUB_KEY)!" | |
359 | exit 1 |
|
368 | exit 1 | |
360 | fi |
|
369 | fi | |
361 | fi |
|
370 | fi | |
362 |
|
371 | |||
363 | # Check if $USER_NAME SSH (v2) public key file exists |
|
372 | # Check if $USER_NAME SSH (v2) public key file exists | |
364 | if [ -n "$SSH_USER_PUB_KEY" ] ; then |
|
373 | if [ -n "$SSH_USER_PUB_KEY" ] ; then | |
365 | if [ ! -f "$SSH_USER_PUB_KEY" ] ; then |
|
374 | if [ ! -f "$SSH_USER_PUB_KEY" ] ; then | |
366 | echo "error: '$SSH_USER_PUB_KEY' specified SSH public key file not found (SSH_USER_PUB_KEY)!" |
|
375 | echo "error: '$SSH_USER_PUB_KEY' specified SSH public key file not found (SSH_USER_PUB_KEY)!" | |
367 | exit 1 |
|
376 | exit 1 | |
368 | fi |
|
377 | fi | |
369 | fi |
|
378 | fi | |
370 |
|
379 | |||
371 | # Check if all required packages are installed on the build system |
|
380 | # Check if all required packages are installed on the build system | |
372 | for package in $REQUIRED_PACKAGES ; do |
|
381 | for package in $REQUIRED_PACKAGES ; do | |
373 | if [ "$(dpkg-query -W -f='${Status}' "$package")" != "install ok installed" ] ; then |
|
382 | if [ "$(dpkg-query -W -f='${Status}' "$package")" != "install ok installed" ] ; then | |
374 | MISSING_PACKAGES="${MISSING_PACKAGES} $package" |
|
383 | MISSING_PACKAGES="${MISSING_PACKAGES} $package" | |
375 | fi |
|
384 | fi | |
376 | done |
|
385 | done | |
377 |
|
386 | |||
378 | # If there are missing packages ask confirmation for install, or exit |
|
387 | # If there are missing packages ask confirmation for install, or exit | |
379 | if [ -n "$MISSING_PACKAGES" ] ; then |
|
388 | if [ -n "$MISSING_PACKAGES" ] ; then | |
380 | echo "the following packages needed by this script are not installed:" |
|
389 | echo "the following packages needed by this script are not installed:" | |
381 | echo "$MISSING_PACKAGES" |
|
390 | echo "$MISSING_PACKAGES" | |
382 |
|
391 | |||
383 | printf "\ndo you want to install the missing packages right now? [y/n] " |
|
392 | printf "\ndo you want to install the missing packages right now? [y/n] " | |
384 | read -r confirm |
|
393 | read -r confirm | |
385 | [ "$confirm" != "y" ] && exit 1 |
|
394 | [ "$confirm" != "y" ] && exit 1 | |
386 |
|
395 | |||
387 | # Make sure all missing required packages are installed |
|
396 | # Make sure all missing required packages are installed | |
388 | apt-get -qq -y install "${MISSING_PACKAGES}" |
|
397 | apt-get -qq -y install "${MISSING_PACKAGES}" | |
389 | fi |
|
398 | fi | |
390 |
|
399 | |||
391 | # Check if ./bootstrap.d directory exists |
|
400 | # Check if ./bootstrap.d directory exists | |
392 | if [ ! -d "./bootstrap.d/" ] ; then |
|
401 | if [ ! -d "./bootstrap.d/" ] ; then | |
393 | echo "error: './bootstrap.d' required directory not found!" |
|
402 | echo "error: './bootstrap.d' required directory not found!" | |
394 | exit 1 |
|
403 | exit 1 | |
395 | fi |
|
404 | fi | |
396 |
|
405 | |||
397 | # Check if ./files directory exists |
|
406 | # Check if ./files directory exists | |
398 | if [ ! -d "./files/" ] ; then |
|
407 | if [ ! -d "./files/" ] ; then | |
399 | echo "error: './files' required directory not found!" |
|
408 | echo "error: './files' required directory not found!" | |
400 | exit 1 |
|
409 | exit 1 | |
401 | fi |
|
410 | fi | |
402 |
|
411 | |||
403 | # Check if specified KERNELSRC_DIR directory exists |
|
412 | # Check if specified KERNELSRC_DIR directory exists | |
404 | if [ -n "$KERNELSRC_DIR" ] && [ ! -d "$KERNELSRC_DIR" ] ; then |
|
413 | if [ -n "$KERNELSRC_DIR" ] && [ ! -d "$KERNELSRC_DIR" ] ; then | |
405 | echo "error: '${KERNELSRC_DIR}' specified directory not found (KERNELSRC_DIR)!" |
|
414 | echo "error: '${KERNELSRC_DIR}' specified directory not found (KERNELSRC_DIR)!" | |
406 | exit 1 |
|
415 | exit 1 | |
407 | fi |
|
416 | fi | |
408 |
|
417 | |||
409 | # Check if specified UBOOTSRC_DIR directory exists |
|
418 | # Check if specified UBOOTSRC_DIR directory exists | |
410 | if [ -n "$UBOOTSRC_DIR" ] && [ ! -d "$UBOOTSRC_DIR" ] ; then |
|
419 | if [ -n "$UBOOTSRC_DIR" ] && [ ! -d "$UBOOTSRC_DIR" ] ; then | |
411 | echo "error: '${UBOOTSRC_DIR}' specified directory not found (UBOOTSRC_DIR)!" |
|
420 | echo "error: '${UBOOTSRC_DIR}' specified directory not found (UBOOTSRC_DIR)!" | |
412 | exit 1 |
|
421 | exit 1 | |
413 | fi |
|
422 | fi | |
414 |
|
423 | |||
415 | # Check if specified VIDEOCORESRC_DIR directory exists |
|
424 | # Check if specified VIDEOCORESRC_DIR directory exists | |
416 | if [ -n "$VIDEOCORESRC_DIR" ] && [ ! -d "$VIDEOCORESRC_DIR" ] ; then |
|
425 | if [ -n "$VIDEOCORESRC_DIR" ] && [ ! -d "$VIDEOCORESRC_DIR" ] ; then | |
417 | echo "error: '${VIDEOCORESRC_DIR}' specified directory not found (VIDEOCORESRC_DIR)!" |
|
426 | echo "error: '${VIDEOCORESRC_DIR}' specified directory not found (VIDEOCORESRC_DIR)!" | |
418 | exit 1 |
|
427 | exit 1 | |
419 | fi |
|
428 | fi | |
420 |
|
429 | |||
421 | # Check if specified FBTURBOSRC_DIR directory exists |
|
430 | # Check if specified FBTURBOSRC_DIR directory exists | |
422 | if [ -n "$FBTURBOSRC_DIR" ] && [ ! -d "$FBTURBOSRC_DIR" ] ; then |
|
431 | if [ -n "$FBTURBOSRC_DIR" ] && [ ! -d "$FBTURBOSRC_DIR" ] ; then | |
423 | echo "error: '${FBTURBOSRC_DIR}' specified directory not found (FBTURBOSRC_DIR)!" |
|
432 | echo "error: '${FBTURBOSRC_DIR}' specified directory not found (FBTURBOSRC_DIR)!" | |
424 | exit 1 |
|
433 | exit 1 | |
425 | fi |
|
434 | fi | |
426 |
|
435 | |||
427 | # Check if specified CHROOT_SCRIPTS directory exists |
|
436 | # Check if specified CHROOT_SCRIPTS directory exists | |
428 | if [ -n "$CHROOT_SCRIPTS" ] && [ ! -d "$CHROOT_SCRIPTS" ] ; then |
|
437 | if [ -n "$CHROOT_SCRIPTS" ] && [ ! -d "$CHROOT_SCRIPTS" ] ; then | |
429 | echo "error: ${CHROOT_SCRIPTS} specified directory not found (CHROOT_SCRIPTS)!" |
|
438 | echo "error: ${CHROOT_SCRIPTS} specified directory not found (CHROOT_SCRIPTS)!" | |
430 | exit 1 |
|
439 | exit 1 | |
431 | fi |
|
440 | fi | |
432 |
|
441 | |||
433 | # Check if specified device mapping already exists (will be used by cryptsetup) |
|
442 | # Check if specified device mapping already exists (will be used by cryptsetup) | |
434 | if [ -r "/dev/mapping/${CRYPTFS_MAPPING}" ] ; then |
|
443 | if [ -r "/dev/mapping/${CRYPTFS_MAPPING}" ] ; then | |
435 | echo "error: mapping /dev/mapping/${CRYPTFS_MAPPING} already exists, not proceeding" |
|
444 | echo "error: mapping /dev/mapping/${CRYPTFS_MAPPING} already exists, not proceeding" | |
436 | exit 1 |
|
445 | exit 1 | |
437 | fi |
|
446 | fi | |
438 |
|
447 | |||
439 | # Don't clobber an old build |
|
448 | # Don't clobber an old build | |
440 | if [ -e "$BUILDDIR" ] ; then |
|
449 | if [ -e "$BUILDDIR" ] ; then | |
441 | echo "error: directory ${BUILDDIR} already exists, not proceeding" |
|
450 | echo "error: directory ${BUILDDIR} already exists, not proceeding" | |
442 | exit 1 |
|
451 | exit 1 | |
443 | fi |
|
452 | fi | |
444 |
|
453 | |||
445 | # Setup chroot directory |
|
454 | # Setup chroot directory | |
446 | mkdir -p "${R}" |
|
455 | mkdir -p "${R}" | |
447 |
|
456 | |||
448 | # Check if build directory has enough of free disk space >512MB |
|
457 | # Check if build directory has enough of free disk space >512MB | |
449 | if [ "$(df --output=avail "${BUILDDIR}" | sed "1d")" -le "524288" ] ; then |
|
458 | if [ "$(df --output=avail "${BUILDDIR}" | sed "1d")" -le "524288" ] ; then | |
450 | echo "error: ${BUILDDIR} not enough space left to generate the output image!" |
|
459 | echo "error: ${BUILDDIR} not enough space left to generate the output image!" | |
451 | exit 1 |
|
460 | exit 1 | |
452 | fi |
|
461 | fi | |
453 |
|
462 | |||
454 | set -x |
|
463 | set -x | |
455 |
|
464 | |||
456 | # Call "cleanup" function on various signals and errors |
|
465 | # Call "cleanup" function on various signals and errors | |
457 | trap cleanup 0 1 2 3 6 |
|
466 | trap cleanup 0 1 2 3 6 | |
458 |
|
467 | |||
459 | # Add required packages for the minbase installation |
|
468 | # Add required packages for the minbase installation | |
460 | if [ "$ENABLE_MINBASE" = true ] ; then |
|
469 | if [ "$ENABLE_MINBASE" = true ] ; then | |
461 | APT_INCLUDES="${APT_INCLUDES},vim-tiny,netbase,net-tools,ifupdown" |
|
470 | APT_INCLUDES="${APT_INCLUDES},vim-tiny,netbase,net-tools,ifupdown" | |
462 | fi |
|
471 | fi | |
463 |
|
472 | |||
464 | # Add parted package, required to get partprobe utility |
|
473 | # Add parted package, required to get partprobe utility | |
465 | if [ "$EXPANDROOT" = true ] ; then |
|
474 | if [ "$EXPANDROOT" = true ] ; then | |
466 | APT_INCLUDES="${APT_INCLUDES},parted" |
|
475 | APT_INCLUDES="${APT_INCLUDES},parted" | |
467 | fi |
|
476 | fi | |
468 |
|
477 | |||
469 | # Add dbus package, recommended if using systemd |
|
478 | # Add dbus package, recommended if using systemd | |
470 | if [ "$ENABLE_DBUS" = true ] ; then |
|
479 | if [ "$ENABLE_DBUS" = true ] ; then | |
471 | APT_INCLUDES="${APT_INCLUDES},dbus" |
|
480 | APT_INCLUDES="${APT_INCLUDES},dbus" | |
472 | fi |
|
481 | fi | |
473 |
|
482 | |||
474 | # Add iptables IPv4/IPv6 package |
|
483 | # Add iptables IPv4/IPv6 package | |
475 | if [ "$ENABLE_IPTABLES" = true ] ; then |
|
484 | if [ "$ENABLE_IPTABLES" = true ] ; then | |
476 | APT_INCLUDES="${APT_INCLUDES},iptables,iptables-persistent" |
|
485 | APT_INCLUDES="${APT_INCLUDES},iptables,iptables-persistent" | |
477 | fi |
|
486 | fi | |
478 |
|
487 | |||
479 | # Add openssh server package |
|
488 | # Add openssh server package | |
480 | if [ "$ENABLE_SSHD" = true ] ; then |
|
489 | if [ "$ENABLE_SSHD" = true ] ; then | |
481 | APT_INCLUDES="${APT_INCLUDES},openssh-server" |
|
490 | APT_INCLUDES="${APT_INCLUDES},openssh-server" | |
482 | fi |
|
491 | fi | |
483 |
|
492 | |||
484 | # Add alsa-utils package |
|
493 | # Add alsa-utils package | |
485 | if [ "$ENABLE_SOUND" = true ] ; then |
|
494 | if [ "$ENABLE_SOUND" = true ] ; then | |
486 | APT_INCLUDES="${APT_INCLUDES},alsa-utils" |
|
495 | APT_INCLUDES="${APT_INCLUDES},alsa-utils" | |
487 | fi |
|
496 | fi | |
488 |
|
497 | |||
489 | # Add rng-tools package |
|
498 | # Add rng-tools package | |
490 | if [ "$ENABLE_HWRANDOM" = true ] ; then |
|
499 | if [ "$ENABLE_HWRANDOM" = true ] ; then | |
491 | APT_INCLUDES="${APT_INCLUDES},rng-tools" |
|
500 | APT_INCLUDES="${APT_INCLUDES},rng-tools" | |
492 | fi |
|
501 | fi | |
493 |
|
502 | |||
494 | # Add fbturbo video driver |
|
503 | # Add fbturbo video driver | |
495 | if [ "$ENABLE_FBTURBO" = true ] ; then |
|
504 | if [ "$ENABLE_FBTURBO" = true ] ; then | |
496 | # Enable xorg package dependencies |
|
505 | # Enable xorg package dependencies | |
497 | ENABLE_XORG=true |
|
506 | ENABLE_XORG=true | |
498 | fi |
|
507 | fi | |
499 |
|
508 | |||
500 | # Add user defined window manager package |
|
509 | # Add user defined window manager package | |
501 | if [ -n "$ENABLE_WM" ] ; then |
|
510 | if [ -n "$ENABLE_WM" ] ; then | |
502 | APT_INCLUDES="${APT_INCLUDES},${ENABLE_WM}" |
|
511 | APT_INCLUDES="${APT_INCLUDES},${ENABLE_WM}" | |
503 |
|
512 | |||
504 | # Enable xorg package dependencies |
|
513 | # Enable xorg package dependencies | |
505 | ENABLE_XORG=true |
|
514 | ENABLE_XORG=true | |
506 | fi |
|
515 | fi | |
507 |
|
516 | |||
508 | # Add xorg package |
|
517 | # Add xorg package | |
509 | if [ "$ENABLE_XORG" = true ] ; then |
|
518 | if [ "$ENABLE_XORG" = true ] ; then | |
510 | APT_INCLUDES="${APT_INCLUDES},xorg,dbus-x11" |
|
519 | APT_INCLUDES="${APT_INCLUDES},xorg,dbus-x11" | |
511 | fi |
|
520 | fi | |
512 |
|
521 | |||
513 | # Replace selected packages with smaller clones |
|
522 | # Replace selected packages with smaller clones | |
514 | if [ "$ENABLE_REDUCE" = true ] ; then |
|
523 | if [ "$ENABLE_REDUCE" = true ] ; then | |
515 | # Add levee package instead of vim-tiny |
|
524 | # Add levee package instead of vim-tiny | |
516 | if [ "$REDUCE_VIM" = true ] ; then |
|
525 | if [ "$REDUCE_VIM" = true ] ; then | |
517 | APT_INCLUDES="$(echo ${APT_INCLUDES} | sed "s/vim-tiny/levee/")" |
|
526 | APT_INCLUDES="$(echo ${APT_INCLUDES} | sed "s/vim-tiny/levee/")" | |
518 | fi |
|
527 | fi | |
519 |
|
528 | |||
520 | # Add dropbear package instead of openssh-server |
|
529 | # Add dropbear package instead of openssh-server | |
521 | if [ "$REDUCE_SSHD" = true ] ; then |
|
530 | if [ "$REDUCE_SSHD" = true ] ; then | |
522 | APT_INCLUDES="$(echo "${APT_INCLUDES}" | sed "s/openssh-server/dropbear/")" |
|
531 | APT_INCLUDES="$(echo "${APT_INCLUDES}" | sed "s/openssh-server/dropbear/")" | |
523 | fi |
|
532 | fi | |
524 | fi |
|
533 | fi | |
525 |
|
534 | |||
526 | # Configure systemd-sysv exclude to make halt/reboot/shutdown scripts available |
|
535 | # Configure systemd-sysv exclude to make halt/reboot/shutdown scripts available | |
527 | if [ "$ENABLE_SYSVINIT" = false ] ; then |
|
536 | if [ "$ENABLE_SYSVINIT" = false ] ; then | |
528 | APT_EXCLUDES="--exclude=${APT_EXCLUDES},init,systemd-sysv" |
|
537 | APT_EXCLUDES="--exclude=${APT_EXCLUDES},init,systemd-sysv" | |
529 | fi |
|
538 | fi | |
530 |
|
539 | |||
531 | # Check if kernel is getting compiled |
|
540 | # Check if kernel is getting compiled | |
532 | if [ "$BUILD_KERNEL" = false ] ; then |
|
541 | if [ "$BUILD_KERNEL" = false ] ; then | |
533 | echo "Downloading precompiled kernel" |
|
542 | echo "Downloading precompiled kernel" | |
534 | echo "error: not configured" |
|
543 | echo "error: not configured" | |
535 | exit 1; |
|
544 | exit 1; | |
536 | # BUILD_KERNEL=true |
|
545 | # BUILD_KERNEL=true | |
537 | else |
|
546 | else | |
538 | echo "No precompiled kernel repositories were added" |
|
547 | echo "No precompiled kernel repositories were added" | |
539 | fi |
|
548 | fi | |
540 |
|
549 | |||
541 | # Configure kernel sources if no KERNELSRC_DIR |
|
550 | # Configure kernel sources if no KERNELSRC_DIR | |
542 | if [ "$BUILD_KERNEL" = true ] && [ -z "$KERNELSRC_DIR" ] ; then |
|
551 | if [ "$BUILD_KERNEL" = true ] && [ -z "$KERNELSRC_DIR" ] ; then | |
543 | KERNELSRC_CONFIG=true |
|
552 | KERNELSRC_CONFIG=true | |
544 | fi |
|
553 | fi | |
545 |
|
554 | |||
546 | # Configure reduced kernel |
|
555 | # Configure reduced kernel | |
547 | if [ "$KERNEL_REDUCE" = true ] ; then |
|
556 | if [ "$KERNEL_REDUCE" = true ] ; then | |
548 | KERNELSRC_CONFIG=false |
|
557 | KERNELSRC_CONFIG=false | |
549 | fi |
|
558 | fi | |
550 |
|
559 | |||
551 | # Configure qemu compatible kernel |
|
560 | # Configure qemu compatible kernel | |
552 | if [ "$ENABLE_QEMU" = true ] ; then |
|
561 | if [ "$ENABLE_QEMU" = true ] ; then | |
553 | DTB_FILE=vexpress-v2p-ca15_a7.dtb |
|
562 | DTB_FILE=vexpress-v2p-ca15_a7.dtb | |
554 | UBOOT_CONFIG=vexpress_ca15_tc2_defconfig |
|
563 | UBOOT_CONFIG=vexpress_ca15_tc2_defconfig | |
555 | KERNEL_DEFCONFIG="vexpress_defconfig" |
|
564 | KERNEL_DEFCONFIG="vexpress_defconfig" | |
556 | if [ "$KERNEL_MENUCONFIG" = false ] ; then |
|
565 | if [ "$KERNEL_MENUCONFIG" = false ] ; then | |
557 | KERNEL_OLDDEFCONFIG=true |
|
566 | KERNEL_OLDDEFCONFIG=true | |
558 | fi |
|
567 | fi | |
559 | fi |
|
568 | fi | |
560 |
|
569 | |||
561 | # Execute bootstrap scripts |
|
570 | # Execute bootstrap scripts | |
562 | for SCRIPT in bootstrap.d/*.sh; do |
|
571 | for SCRIPT in bootstrap.d/*.sh; do | |
563 | head -n 3 "$SCRIPT" |
|
572 | head -n 3 "$SCRIPT" | |
564 | . "$SCRIPT" |
|
573 | . "$SCRIPT" | |
565 | done |
|
574 | done | |
566 |
|
575 | |||
567 | ## Execute custom bootstrap scripts |
|
576 | ## Execute custom bootstrap scripts | |
568 | if [ -d "custom.d" ] ; then |
|
577 | if [ -d "custom.d" ] ; then | |
569 | for SCRIPT in custom.d/*.sh; do |
|
578 | for SCRIPT in custom.d/*.sh; do | |
570 | . "$SCRIPT" |
|
579 | . "$SCRIPT" | |
571 | done |
|
580 | done | |
572 | fi |
|
581 | fi | |
573 |
|
582 | |||
574 | # Execute custom scripts inside the chroot |
|
583 | # Execute custom scripts inside the chroot | |
575 | if [ -n "$CHROOT_SCRIPTS" ] && [ -d "$CHROOT_SCRIPTS" ] ; then |
|
584 | if [ -n "$CHROOT_SCRIPTS" ] && [ -d "$CHROOT_SCRIPTS" ] ; then | |
576 | cp -r "${CHROOT_SCRIPTS}" "${R}/chroot_scripts" |
|
585 | cp -r "${CHROOT_SCRIPTS}" "${R}/chroot_scripts" | |
577 | chroot_exec /bin/bash -x <<'EOF' |
|
586 | chroot_exec /bin/bash -x <<'EOF' | |
578 | for SCRIPT in /chroot_scripts/* ; do |
|
587 | for SCRIPT in /chroot_scripts/* ; do | |
579 | if [ -f $SCRIPT -a -x $SCRIPT ] ; then |
|
588 | if [ -f $SCRIPT -a -x $SCRIPT ] ; then | |
580 | $SCRIPT |
|
589 | $SCRIPT | |
581 | fi |
|
590 | fi | |
582 | done |
|
591 | done | |
583 | EOF |
|
592 | EOF | |
584 | rm -rf "${R}/chroot_scripts" |
|
593 | rm -rf "${R}/chroot_scripts" | |
585 | fi |
|
594 | fi | |
586 |
|
595 | |||
587 | # Remove c/c++ build environment from the chroot |
|
596 | # Remove c/c++ build environment from the chroot | |
588 | chroot_remove_cc |
|
597 | chroot_remove_cc | |
589 |
|
598 | |||
590 | # Generate required machine-id |
|
599 | # Generate required machine-id | |
591 | MACHINE_ID=$(dbus-uuidgen) |
|
600 | MACHINE_ID=$(dbus-uuidgen) | |
592 | echo -n "${MACHINE_ID}" > "${R}/var/lib/dbus/machine-id" |
|
601 | echo -n "${MACHINE_ID}" > "${R}/var/lib/dbus/machine-id" | |
593 | echo -n "${MACHINE_ID}" > "${ETC_DIR}/machine-id" |
|
602 | echo -n "${MACHINE_ID}" > "${ETC_DIR}/machine-id" | |
594 |
|
603 | |||
595 | # APT Cleanup |
|
604 | # APT Cleanup | |
596 | chroot_exec apt-get -y clean |
|
605 | chroot_exec apt-get -y clean | |
597 | chroot_exec apt-get -y autoclean |
|
606 | chroot_exec apt-get -y autoclean | |
598 | chroot_exec apt-get -y autoremove |
|
607 | chroot_exec apt-get -y autoremove | |
599 |
|
608 | |||
600 | # Unmount mounted filesystems |
|
609 | # Unmount mounted filesystems | |
601 | umount -l "${R}/proc" |
|
610 | umount -l "${R}/proc" | |
602 | umount -l "${R}/sys" |
|
611 | umount -l "${R}/sys" | |
603 |
|
612 | |||
604 | # Clean up directories |
|
613 | # Clean up directories | |
605 | rm -rf "${R}/run/*" |
|
614 | rm -rf "${R}/run/*" | |
606 | rm -rf "${R}/tmp/*" |
|
615 | rm -rf "${R}/tmp/*" | |
607 |
|
616 | |||
608 | # Clean up files |
|
617 | # Clean up files | |
609 | rm -f "${ETC_DIR}/ssh/ssh_host_*" |
|
618 | rm -f "${ETC_DIR}/ssh/ssh_host_*" | |
610 | rm -f "${ETC_DIR}/dropbear/dropbear_*" |
|
619 | rm -f "${ETC_DIR}/dropbear/dropbear_*" | |
611 | rm -f "${ETC_DIR}/apt/sources.list.save" |
|
620 | rm -f "${ETC_DIR}/apt/sources.list.save" | |
612 | rm -f "${ETC_DIR}/resolvconf/resolv.conf.d/original" |
|
621 | rm -f "${ETC_DIR}/resolvconf/resolv.conf.d/original" | |
613 | rm -f "${ETC_DIR}/*-" |
|
622 | rm -f "${ETC_DIR}/*-" | |
614 | rm -f "${ETC_DIR}/apt/apt.conf.d/10proxy" |
|
623 | rm -f "${ETC_DIR}/apt/apt.conf.d/10proxy" | |
615 | rm -f "${ETC_DIR}/resolv.conf" |
|
624 | rm -f "${ETC_DIR}/resolv.conf" | |
616 | rm -f "${R}/root/.bash_history" |
|
625 | rm -f "${R}/root/.bash_history" | |
617 | rm -f "${R}/var/lib/urandom/random-seed" |
|
626 | rm -f "${R}/var/lib/urandom/random-seed" | |
618 | rm -f "${R}/initrd.img" |
|
627 | rm -f "${R}/initrd.img" | |
619 | rm -f "${R}/vmlinuz" |
|
628 | rm -f "${R}/vmlinuz" | |
620 | rm -f "${R}${QEMU_BINARY}" |
|
629 | rm -f "${R}${QEMU_BINARY}" | |
621 |
|
630 | |||
622 | if [ "$ENABLE_QEMU" = true ] ; then |
|
631 | if [ "$ENABLE_QEMU" = true ] ; then | |
623 | # Setup QEMU directory |
|
632 | # Setup QEMU directory | |
624 | mkdir "${BASEDIR}/qemu" |
|
633 | mkdir "${BASEDIR}/qemu" | |
625 |
|
634 | |||
626 | # Copy kernel image to QEMU directory |
|
635 | # Copy kernel image to QEMU directory | |
627 | install_readonly "${BOOT_DIR}/${KERNEL_IMAGE}" "${BASEDIR}/qemu/${KERNEL_IMAGE}" |
|
636 | install_readonly "${BOOT_DIR}/${KERNEL_IMAGE}" "${BASEDIR}/qemu/${KERNEL_IMAGE}" | |
628 |
|
637 | |||
629 | # Copy kernel config to QEMU directory |
|
638 | # Copy kernel config to QEMU directory | |
630 | install_readonly "${R}/boot/config-${KERNEL_VERSION}" "${BASEDIR}/qemu/config-${KERNEL_VERSION}" |
|
639 | install_readonly "${R}/boot/config-${KERNEL_VERSION}" "${BASEDIR}/qemu/config-${KERNEL_VERSION}" | |
631 |
|
640 | |||
632 | # Copy kernel dtbs to QEMU directory |
|
641 | # Copy kernel dtbs to QEMU directory | |
633 | for dtb in "${BOOT_DIR}/"*.dtb ; do |
|
642 | for dtb in "${BOOT_DIR}/"*.dtb ; do | |
634 | if [ -f "${dtb}" ] ; then |
|
643 | if [ -f "${dtb}" ] ; then | |
635 | install_readonly "${dtb}" "${BASEDIR}/qemu/" |
|
644 | install_readonly "${dtb}" "${BASEDIR}/qemu/" | |
636 | fi |
|
645 | fi | |
637 | done |
|
646 | done | |
638 |
|
647 | |||
639 | # Copy kernel overlays to QEMU directory |
|
648 | # Copy kernel overlays to QEMU directory | |
640 | if [ -d "${BOOT_DIR}/overlays" ] ; then |
|
649 | if [ -d "${BOOT_DIR}/overlays" ] ; then | |
641 | # Setup overlays dtbs directory |
|
650 | # Setup overlays dtbs directory | |
642 | mkdir "${BASEDIR}/qemu/overlays" |
|
651 | mkdir "${BASEDIR}/qemu/overlays" | |
643 |
|
652 | |||
644 | for dtb in "${BOOT_DIR}/overlays/"*.dtb ; do |
|
653 | for dtb in "${BOOT_DIR}/overlays/"*.dtb ; do | |
645 | if [ -f "${dtb}" ] ; then |
|
654 | if [ -f "${dtb}" ] ; then | |
646 | install_readonly "${dtb}" "${BASEDIR}/qemu/overlays/" |
|
655 | install_readonly "${dtb}" "${BASEDIR}/qemu/overlays/" | |
647 | fi |
|
656 | fi | |
648 | done |
|
657 | done | |
649 | fi |
|
658 | fi | |
650 |
|
659 | |||
651 | # Copy u-boot files to QEMU directory |
|
660 | # Copy u-boot files to QEMU directory | |
652 | if [ "$ENABLE_UBOOT" = true ] ; then |
|
661 | if [ "$ENABLE_UBOOT" = true ] ; then | |
653 | if [ -f "${BOOT_DIR}/u-boot.bin" ] ; then |
|
662 | if [ -f "${BOOT_DIR}/u-boot.bin" ] ; then | |
654 | install_readonly "${BOOT_DIR}/u-boot.bin" "${BASEDIR}/qemu/u-boot.bin" |
|
663 | install_readonly "${BOOT_DIR}/u-boot.bin" "${BASEDIR}/qemu/u-boot.bin" | |
655 | fi |
|
664 | fi | |
656 | if [ -f "${BOOT_DIR}/uboot.mkimage" ] ; then |
|
665 | if [ -f "${BOOT_DIR}/uboot.mkimage" ] ; then | |
657 | install_readonly "${BOOT_DIR}/uboot.mkimage" "${BASEDIR}/qemu/uboot.mkimage" |
|
666 | install_readonly "${BOOT_DIR}/uboot.mkimage" "${BASEDIR}/qemu/uboot.mkimage" | |
658 | fi |
|
667 | fi | |
659 | if [ -f "${BOOT_DIR}/boot.scr" ] ; then |
|
668 | if [ -f "${BOOT_DIR}/boot.scr" ] ; then | |
660 | install_readonly "${BOOT_DIR}/boot.scr" "${BASEDIR}/qemu/boot.scr" |
|
669 | install_readonly "${BOOT_DIR}/boot.scr" "${BASEDIR}/qemu/boot.scr" | |
661 | fi |
|
670 | fi | |
662 | fi |
|
671 | fi | |
663 |
|
672 | |||
664 | # Copy initramfs to QEMU directory |
|
673 | # Copy initramfs to QEMU directory | |
665 | if [ -f "${BOOT_DIR}/initramfs-${KERNEL_VERSION}" ] ; then |
|
674 | if [ -f "${BOOT_DIR}/initramfs-${KERNEL_VERSION}" ] ; then | |
666 | install_readonly "${BOOT_DIR}/initramfs-${KERNEL_VERSION}" "${BASEDIR}/qemu/initramfs-${KERNEL_VERSION}" |
|
675 | install_readonly "${BOOT_DIR}/initramfs-${KERNEL_VERSION}" "${BASEDIR}/qemu/initramfs-${KERNEL_VERSION}" | |
667 | fi |
|
676 | fi | |
668 | fi |
|
677 | fi | |
669 |
|
678 | |||
670 | # Calculate size of the chroot directory in KB |
|
679 | # Calculate size of the chroot directory in KB | |
671 | CHROOT_SIZE=$(expr "$(du -s "${R}" | awk '{ print $1 }')") |
|
680 | CHROOT_SIZE=$(expr "$(du -s "${R}" | awk '{ print $1 }')") | |
672 |
|
681 | |||
673 | # Calculate the amount of needed 512 Byte sectors |
|
682 | # Calculate the amount of needed 512 Byte sectors | |
674 | TABLE_SECTORS=$(expr 1 \* 1024 \* 1024 \/ 512) |
|
683 | TABLE_SECTORS=$(expr 1 \* 1024 \* 1024 \/ 512) | |
675 | FRMW_SECTORS=$(expr 64 \* 1024 \* 1024 \/ 512) |
|
684 | FRMW_SECTORS=$(expr 64 \* 1024 \* 1024 \/ 512) | |
676 | ROOT_OFFSET=$(expr "${TABLE_SECTORS}" + "${FRMW_SECTORS}") |
|
685 | ROOT_OFFSET=$(expr "${TABLE_SECTORS}" + "${FRMW_SECTORS}") | |
677 |
|
686 | |||
678 | # The root partition is EXT4 |
|
687 | # The root partition is EXT4 | |
679 | # This means more space than the actual used space of the chroot is used. |
|
688 | # This means more space than the actual used space of the chroot is used. | |
680 | # As overhead for journaling and reserved blocks 35% are added. |
|
689 | # As overhead for journaling and reserved blocks 35% are added. | |
681 | ROOT_SECTORS=$(expr "$(expr "${CHROOT_SIZE}" + "${CHROOT_SIZE}" \/ 100 \* 35)" \* 1024 \/ 512) |
|
690 | ROOT_SECTORS=$(expr "$(expr "${CHROOT_SIZE}" + "${CHROOT_SIZE}" \/ 100 \* 35)" \* 1024 \/ 512) | |
682 |
|
691 | |||
683 | # Calculate required image size in 512 Byte sectors |
|
692 | # Calculate required image size in 512 Byte sectors | |
684 | IMAGE_SECTORS=$(expr "${TABLE_SECTORS}" + "${FRMW_SECTORS}" + "${ROOT_SECTORS}") |
|
693 | IMAGE_SECTORS=$(expr "${TABLE_SECTORS}" + "${FRMW_SECTORS}" + "${ROOT_SECTORS}") | |
685 |
|
694 | |||
686 | # Prepare image file |
|
695 | # Prepare image file | |
687 | if [ "$ENABLE_SPLITFS" = true ] ; then |
|
696 | if [ "$ENABLE_SPLITFS" = true ] ; then | |
688 | dd if=/dev/zero of="$IMAGE_NAME-frmw.img" bs=512 count="${TABLE_SECTORS}" |
|
697 | dd if=/dev/zero of="$IMAGE_NAME-frmw.img" bs=512 count="${TABLE_SECTORS}" | |
689 | dd if=/dev/zero of="$IMAGE_NAME-frmw.img" bs=512 count=0 seek="${FRMW_SECTORS}" |
|
698 | dd if=/dev/zero of="$IMAGE_NAME-frmw.img" bs=512 count=0 seek="${FRMW_SECTORS}" | |
690 | dd if=/dev/zero of="$IMAGE_NAME-root.img" bs=512 count="${TABLE_SECTORS}" |
|
699 | dd if=/dev/zero of="$IMAGE_NAME-root.img" bs=512 count="${TABLE_SECTORS}" | |
691 | dd if=/dev/zero of="$IMAGE_NAME-root.img" bs=512 count=0 seek="${ROOT_SECTORS}" |
|
700 | dd if=/dev/zero of="$IMAGE_NAME-root.img" bs=512 count=0 seek="${ROOT_SECTORS}" | |
692 |
|
701 | |||
693 | # Write firmware/boot partition tables |
|
702 | # Write firmware/boot partition tables | |
694 | sfdisk -q -L -uS -f "$IMAGE_NAME-frmw.img" 2> /dev/null <<EOM |
|
703 | sfdisk -q -L -uS -f "$IMAGE_NAME-frmw.img" 2> /dev/null <<EOM | |
695 | ${TABLE_SECTORS},${FRMW_SECTORS},c,* |
|
704 | ${TABLE_SECTORS},${FRMW_SECTORS},c,* | |
696 | EOM |
|
705 | EOM | |
697 |
|
706 | |||
698 | # Write root partition table |
|
707 | # Write root partition table | |
699 | sfdisk -q -L -uS -f "$IMAGE_NAME-root.img" 2> /dev/null <<EOM |
|
708 | sfdisk -q -L -uS -f "$IMAGE_NAME-root.img" 2> /dev/null <<EOM | |
700 | ${TABLE_SECTORS},${ROOT_SECTORS},83 |
|
709 | ${TABLE_SECTORS},${ROOT_SECTORS},83 | |
701 | EOM |
|
710 | EOM | |
702 |
|
711 | |||
703 | # Setup temporary loop devices |
|
712 | # Setup temporary loop devices | |
704 | FRMW_LOOP="$(losetup -o 1M --sizelimit 64M -f --show "$IMAGE_NAME"-frmw.img)" |
|
713 | FRMW_LOOP="$(losetup -o 1M --sizelimit 64M -f --show "$IMAGE_NAME"-frmw.img)" | |
705 | ROOT_LOOP="$(losetup -o 1M -f --show "$IMAGE_NAME"-root.img)" |
|
714 | ROOT_LOOP="$(losetup -o 1M -f --show "$IMAGE_NAME"-root.img)" | |
706 | else # ENABLE_SPLITFS=false |
|
715 | else # ENABLE_SPLITFS=false | |
707 | dd if=/dev/zero of="$IMAGE_NAME.img" bs=512 count="${TABLE_SECTORS}" |
|
716 | dd if=/dev/zero of="$IMAGE_NAME.img" bs=512 count="${TABLE_SECTORS}" | |
708 | dd if=/dev/zero of="$IMAGE_NAME.img" bs=512 count=0 seek="${IMAGE_SECTORS}" |
|
717 | dd if=/dev/zero of="$IMAGE_NAME.img" bs=512 count=0 seek="${IMAGE_SECTORS}" | |
709 |
|
718 | |||
710 | # Write partition table |
|
719 | # Write partition table | |
711 | sfdisk -q -L -uS -f "$IMAGE_NAME.img" 2> /dev/null <<EOM |
|
720 | sfdisk -q -L -uS -f "$IMAGE_NAME.img" 2> /dev/null <<EOM | |
712 | ${TABLE_SECTORS},${FRMW_SECTORS},c,* |
|
721 | ${TABLE_SECTORS},${FRMW_SECTORS},c,* | |
713 | ${ROOT_OFFSET},${ROOT_SECTORS},83 |
|
722 | ${ROOT_OFFSET},${ROOT_SECTORS},83 | |
714 | EOM |
|
723 | EOM | |
715 |
|
724 | |||
716 | # Setup temporary loop devices |
|
725 | # Setup temporary loop devices | |
717 | FRMW_LOOP="$(losetup -o 1M --sizelimit 64M -f --show "$IMAGE_NAME".img)" |
|
726 | FRMW_LOOP="$(losetup -o 1M --sizelimit 64M -f --show "$IMAGE_NAME".img)" | |
718 | ROOT_LOOP="$(losetup -o 65M -f --show "$IMAGE_NAME".img)" |
|
727 | ROOT_LOOP="$(losetup -o 65M -f --show "$IMAGE_NAME".img)" | |
719 | fi |
|
728 | fi | |
720 |
|
729 | |||
721 | if [ "$ENABLE_CRYPTFS" = true ] ; then |
|
730 | if [ "$ENABLE_CRYPTFS" = true ] ; then | |
722 | # Create dummy ext4 fs |
|
731 | # Create dummy ext4 fs | |
723 | mkfs.ext4 "$ROOT_LOOP" |
|
732 | mkfs.ext4 "$ROOT_LOOP" | |
724 |
|
733 | |||
725 | # Setup password keyfile |
|
734 | # Setup password keyfile | |
726 | touch .password |
|
735 | touch .password | |
727 | chmod 600 .password |
|
736 | chmod 600 .password | |
728 | echo -n ${CRYPTFS_PASSWORD} > .password |
|
737 | echo -n ${CRYPTFS_PASSWORD} > .password | |
729 |
|
738 | |||
730 | # Initialize encrypted partition |
|
739 | # Initialize encrypted partition | |
731 | echo "YES" | cryptsetup luksFormat "${ROOT_LOOP}" -c "${CRYPTFS_CIPHER}" -s "${CRYPTFS_XTSKEYSIZE}" .password |
|
740 | echo "YES" | cryptsetup luksFormat "${ROOT_LOOP}" -c "${CRYPTFS_CIPHER}" -s "${CRYPTFS_XTSKEYSIZE}" .password | |
732 |
|
741 | |||
733 | # Open encrypted partition and setup mapping |
|
742 | # Open encrypted partition and setup mapping | |
734 | cryptsetup luksOpen "${ROOT_LOOP}" -d .password "${CRYPTFS_MAPPING}" |
|
743 | cryptsetup luksOpen "${ROOT_LOOP}" -d .password "${CRYPTFS_MAPPING}" | |
735 |
|
744 | |||
736 | # Secure delete password keyfile |
|
745 | # Secure delete password keyfile | |
737 | shred -zu .password |
|
746 | shred -zu .password | |
738 |
|
747 | |||
739 | # Update temporary loop device |
|
748 | # Update temporary loop device | |
740 | ROOT_LOOP="/dev/mapper/${CRYPTFS_MAPPING}" |
|
749 | ROOT_LOOP="/dev/mapper/${CRYPTFS_MAPPING}" | |
741 |
|
750 | |||
742 | # Wipe encrypted partition (encryption cipher is used for randomness) |
|
751 | # Wipe encrypted partition (encryption cipher is used for randomness) | |
743 | dd if=/dev/zero of="${ROOT_LOOP}" bs=512 count="$(blockdev --getsz "${ROOT_LOOP}")" |
|
752 | dd if=/dev/zero of="${ROOT_LOOP}" bs=512 count="$(blockdev --getsz "${ROOT_LOOP}")" | |
744 | fi |
|
753 | fi | |
745 |
|
754 | |||
746 | # Build filesystems |
|
755 | # Build filesystems | |
747 | mkfs.vfat "$FRMW_LOOP" |
|
756 | mkfs.vfat "$FRMW_LOOP" | |
748 | mkfs.ext4 "$ROOT_LOOP" |
|
757 | mkfs.ext4 "$ROOT_LOOP" | |
749 |
|
758 | |||
750 | # Mount the temporary loop devices |
|
759 | # Mount the temporary loop devices | |
751 | mkdir -p "$BUILDDIR/mount" |
|
760 | mkdir -p "$BUILDDIR/mount" | |
752 | mount "$ROOT_LOOP" "$BUILDDIR/mount" |
|
761 | mount "$ROOT_LOOP" "$BUILDDIR/mount" | |
753 |
|
762 | |||
754 | mkdir -p "$BUILDDIR/mount/boot/firmware" |
|
763 | mkdir -p "$BUILDDIR/mount/boot/firmware" | |
755 | mount "$FRMW_LOOP" "$BUILDDIR/mount/boot/firmware" |
|
764 | mount "$FRMW_LOOP" "$BUILDDIR/mount/boot/firmware" | |
756 |
|
765 | |||
757 | # Copy all files from the chroot to the loop device mount point directory |
|
766 | # Copy all files from the chroot to the loop device mount point directory | |
758 | rsync -a "${R}/" "$BUILDDIR/mount/" |
|
767 | rsync -a "${R}/" "$BUILDDIR/mount/" | |
759 |
|
768 | |||
760 | # Unmount all temporary loop devices and mount points |
|
769 | # Unmount all temporary loop devices and mount points | |
761 | cleanup |
|
770 | cleanup | |
762 |
|
771 | |||
763 | # Create block map file(s) of image(s) |
|
772 | # Create block map file(s) of image(s) | |
764 | if [ "$ENABLE_SPLITFS" = true ] ; then |
|
773 | if [ "$ENABLE_SPLITFS" = true ] ; then | |
765 | # Create block map files for "bmaptool" |
|
774 | # Create block map files for "bmaptool" | |
766 | bmaptool create -o "$IMAGE_NAME-frmw.bmap" "$IMAGE_NAME-frmw.img" |
|
775 | bmaptool create -o "$IMAGE_NAME-frmw.bmap" "$IMAGE_NAME-frmw.img" | |
767 | bmaptool create -o "$IMAGE_NAME-root.bmap" "$IMAGE_NAME-root.img" |
|
776 | bmaptool create -o "$IMAGE_NAME-root.bmap" "$IMAGE_NAME-root.img" | |
768 |
|
777 | |||
769 | # Image was successfully created |
|
778 | # Image was successfully created | |
770 | echo "$IMAGE_NAME-frmw.img ($(expr \( "${TABLE_SECTORS}" + "${FRMW_SECTORS}" \) \* 512 \/ 1024 \/ 1024)M)" ": successfully created" |
|
779 | echo "$IMAGE_NAME-frmw.img ($(expr \( "${TABLE_SECTORS}" + "${FRMW_SECTORS}" \) \* 512 \/ 1024 \/ 1024)M)" ": successfully created" | |
771 | echo "$IMAGE_NAME-root.img ($(expr \( "${TABLE_SECTORS}" + "${ROOT_SECTORS}" \) \* 512 \/ 1024 \/ 1024)M)" ": successfully created" |
|
780 | echo "$IMAGE_NAME-root.img ($(expr \( "${TABLE_SECTORS}" + "${ROOT_SECTORS}" \) \* 512 \/ 1024 \/ 1024)M)" ": successfully created" | |
772 | else |
|
781 | else | |
773 | # Create block map file for "bmaptool" |
|
782 | # Create block map file for "bmaptool" | |
774 | bmaptool create -o "$IMAGE_NAME.bmap" "$IMAGE_NAME.img" |
|
783 | bmaptool create -o "$IMAGE_NAME.bmap" "$IMAGE_NAME.img" | |
775 |
|
784 | |||
776 | # Image was successfully created |
|
785 | # Image was successfully created | |
777 | echo "$IMAGE_NAME.img ($(expr \( "${TABLE_SECTORS}" + "${FRMW_SECTORS}" + "${ROOT_SECTORS}" \) \* 512 \/ 1024 \/ 1024)M)" ": successfully created" |
|
786 | echo "$IMAGE_NAME.img ($(expr \( "${TABLE_SECTORS}" + "${FRMW_SECTORS}" + "${ROOT_SECTORS}" \) \* 512 \/ 1024 \/ 1024)M)" ": successfully created" | |
778 |
|
787 | |||
779 | # Create qemu qcow2 image |
|
788 | # Create qemu qcow2 image | |
780 | if [ "$ENABLE_QEMU" = true ] ; then |
|
789 | if [ "$ENABLE_QEMU" = true ] ; then | |
781 | QEMU_IMAGE=${QEMU_IMAGE:=${BASEDIR}/qemu/${DATE}-${KERNEL_ARCH}-CURRENT-rpi${RPI_MODEL}-${RELEASE}-${RELEASE_ARCH}} |
|
790 | QEMU_IMAGE=${QEMU_IMAGE:=${BASEDIR}/qemu/${DATE}-${KERNEL_ARCH}-CURRENT-rpi${RPI_MODEL}-${RELEASE}-${RELEASE_ARCH}} | |
782 | QEMU_SIZE=16G |
|
791 | QEMU_SIZE=16G | |
783 |
|
792 | |||
784 | qemu-img convert -f raw -O qcow2 "$IMAGE_NAME".img "$QEMU_IMAGE".qcow2 |
|
793 | qemu-img convert -f raw -O qcow2 "$IMAGE_NAME".img "$QEMU_IMAGE".qcow2 | |
785 | qemu-img resize "$QEMU_IMAGE".qcow2 $QEMU_SIZE |
|
794 | qemu-img resize "$QEMU_IMAGE".qcow2 $QEMU_SIZE | |
786 |
|
795 | |||
787 | echo "$QEMU_IMAGE.qcow2 ($QEMU_SIZE)" ": successfully created" |
|
796 | echo "$QEMU_IMAGE.qcow2 ($QEMU_SIZE)" ": successfully created" | |
788 | fi |
|
797 | fi | |
789 | fi |
|
798 | fi |
General Comments 0
Vous devez vous connecter pour laisser un commentaire.
Se connecter maintenant