##// END OF EJS Templates
- Moved locales configuration after "apt-get upgrade" sequence to work around...
Vincent Knecht -
r26:efb801e4d116
parent child
Show More
@@ -1,846 +1,858
1 1 #!/bin/sh
2 2
3 3 ########################################################################
4 4 # rpi2-gen-image.sh ver2a 12/2015
5 5 #
6 6 # Advanced debian "jessie" bootstrap script for RPi2
7 7 #
8 8 # This program is free software; you can redistribute it and/or
9 9 # modify it under the terms of the GNU General Public License
10 10 # as published by the Free Software Foundation; either version 2
11 11 # of the License, or (at your option) any later version.
12 12 #
13 13 # some parts based on rpi2-build-image:
14 14 # Copyright (C) 2015 Ryan Finnie <ryan@finnie.org>
15 15 # Copyright (C) 2015 Luca Falavigna <dktrkranz@debian.org>
16 16 ########################################################################
17 17
18 18 # Clean up all temporary mount points
19 19 cleanup (){
20 20 set +x
21 21 set +e
22 22 echo "removing temporary mount points ..."
23 23 umount -l $R/proc 2> /dev/null
24 24 umount -l $R/sys 2> /dev/null
25 25 umount -l $R/dev/pts 2> /dev/null
26 26 umount "$BUILDDIR/mount/boot/firmware" 2> /dev/null
27 27 umount "$BUILDDIR/mount" 2> /dev/null
28 28 losetup -d "$EXT4_LOOP" 2> /dev/null
29 29 losetup -d "$VFAT_LOOP" 2> /dev/null
30 30 trap - 0 1 2 3 6
31 31 }
32 32
33 33 set -e
34 34 set -x
35 35
36 36 # Debian release
37 37 RELEASE=${RELEASE:=jessie}
38 38
39 39 # Build settings
40 40 BASEDIR=./images/${RELEASE}
41 41 BUILDDIR=${BASEDIR}/build
42 42
43 43 # General settings
44 44 HOSTNAME=${HOSTNAME:=rpi2-${RELEASE}}
45 45 PASSWORD=${PASSWORD:=raspberry}
46 46 DEFLOCAL=${DEFLOCAL:="en_US.UTF-8"}
47 47 TIMEZONE=${TIMEZONE:="Europe/Berlin"}
48 48
49 49 # APT settings
50 50 APT_PROXY=${APT_PROXY:=""}
51 51 APT_SERVER=${APT_SERVER:="ftp.debian.org"}
52 52
53 53 # Feature settings
54 54 ENABLE_CONSOLE=${ENABLE_CONSOLE:=true}
55 55 ENABLE_IPV6=${ENABLE_IPV6:=true}
56 56 ENABLE_SSHD=${ENABLE_SSHD:=true}
57 57 ENABLE_SOUND=${ENABLE_SOUND:=true}
58 58 ENABLE_DBUS=${ENABLE_DBUS:=true}
59 59 ENABLE_HWRANDOM=${ENABLE_HWRANDOM:=true}
60 60 ENABLE_MINGPU=${ENABLE_MINGPU:=false}
61 61 ENABLE_XORG=${ENABLE_XORG:=false}
62 62 ENABLE_WM=${ENABLE_WM:=""}
63 63
64 64 # Advanced settings
65 65 ENABLE_MINBASE=${ENABLE_MINBASE:=false}
66 66 ENABLE_UBOOT=${ENABLE_UBOOT:=false}
67 67 ENABLE_FBTURBO=${ENABLE_FBTURBO:=false}
68 68 ENABLE_HARDNET=${ENABLE_HARDNET:=false}
69 69 ENABLE_IPTABLES=${ENABLE_IPTABLES:=false}
70 70
71 71 # Image chroot path
72 72 R=${BUILDDIR}/chroot
73 73
74 74 # Packages required for bootstrapping
75 75 REQUIRED_PACKAGES="debootstrap debian-archive-keyring qemu-user-static dosfstools rsync bmap-tools whois git-core"
76 76
77 77 # Missing packages that need to be installed
78 78 MISSING_PACKAGES=""
79 79
80 80 # Packages required in the chroot build environment
81 81 APT_INCLUDES="apt-transport-https,ca-certificates,debian-archive-keyring,dialog,sudo"
82 82
83 83 set +x
84 84
85 85 # Are we running as root?
86 86 if [ "$(id -u)" -ne "0" ] ; then
87 87 echo "this script must be executed with root privileges"
88 88 exit 1
89 89 fi
90 90
91 91 # Check if all required packages are installed
92 92 for package in $REQUIRED_PACKAGES ; do
93 93 if [ "`dpkg-query -W -f='${Status}' $package`" != "install ok installed" ] ; then
94 94 MISSING_PACKAGES="$MISSING_PACKAGES $package"
95 95 fi
96 96 done
97 97
98 98 # Ask if missing packages should get installed right now
99 99 if [ -n "$MISSING_PACKAGES" ] ; then
100 100 echo "the following packages needed by this script are not installed:"
101 101 echo "$MISSING_PACKAGES"
102 102
103 103 echo -n "\ndo you want to install the missing packages right now? [y/n] "
104 104 read confirm
105 105 if [ "$confirm" != "y" ] ; then
106 106 exit 1
107 107 fi
108 108 fi
109 109
110 110 # Make sure all required packages are installed
111 111 apt-get -qq -y install ${REQUIRED_PACKAGES}
112 112
113 113 # Don't clobber an old build
114 114 if [ -e "$BUILDDIR" ]; then
115 115 echo "directory $BUILDDIR already exists, not proceeding"
116 116 exit 1
117 117 fi
118 118
119 119 set -x
120 120
121 121 # Call "cleanup" function on various signals and errors
122 122 trap cleanup 0 1 2 3 6
123 123
124 124 # Set up chroot directory
125 125 mkdir -p $R
126 126
127 127 # Add required packages for the minbase installation
128 128 if [ "$ENABLE_MINBASE" = true ] ; then
129 129 APT_INCLUDES="${APT_INCLUDES},vim-tiny,netbase,net-tools"
130 130 else
131 131 APT_INCLUDES="${APT_INCLUDES},locales"
132 132 fi
133 133
134 134 # Add dbus package, recommended if using systemd
135 135 if [ "$ENABLE_DBUS" = true ] ; then
136 136 APT_INCLUDES="${APT_INCLUDES},dbus"
137 137 fi
138 138
139 139 # Add iptables IPv4/IPv6 package
140 140 if [ "$ENABLE_IPTABLES" = true ] ; then
141 141 APT_INCLUDES="${APT_INCLUDES},iptables"
142 142 fi
143 143
144 144 # Add openssh server package
145 145 if [ "$ENABLE_SSHD" = true ] ; then
146 146 APT_INCLUDES="${APT_INCLUDES},openssh-server"
147 147 fi
148 148
149 149 # Add alsa-utils package
150 150 if [ "$ENABLE_SOUND" = true ] ; then
151 151 APT_INCLUDES="${APT_INCLUDES},alsa-utils"
152 152 fi
153 153
154 154 # Add rng-tools package
155 155 if [ "$ENABLE_HWRANDOM" = true ] ; then
156 156 APT_INCLUDES="${APT_INCLUDES},rng-tools"
157 157 fi
158 158
159 159 # Add fbturbo video driver
160 160 if [ "$ENABLE_FBTURBO" = true ] ; then
161 161 # Enable xorg package dependencies
162 162 ENABLE_XORG=true
163 163 fi
164 164
165 165 # Add user defined window manager package
166 166 if [ -n "$ENABLE_WM" ] ; then
167 167 APT_INCLUDES="${APT_INCLUDES},${ENABLE_WM}"
168 168
169 169 # Enable xorg package dependencies
170 170 ENABLE_XORG=true
171 171 fi
172 172
173 173 # Add xorg package
174 174 if [ "$ENABLE_XORG" = true ] ; then
175 175 APT_INCLUDES="${APT_INCLUDES},xorg"
176 176 fi
177 177
178 178 # Set empty proxy string
179 179 if [ -z "$APT_PROXY" ] ; then
180 180 APT_PROXY="http://"
181 181 fi
182 182
183 183 # Base debootstrap (unpack only)
184 184 if [ "$ENABLE_MINBASE" = true ] ; then
185 185 debootstrap --arch=armhf --variant=minbase --foreign --include=${APT_INCLUDES} $RELEASE $R ${APT_PROXY}${APT_SERVER}/debian
186 186 else
187 187 debootstrap --arch=armhf --foreign --include=${APT_INCLUDES} $RELEASE $R ${APT_PROXY}${APT_SERVER}/debian
188 188 fi
189 189
190 190 # Copy qemu emulator binary to chroot
191 191 cp /usr/bin/qemu-arm-static $R/usr/bin
192 192
193 193 # Copy debian-archive-keyring.pgp
194 194 chroot $R mkdir -p /usr/share/keyrings
195 195 cp /usr/share/keyrings/debian-archive-keyring.gpg $R/usr/share/keyrings/debian-archive-keyring.gpg
196 196
197 197 # Complete the bootstrapping process
198 198 chroot $R /debootstrap/debootstrap --second-stage
199 199
200 200 # Mount required filesystems
201 201 mount -t proc none $R/proc
202 202 mount -t sysfs none $R/sys
203 203 mount --bind /dev/pts $R/dev/pts
204 204
205 205 # Use proxy inside chroot
206 206 if [ -z "$APT_PROXY" ] ; then
207 207 echo "Acquire::http::Proxy \"$APT_PROXY\"" >> $R/etc/apt/apt.conf.d/10proxy
208 208 fi
209 209
210 210 # Pin package flash-kernel to repositories.collabora.co.uk
211 211 cat <<EOM >$R/etc/apt/preferences.d/flash-kernel
212 212 Package: flash-kernel
213 213 Pin: origin repositories.collabora.co.uk
214 214 Pin-Priority: 1000
215 215 EOM
216 216
217 217 # Set up timezone
218 218 echo ${TIMEZONE} >$R/etc/timezone
219 219 LANG=C chroot $R dpkg-reconfigure -f noninteractive tzdata
220 220
221 # Set up default locales to "en_US.UTF-8" default
222 if [ "$ENABLE_MINBASE" = false ] ; then
223 LANG=C chroot $R sed -i "/${DEFLOCAL}/s/^#//" /etc/locale.gen
224 LANG=C chroot $R locale-gen ${DEFLOCAL}
225 fi
226
227 221 # Upgrade collabora package index and install collabora keyring
228 222 echo "deb https://repositories.collabora.co.uk/debian ${RELEASE} rpi2" >$R/etc/apt/sources.list
229 223 LANG=C chroot $R apt-get -qq -y update
230 224 LANG=C chroot $R apt-get -qq -y --force-yes install collabora-obs-archive-keyring
231 225
232 226 # Set up initial sources.list
233 227 cat <<EOM >$R/etc/apt/sources.list
234 228 deb http://${APT_SERVER}/debian ${RELEASE} main contrib
235 229 #deb-src http://${APT_SERVER}/debian ${RELEASE} main contrib
236 230
237 231 deb http://${APT_SERVER}/debian/ ${RELEASE}-updates main contrib
238 232 #deb-src http://${APT_SERVER}/debian/ ${RELEASE}-updates main contrib
239 233
240 234 deb http://security.debian.org/ ${RELEASE}/updates main contrib
241 235 #deb-src http://security.debian.org/ ${RELEASE}/updates main contrib
242 236
243 237 deb https://repositories.collabora.co.uk/debian ${RELEASE} rpi2
244 238 EOM
245 239
246 240 # Upgrade package index and update all installed packages and changed dependencies
247 241 LANG=C chroot $R apt-get -qq -y update
248 242 LANG=C chroot $R apt-get -qq -y -u dist-upgrade
249 243
244 # Set up default locales to "en_US.UTF-8" default
245 if [ "$ENABLE_MINBASE" = false ] ; then
246 # Set locale choice in debconf db, even though dpkg-reconfigure ignores and overwrites them due to some bug
247 # https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=684134 https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=685957
248 # ... so we have to set locales manually
249 if [ "$DEFLOCAL" = "en_US.UTF-8" ] ; then
250 LANG=C chroot $R echo "locales locales/locales_to_be_generated multiselect ${DEFLOCAL} UTF-8" | debconf-set-selections
251 else
252 # en_US.UTF-8 should be available anyway : https://www.debian.org/doc/manuals/debian-reference/ch08.en.html#_the_reconfiguration_of_the_locale
253 LANG=C chroot $R echo "locales locales/locales_to_be_generated multiselect en_US.UTF-8 UTF-8, ${DEFLOCAL} UTF-8" | debconf-set-selections
254 LANG=C chroot $R sed -i "/en_US.UTF-8/s/^#//" /etc/locale.gen
255 fi
256 LANG=C chroot $R sed -i "/${DEFLOCAL}/s/^#//" /etc/locale.gen
257 LANG=C chroot $R echo "locales locales/default_environment_locale select ${DEFLOCAL}" | debconf-set-selections
258 LANG=C chroot $R locale-gen
259 LANG=C chroot $R update-locale LANG=${DEFLOCAL}
260 fi
261
250 262 # Kernel installation
251 263 # Install flash-kernel last so it doesn't try (and fail) to detect the platform in the chroot
252 264 LANG=C chroot $R apt-get -qq -y --no-install-recommends install linux-image-3.18.0-trunk-rpi2
253 265 LANG=C chroot $R apt-get -qq -y install flash-kernel
254 266
255 267 VMLINUZ="$(ls -1 $R/boot/vmlinuz-* | sort | tail -n 1)"
256 268 [ -z "$VMLINUZ" ] && exit 1
257 269 mkdir -p $R/boot/firmware
258 270
259 271 # required boot binaries from raspberry/firmware github (commit: "kernel: Bump to 3.18.10")
260 272 wget -q -O $R/boot/firmware/bootcode.bin https://github.com/raspberrypi/firmware/raw/cd355a9dd4f1f4de2e79b0c8e102840885cdf1de/boot/bootcode.bin
261 273 wget -q -O $R/boot/firmware/fixup_cd.dat https://github.com/raspberrypi/firmware/raw/cd355a9dd4f1f4de2e79b0c8e102840885cdf1de/boot/fixup_cd.dat
262 274 wget -q -O $R/boot/firmware/fixup.dat https://github.com/raspberrypi/firmware/raw/cd355a9dd4f1f4de2e79b0c8e102840885cdf1de/boot/fixup.dat
263 275 wget -q -O $R/boot/firmware/fixup_x.dat https://github.com/raspberrypi/firmware/raw/cd355a9dd4f1f4de2e79b0c8e102840885cdf1de/boot/fixup_x.dat
264 276 wget -q -O $R/boot/firmware/start_cd.elf https://github.com/raspberrypi/firmware/raw/cd355a9dd4f1f4de2e79b0c8e102840885cdf1de/boot/start_cd.elf
265 277 wget -q -O $R/boot/firmware/start.elf https://github.com/raspberrypi/firmware/raw/cd355a9dd4f1f4de2e79b0c8e102840885cdf1de/boot/start.elf
266 278 wget -q -O $R/boot/firmware/start_x.elf https://github.com/raspberrypi/firmware/raw/cd355a9dd4f1f4de2e79b0c8e102840885cdf1de/boot/start_x.elf
267 279 cp $VMLINUZ $R/boot/firmware/kernel7.img
268 280
269 281 # Set up IPv4 hosts
270 282 echo ${HOSTNAME} >$R/etc/hostname
271 283 cat <<EOM >$R/etc/hosts
272 284 127.0.0.1 localhost
273 285 127.0.1.1 ${HOSTNAME}
274 286 EOM
275 287
276 288 # Set up IPv6 hosts
277 289 if [ "$ENABLE_IPV6" = true ] ; then
278 290 cat <<EOM >>$R/etc/hosts
279 291
280 292 ::1 localhost ip6-localhost ip6-loopback
281 293 ff02::1 ip6-allnodes
282 294 ff02::2 ip6-allrouters
283 295 EOM
284 296 fi
285 297
286 298 # Place hint about network configuration
287 299 cat <<EOM >$R/etc/network/interfaces
288 300 # Debian switched to systemd-networkd configuration files.
289 301 # please configure your networks in '/etc/systemd/network/'
290 302 EOM
291 303
292 304 # Enable systemd-networkd DHCP configuration for interface eth0
293 305 cat <<EOM >$R/etc/systemd/network/eth.network
294 306 [Match]
295 307 Name=eth0
296 308
297 309 [Network]
298 310 DHCP=yes
299 311 EOM
300 312
301 313 # Set DHCP configuration to IPv4 only
302 314 if [ "$ENABLE_IPV6" = false ] ; then
303 315 sed -i "s/=yes/=v4/" $R/etc/systemd/network/eth.network
304 316 fi
305 317
306 318 # Enable systemd-networkd service
307 319 LANG=C chroot $R systemctl enable systemd-networkd
308 320
309 321 # Generate crypt(3) password string
310 322 ENCRYPTED_PASSWORD=`mkpasswd -m sha-512 ${PASSWORD}`
311 323
312 324 # Set up default user
313 325 LANG=C chroot $R adduser --gecos "Raspberry PI user" --add_extra_groups --disabled-password pi
314 326 LANG=C chroot $R usermod -a -G sudo -p "${ENCRYPTED_PASSWORD}" pi
315 327
316 328 # Set up root password
317 329 LANG=C chroot $R usermod -p "${ENCRYPTED_PASSWORD}" root
318 330
319 331 # Set up firmware boot cmdline
320 332 CMDLINE="dwc_otg.lpm_enable=0 root=/dev/mmcblk0p2 rootfstype=ext4 rootflags=commit=100,data=writeback elevator=deadline rootwait net.ifnames=1 console=tty1"
321 333
322 334 # Set up serial console support (if requested)
323 335 if [ "$ENABLE_CONSOLE" = true ] ; then
324 336 CMDLINE="${CMDLINE} console=ttyAMA0,115200 kgdboc=ttyAMA0,115200"
325 337 fi
326 338
327 339 # Set up IPv6 networking support
328 340 if [ "$ENABLE_IPV6" = false ] ; then
329 341 CMDLINE="${CMDLINE} ipv6.disable=1"
330 342 fi
331 343
332 344 echo "${CMDLINE}" >$R/boot/firmware/cmdline.txt
333 345
334 346 # Set up firmware config
335 347 cat <<EOM >$R/boot/firmware/config.txt
336 348 # For more options and information see
337 349 # http://www.raspberrypi.org/documentation/configuration/config-txt.md
338 350 # Some settings may impact device functionality. See link above for details
339 351
340 352 # uncomment if you get no picture on HDMI for a default "safe" mode
341 353 #hdmi_safe=1
342 354
343 355 # uncomment this if your display has a black border of unused pixels visible
344 356 # and your display can output without overscan
345 357 #disable_overscan=1
346 358
347 359 # uncomment the following to adjust overscan. Use positive numbers if console
348 360 # goes off screen, and negative if there is too much border
349 361 #overscan_left=16
350 362 #overscan_right=16
351 363 #overscan_top=16
352 364 #overscan_bottom=16
353 365
354 366 # uncomment to force a console size. By default it will be display's size minus
355 367 # overscan.
356 368 #framebuffer_width=1280
357 369 #framebuffer_height=720
358 370
359 371 # uncomment if hdmi display is not detected and composite is being output
360 372 #hdmi_force_hotplug=1
361 373
362 374 # uncomment to force a specific HDMI mode (this will force VGA)
363 375 #hdmi_group=1
364 376 #hdmi_mode=1
365 377
366 378 # uncomment to force a HDMI mode rather than DVI. This can make audio work in
367 379 # DMT (computer monitor) modes
368 380 #hdmi_drive=2
369 381
370 382 # uncomment to increase signal to HDMI, if you have interference, blanking, or
371 383 # no display
372 384 #config_hdmi_boost=4
373 385
374 386 # uncomment for composite PAL
375 387 #sdtv_mode=2
376 388
377 389 # uncomment to overclock the arm. 700 MHz is the default.
378 390 #arm_freq=800
379 391 EOM
380 392
381 393 # Load snd_bcm2835 kernel module at boot time
382 394 if [ "$ENABLE_SOUND" = true ] ; then
383 395 echo "snd_bcm2835" >>$R/etc/modules
384 396 fi
385 397
386 398 # Set smallest possible GPU memory allocation size: 16MB (no X)
387 399 if [ "$ENABLE_MINGPU" = true ] ; then
388 400 echo "gpu_mem=16" >>$R/boot/firmware/config.txt
389 401 fi
390 402
391 403 # Create symlinks
392 404 ln -sf firmware/config.txt $R/boot/config.txt
393 405 ln -sf firmware/cmdline.txt $R/boot/cmdline.txt
394 406
395 407 # Prepare modules-load.d directory
396 408 mkdir -p $R/lib/modules-load.d/
397 409
398 410 # Load random module on boot
399 411 if [ "$ENABLE_HWRANDOM" = true ] ; then
400 412 cat <<EOM >$R/lib/modules-load.d/rpi2.conf
401 413 bcm2708_rng
402 414 EOM
403 415 fi
404 416
405 417 # Prepare modprobe.d directory
406 418 mkdir -p $R/etc/modprobe.d/
407 419
408 420 # Blacklist sound modules
409 421 cat <<EOM >$R/etc/modprobe.d/raspi-blacklist.conf
410 422 blacklist snd_soc_core
411 423 blacklist snd_pcm
412 424 blacklist snd_pcm_dmaengine
413 425 blacklist snd_timer
414 426 blacklist snd_compress
415 427 blacklist snd_soc_pcm512x_i2c
416 428 blacklist snd_soc_pcm512x
417 429 blacklist snd_soc_tas5713
418 430 blacklist snd_soc_wm8804
419 431 EOM
420 432
421 433 # Create default fstab
422 434 cat <<EOM >$R/etc/fstab
423 435 /dev/mmcblk0p2 / ext4 noatime,nodiratime,errors=remount-ro,discard,data=writeback,commit=100 0 1
424 436 /dev/mmcblk0p1 /boot/firmware vfat defaults,noatime,nodiratime 0 2
425 437 EOM
426 438
427 439 # Avoid swapping and increase cache sizes
428 440 cat <<EOM >>$R/etc/sysctl.d/99-sysctl.conf
429 441
430 442 # Avoid swapping and increase cache sizes
431 443 vm.swappiness=1
432 444 vm.dirty_background_ratio=20
433 445 vm.dirty_ratio=40
434 446 vm.dirty_writeback_centisecs=500
435 447 vm.dirty_expire_centisecs=6000
436 448 EOM
437 449
438 450 # Enable network stack hardening
439 451 if [ "$ENABLE_HARDNET" = true ] ; then
440 452 cat <<EOM >>$R/etc/sysctl.d/99-sysctl.conf
441 453
442 454 # Enable network stack hardening
443 455 net.ipv4.tcp_timestamps=0
444 456 net.ipv4.tcp_syncookies=1
445 457 net.ipv4.conf.all.rp_filter=1
446 458 net.ipv4.conf.all.accept_redirects=0
447 459 net.ipv4.conf.all.send_redirects=0
448 460 net.ipv4.conf.all.accept_source_route=0
449 461 net.ipv4.conf.default.rp_filter=1
450 462 net.ipv4.conf.default.accept_redirects=0
451 463 net.ipv4.conf.default.send_redirects=0
452 464 net.ipv4.conf.default.accept_source_route=0
453 465 net.ipv4.conf.lo.accept_redirects=0
454 466 net.ipv4.conf.lo.send_redirects=0
455 467 net.ipv4.conf.lo.accept_source_route=0
456 468 net.ipv4.conf.eth0.accept_redirects=0
457 469 net.ipv4.conf.eth0.send_redirects=0
458 470 net.ipv4.conf.eth0.accept_source_route=0
459 471 net.ipv4.icmp_echo_ignore_broadcasts=1
460 472 net.ipv4.icmp_ignore_bogus_error_responses=1
461 473
462 474 net.ipv6.conf.all.accept_redirects=0
463 475 net.ipv6.conf.all.accept_source_route=0
464 476 net.ipv6.conf.all.router_solicitations=0
465 477 net.ipv6.conf.all.accept_ra_rtr_pref=0
466 478 net.ipv6.conf.all.accept_ra_pinfo=0
467 479 net.ipv6.conf.all.accept_ra_defrtr=0
468 480 net.ipv6.conf.all.autoconf=0
469 481 net.ipv6.conf.all.dad_transmits=0
470 482 net.ipv6.conf.all.max_addresses=1
471 483
472 484 net.ipv6.conf.default.accept_redirects=0
473 485 net.ipv6.conf.default.accept_source_route=0
474 486 net.ipv6.conf.default.router_solicitations=0
475 487 net.ipv6.conf.default.accept_ra_rtr_pref=0
476 488 net.ipv6.conf.default.accept_ra_pinfo=0
477 489 net.ipv6.conf.default.accept_ra_defrtr=0
478 490 net.ipv6.conf.default.autoconf=0
479 491 net.ipv6.conf.default.dad_transmits=0
480 492 net.ipv6.conf.default.max_addresses=1
481 493
482 494 net.ipv6.conf.lo.accept_redirects=0
483 495 net.ipv6.conf.lo.accept_source_route=0
484 496 net.ipv6.conf.lo.router_solicitations=0
485 497 net.ipv6.conf.lo.accept_ra_rtr_pref=0
486 498 net.ipv6.conf.lo.accept_ra_pinfo=0
487 499 net.ipv6.conf.lo.accept_ra_defrtr=0
488 500 net.ipv6.conf.lo.autoconf=0
489 501 net.ipv6.conf.lo.dad_transmits=0
490 502 net.ipv6.conf.lo.max_addresses=1
491 503
492 504 net.ipv6.conf.eth0.accept_redirects=0
493 505 net.ipv6.conf.eth0.accept_source_route=0
494 506 net.ipv6.conf.eth0.router_solicitations=0
495 507 net.ipv6.conf.eth0.accept_ra_rtr_pref=0
496 508 net.ipv6.conf.eth0.accept_ra_pinfo=0
497 509 net.ipv6.conf.eth0.accept_ra_defrtr=0
498 510 net.ipv6.conf.eth0.autoconf=0
499 511 net.ipv6.conf.eth0.dad_transmits=0
500 512 net.ipv6.conf.eth0.max_addresses=1
501 513 EOM
502 514
503 515 # Enable resolver warnings about spoofed addresses
504 516 cat <<EOM >>$R/etc/host.conf
505 517 spoof warn
506 518 EOM
507 519 fi
508 520
509 521 # Regenerate openssh server host keys
510 522 if [ "$ENABLE_SSHD" = true ] ; then
511 523 rm -fr $R/etc/ssh/ssh_host_*
512 524 LANG=C chroot $R dpkg-reconfigure openssh-server
513 525 fi
514 526
515 527 # Enable serial console systemd style
516 528 if [ "$ENABLE_CONSOLE" = true ] ; then
517 529 LANG=C chroot $R systemctl enable serial-getty\@ttyAMA0.service
518 530 fi
519 531
520 532 # Enable firewall based on iptables started by systemd service
521 533 if [ "$ENABLE_IPTABLES" = true ] ; then
522 534 # Create iptables configuration directory
523 535 mkdir -p "$R/etc/iptables"
524 536
525 537 # Create iptables systemd service
526 538 cat <<EOM >$R/etc/systemd/system/iptables.service
527 539 [Unit]
528 540 Description=Packet Filtering Framework
529 541 DefaultDependencies=no
530 542 After=systemd-sysctl.service
531 543 Before=sysinit.target
532 544 [Service]
533 545 Type=oneshot
534 546 ExecStart=/sbin/iptables-restore /etc/iptables/iptables.rules
535 547 ExecReload=/sbin/iptables-restore /etc/iptables/iptables.rules
536 548 ExecStop=/etc/iptables/flush-iptables.sh
537 549 RemainAfterExit=yes
538 550 [Install]
539 551 WantedBy=multi-user.target
540 552 EOM
541 553
542 554 # Create flush-table script called by iptables service
543 555 cat <<EOM >$R/etc/iptables/flush-iptables.sh
544 556 #!/bin/sh
545 557 iptables -F
546 558 iptables -X
547 559 iptables -t nat -F
548 560 iptables -t nat -X
549 561 iptables -t mangle -F
550 562 iptables -t mangle -X
551 563 iptables -P INPUT ACCEPT
552 564 iptables -P FORWARD ACCEPT
553 565 iptables -P OUTPUT ACCEPT
554 566 EOM
555 567
556 568 # Create iptables rule file
557 569 cat <<EOM >$R/etc/iptables/iptables.rules
558 570 *filter
559 571 :INPUT DROP [0:0]
560 572 :FORWARD DROP [0:0]
561 573 :OUTPUT ACCEPT [0:0]
562 574 :TCP - [0:0]
563 575 :UDP - [0:0]
564 576 :SSH - [0:0]
565 577
566 578 # Rate limit ping requests
567 579 -A INPUT -p icmp --icmp-type echo-request -m limit --limit 30/min --limit-burst 8 -j ACCEPT
568 580 -A INPUT -p icmp --icmp-type echo-request -j DROP
569 581
570 582 # Accept established connections
571 583 -A INPUT -m conntrack --ctstate RELATED,ESTABLISHED -j ACCEPT
572 584
573 585 # Accept all traffic on loopback interface
574 586 -A INPUT -i lo -j ACCEPT
575 587
576 588 # Drop packets declared invalid
577 589 -A INPUT -m conntrack --ctstate INVALID -j DROP
578 590
579 591 # SSH rate limiting
580 592 -A INPUT -p tcp --dport ssh -m conntrack --ctstate NEW -j SSH
581 593 -A SSH -m recent --name sshbf --rttl --rcheck --hitcount 3 --seconds 10 -j DROP
582 594 -A SSH -m recent --name sshbf --rttl --rcheck --hitcount 20 --seconds 1800 -j DROP
583 595 -A SSH -m recent --name sshbf --set -j ACCEPT
584 596
585 597 # Send TCP and UDP connections to their respective rules chain
586 598 -A INPUT -p udp -m conntrack --ctstate NEW -j UDP
587 599 -A INPUT -p tcp --syn -m conntrack --ctstate NEW -j TCP
588 600
589 601 # Reject dropped packets with a RFC compliant responce
590 602 -A INPUT -p udp -j REJECT --reject-with icmp-port-unreachable
591 603 -A INPUT -p tcp -j REJECT --reject-with tcp-rst
592 604 -A INPUT -j REJECT --reject-with icmp-proto-unreachable
593 605
594 606 ## TCP PORT RULES
595 607 # -A TCP -p tcp -j LOG
596 608
597 609 ## UDP PORT RULES
598 610 # -A UDP -p udp -j LOG
599 611
600 612 COMMIT
601 613 EOM
602 614
603 615 # Reload systemd configuration and enable iptables service
604 616 LANG=C chroot $R systemctl daemon-reload
605 617 LANG=C chroot $R systemctl enable iptables.service
606 618
607 619 if [ "$ENABLE_IPV6" = true ] ; then
608 620 # Create ip6tables systemd service
609 621 cat <<EOM >$R/etc/systemd/system/ip6tables.service
610 622 [Unit]
611 623 Description=Packet Filtering Framework
612 624 DefaultDependencies=no
613 625 After=systemd-sysctl.service
614 626 Before=sysinit.target
615 627 [Service]
616 628 Type=oneshot
617 629 ExecStart=/sbin/ip6tables-restore /etc/iptables/ip6tables.rules
618 630 ExecReload=/sbin/ip6tables-restore /etc/iptables/ip6tables.rules
619 631 ExecStop=/etc/iptables/flush-ip6tables.sh
620 632 RemainAfterExit=yes
621 633 [Install]
622 634 WantedBy=multi-user.target
623 635 EOM
624 636
625 637 # Create ip6tables file
626 638 cat <<EOM >$R/etc/iptables/flush-ip6tables.sh
627 639 #!/bin/sh
628 640 ip6tables -F
629 641 ip6tables -X
630 642 ip6tables -Z
631 643 for table in $(</proc/net/ip6_tables_names)
632 644 do
633 645 ip6tables -t \$table -F
634 646 ip6tables -t \$table -X
635 647 ip6tables -t \$table -Z
636 648 done
637 649 ip6tables -P INPUT ACCEPT
638 650 ip6tables -P OUTPUT ACCEPT
639 651 ip6tables -P FORWARD ACCEPT
640 652 EOM
641 653
642 654 # Create ip6tables rule file
643 655 cat <<EOM >$R/etc/iptables/ip6tables.rules
644 656 *filter
645 657 :INPUT DROP [0:0]
646 658 :FORWARD DROP [0:0]
647 659 :OUTPUT ACCEPT [0:0]
648 660 :TCP - [0:0]
649 661 :UDP - [0:0]
650 662 :SSH - [0:0]
651 663
652 664 # Drop packets with RH0 headers
653 665 -A INPUT -m rt --rt-type 0 -j DROP
654 666 -A OUTPUT -m rt --rt-type 0 -j DROP
655 667 -A FORWARD -m rt --rt-type 0 -j DROP
656 668
657 669 # Rate limit ping requests
658 670 -A INPUT -p icmpv6 --icmpv6-type echo-request -m limit --limit 30/min --limit-burst 8 -j ACCEPT
659 671 -A INPUT -p icmpv6 --icmpv6-type echo-request -j DROP
660 672
661 673 # Accept established connections
662 674 -A INPUT -m conntrack --ctstate RELATED,ESTABLISHED -j ACCEPT
663 675
664 676 # Accept all traffic on loopback interface
665 677 -A INPUT -i lo -j ACCEPT
666 678
667 679 # Drop packets declared invalid
668 680 -A INPUT -m conntrack --ctstate INVALID -j DROP
669 681
670 682 # SSH rate limiting
671 683 -A INPUT -p tcp --dport ssh -m conntrack --ctstate NEW -j SSH
672 684 -A SSH -m recent --name sshbf --rttl --rcheck --hitcount 3 --seconds 10 -j DROP
673 685 -A SSH -m recent --name sshbf --rttl --rcheck --hitcount 20 --seconds 1800 -j DROP
674 686 -A SSH -m recent --name sshbf --set -j ACCEPT
675 687
676 688 # Send TCP and UDP connections to their respective rules chain
677 689 -A INPUT -p udp -m conntrack --ctstate NEW -j UDP
678 690 -A INPUT -p tcp --syn -m conntrack --ctstate NEW -j TCP
679 691
680 692 # Reject dropped packets with a RFC compliant responce
681 693 -A INPUT -p udp -j REJECT --reject-with icmp6-adm-prohibited
682 694 -A INPUT -p tcp -j REJECT --reject-with icmp6-adm-prohibited
683 695 -A INPUT -j REJECT --reject-with icmp6-adm-prohibited
684 696
685 697 ## TCP PORT RULES
686 698 # -A TCP -p tcp -j LOG
687 699
688 700 ## UDP PORT RULES
689 701 # -A UDP -p udp -j LOG
690 702
691 703 COMMIT
692 704 EOM
693 705
694 706 # Reload systemd configuration and enable iptables service
695 707 LANG=C chroot $R systemctl daemon-reload
696 708 LANG=C chroot $R systemctl enable ip6tables.service
697 709 fi
698 710 fi
699 711
700 712 # Remove SSHD related iptables rules
701 713 if [ "$ENABLE_SSHD" = false ] ; then
702 714 sed -e '/^#/! {/SSH/ s/^/# /}' -i $R/etc/iptables/iptables.rules 2> /dev/null
703 715 sed -e '/^#/! {/SSH/ s/^/# /}' -i $R/etc/iptables/ip6tables.rules 2> /dev/null
704 716 fi
705 717
706 718 # Install gcc/c++ build environment inside the chroot
707 719 if [ "$ENABLE_UBOOT" = true ] || [ "$ENABLE_FBTURBO" = true ]; then
708 720 LANG=C chroot $R apt-get install -q -y --force-yes --no-install-recommends linux-compiler-gcc-4.9-arm g++ make bc
709 721 fi
710 722
711 723 # Fetch and build U-Boot bootloader
712 724 if [ "$ENABLE_UBOOT" = true ] ; then
713 725 # Fetch U-Boot bootloader sources
714 726 git -C $R/tmp clone git://git.denx.de/u-boot.git
715 727
716 728 # Build and install U-Boot inside chroot
717 729 LANG=C chroot $R make -C /tmp/u-boot/ rpi_2_defconfig all
718 730
719 731 # Copy compiled bootloader binary and set config.txt to load it
720 732 cp $R/tmp/u-boot/u-boot.bin $R/boot/firmware/
721 733 printf "\n# boot u-boot kernel\nkernel=u-boot.bin\n" >> $R/boot/firmware/config.txt
722 734
723 735 # Set U-Boot command file
724 736 cat <<EOM >$R/boot/firmware/uboot.mkimage
725 737 # Tell Linux that it is booting on a Raspberry Pi2
726 738 setenv machid 0x00000c42
727 739
728 740 # Set the kernel boot command line
729 741 setenv bootargs "earlyprintk ${CMDLINE}"
730 742
731 743 # Save these changes to u-boot's environment
732 744 saveenv
733 745
734 746 # Load the existing Linux kernel into RAM
735 747 fatload mmc 0:1 \${kernel_addr_r} kernel7.img
736 748
737 749 # Boot the kernel we have just loaded
738 750 bootz \${kernel_addr_r}
739 751 EOM
740 752
741 753 # Generate U-Boot image from command file
742 754 LANG=C chroot $R mkimage -A arm -O linux -T script -C none -a 0x00000000 -e 0x00000000 -n "RPi2 Boot Script" -d /boot/firmware/uboot.mkimage /boot/firmware/boot.scr
743 755 fi
744 756
745 757 # Fetch and build fbturbo Xorg driver
746 758 if [ "$ENABLE_FBTURBO" = true ] ; then
747 759 # Fetch fbturbo driver sources
748 760 git -C $R/tmp clone https://github.com/ssvb/xf86-video-fbturbo.git
749 761
750 762 # Install Xorg build dependencies
751 763 LANG=C chroot $R apt-get install -q -y --no-install-recommends xorg-dev xutils-dev x11proto-dri2-dev libltdl-dev libtool automake libdrm-dev
752 764
753 765 # Build and install fbturbo driver inside chroot
754 766 LANG=C chroot $R /bin/bash -c "cd /tmp/xf86-video-fbturbo; autoreconf -vi; ./configure --prefix=/usr; make; make install"
755 767
756 768 # Add fbturbo driver to Xorg configuration
757 769 cat <<EOM >$R/usr/share/X11/xorg.conf.d/99-fbturbo.conf
758 770 Section "Device"
759 771 Identifier "Allwinner A10/A13 FBDEV"
760 772 Driver "fbturbo"
761 773 Option "fbdev" "/dev/fb0"
762 774 Option "SwapbuffersWait" "true"
763 775 EndSection
764 776 EOM
765 777
766 778 # Remove Xorg build dependencies
767 779 LANG=C chroot $R apt-get -q -y purge --auto-remove xorg-dev xutils-dev x11proto-dri2-dev libltdl-dev libtool automake libdrm-dev
768 780 fi
769 781
770 782 # Remove gcc/c++ build environment from the chroot
771 783 if [ "$ENABLE_UBOOT" = true ] || [ "$ENABLE_FBTURBO" = true ]; then
772 784 LANG=C chroot $R apt-get -y -q purge --auto-remove bc binutils cpp cpp-4.9 g++ g++-4.9 gcc gcc-4.9 libasan1 libatomic1 libc-dev-bin libc6-dev libcloog-isl4 libgcc-4.9-dev libgomp1 libisl10 libmpc3 libmpfr4 libstdc++-4.9-dev libubsan0 linux-compiler-gcc-4.9-arm linux-libc-dev make
773 785 fi
774 786
775 787 # Clean cached downloads
776 788 LANG=C chroot $R apt-get -y clean
777 789 LANG=C chroot $R apt-get -y autoclean
778 790 LANG=C chroot $R apt-get -y autoremove
779 791
780 792 # Unmount mounted filesystems
781 793 umount -l $R/proc
782 794 umount -l $R/sys
783 795
784 796 # Clean up files
785 797 rm -f $R/etc/apt/sources.list.save
786 798 rm -f $R/etc/resolvconf/resolv.conf.d/original
787 799 rm -rf $R/run
788 800 mkdir -p $R/run
789 801 rm -f $R/etc/*-
790 802 rm -f $R/root/.bash_history
791 803 rm -rf $R/tmp/*
792 804 rm -f $R/var/lib/urandom/random-seed
793 805 [ -L $R/var/lib/dbus/machine-id ] || rm -f $R/var/lib/dbus/machine-id
794 806 rm -f $R/etc/machine-id
795 807 rm -fr $R/etc/apt/apt.conf.d/10proxy
796 808
797 809 # Calculate size of the chroot directory
798 810 CHROOT_SIZE=$(expr `du -s $R | awk '{ print $1 }'` / 1024)
799 811
800 812 # Calculate required image size
801 813 IMAGE_SIZE=`expr $(expr ${CHROOT_SIZE} / 1024 + 1) \* 1024`
802 814
803 815 # Calculate number of sectors for the partition
804 816 IMAGE_SECTORS=`expr $(expr ${IMAGE_SIZE} \* 1048576) / 512 - 133120`
805 817
806 818 # Prepare date string for image file name
807 819 DATE="$(date +%Y-%m-%d)"
808 820
809 821 # Prepare image file
810 822 dd if=/dev/zero of="$BASEDIR/${DATE}-debian-${RELEASE}.img" bs=1M count=1
811 823 dd if=/dev/zero of="$BASEDIR/${DATE}-debian-${RELEASE}.img" bs=1M count=0 seek=${IMAGE_SIZE}
812 824
813 825 # Write partition table
814 826 sfdisk -q -L -f "$BASEDIR/${DATE}-debian-${RELEASE}.img" <<EOM
815 827 unit: sectors
816 828
817 829 1 : start= 2048, size= 131072, Id= c, bootable
818 830 2 : start= 133120, size= ${IMAGE_SECTORS}, Id=83
819 831 3 : start= 0, size= 0, Id= 0
820 832 4 : start= 0, size= 0, Id= 0
821 833 EOM
822 834
823 835 # Set up temporary loop devices and build filesystems
824 836 VFAT_LOOP="$(losetup -o 1M --sizelimit 64M -f --show $BASEDIR/${DATE}-debian-${RELEASE}.img)"
825 837 EXT4_LOOP="$(losetup -o 65M --sizelimit `expr ${IMAGE_SIZE} - 64`M -f --show $BASEDIR/${DATE}-debian-${RELEASE}.img)"
826 838 mkfs.vfat "$VFAT_LOOP"
827 839 mkfs.ext4 "$EXT4_LOOP"
828 840
829 841 # Mount the temporary loop devices
830 842 mkdir -p "$BUILDDIR/mount"
831 843 mount "$EXT4_LOOP" "$BUILDDIR/mount"
832 844
833 845 mkdir -p "$BUILDDIR/mount/boot/firmware"
834 846 mount "$VFAT_LOOP" "$BUILDDIR/mount/boot/firmware"
835 847
836 848 # Copy all files from the chroot to the loop device mount point directory
837 849 rsync -a "$R/" "$BUILDDIR/mount/"
838 850
839 851 # Unmount all temporary loop devices and mount points
840 852 cleanup
841 853
842 854 # (optinal) create block map file for "bmaptool"
843 855 bmaptool create -o "$BASEDIR/${DATE}-debian-${RELEASE}.bmap" "$BASEDIR/${DATE}-debian-${RELEASE}.img"
844 856
845 857 # Image was successfully created
846 858 echo "$BASEDIR/${DATE}-debian-${RELEASE}.img (${IMAGE_SIZE})" ": successfully created"
General Comments 0
Vous devez vous connecter pour laisser un commentaire. Se connecter maintenant