@@ -7,6 +7,14 | |||
|
7 | 7 | |
|
8 | 8 | # Install and setup timezone |
|
9 | 9 | echo "${TIMEZONE}" > "${ETC_DIR}/timezone" |
|
10 | if [ -f "${ETC_DIR}/localtime" ]; then | |
|
11 | # 1. If 11-apt.sh upgrades the package 'tzdata', '/etc/localtime' was created | |
|
12 | # because 'dpkg-reconfigure -f noninteractive tzdata' was executed by apt-get. | |
|
13 | # 2. If '/etc/localtime' exists, our execution of 'dpkg-reconfigure -f noninteractive tzdata' | |
|
14 | # will ignore the our timezone set in '/etc/timezone'. | |
|
15 | # 3. Removing /etc/localtime will solve this. | |
|
16 | rm -f "${ETC_DIR}/localtime" | |
|
17 | fi | |
|
10 | 18 | chroot_exec dpkg-reconfigure -f noninteractive tzdata |
|
11 | 19 | |
|
12 | 20 | # Install and setup default locale and keyboard configuration |
@@ -33,84 +33,81 if [ "$ENABLE_USBBOOT" = true ] ; then | |||
|
33 | 33 | sed -i "s/mmcblk0p2/sda2/" "${ETC_DIR}/fstab" |
|
34 | 34 | |
|
35 | 35 | # Add usb/sda2 disk to crypttab |
|
36 | sed -i "s/mmcblk0p2/sda2/" "${ETC_DIR}/crypttab" | |
|
36 | if [ "$ENABLE_CRYPTFS" = true ] ; then | |
|
37 | sed -i "s/mmcblk0p2/sda2/" "${ETC_DIR}/crypttab" | |
|
38 | fi | |
|
37 | 39 | fi |
|
38 | 40 | |
|
39 | 41 | # Generate initramfs file |
|
40 | 42 | if [ "$ENABLE_INITRAMFS" = true ] ; then |
|
41 |
|
|
|
42 |
|
|
|
43 |
|
|
|
44 |
|
|
|
45 |
|
|
|
46 |
|
|
|
47 | fi | |
|
43 | if [ "$ENABLE_CRYPTFS" = true ] ; then | |
|
44 | # Include initramfs scripts to auto expand encrypted root partition | |
|
45 | if [ "$EXPANDROOT" = true ] ; then | |
|
46 | install_exec files/initramfs/expand_encrypted_rootfs "${ETC_DIR}/initramfs-tools/scripts/init-premount/expand_encrypted_rootfs" | |
|
47 | install_exec files/initramfs/expand-premount "${ETC_DIR}/initramfs-tools/scripts/local-premount/expand-premount" | |
|
48 | install_exec files/initramfs/expand-tools "${ETC_DIR}/initramfs-tools/hooks/expand-tools" | |
|
49 | fi | |
|
48 | 50 | |
|
49 | if [ "$ENABLE_DHCP" = false ] ; then | |
|
50 |
|
|
|
51 |
|
|
|
51 | if [ "$ENABLE_DHCP" = false ] ; then | |
|
52 | # Get cdir from NET_ADDRESS e.g. 24 | |
|
53 | cdir=$(printf ${NET_ADDRESS} | cut -d '/' -f2) | |
|
52 | 54 | |
|
53 |
|
|
|
54 |
|
|
|
55 | # Convert cdir ro netmask e.g. 24 to 255.255.255.0 | |
|
56 | NET_MASK=$(cdr2mask "$cdir") | |
|
55 | 57 | |
|
56 |
|
|
|
57 |
|
|
|
58 | ||
|
59 | # Regenerate initramfs | |
|
60 | chroot_exec mkinitramfs -o "/boot/firmware/initramfs-${KERNEL_VERSION}" "${KERNEL_VERSION}" | |
|
61 | fi | |
|
62 | ||
|
63 | if [ "$CRYPTFS_DROPBEAR" = true ]; then | |
|
64 | if [ -n "$CRYPTFS_DROPBEAR_PUBKEY" ] && [ -f "$CRYPTFS_DROPBEAR_PUBKEY" ] ; then | |
|
65 | install_readonly "${CRYPTFS_DROPBEAR_PUBKEY}" "${ETC_DIR}"/dropbear-initramfs/id_rsa.pub | |
|
66 | cat "${ETC_DIR}"/dropbear-initramfs/id_rsa.pub >> "${ETC_DIR}"/dropbear-initramfs/authorized_keys | |
|
67 | else | |
|
68 | # Create key | |
|
69 |
|
|
|
70 | ||
|
71 | # Convert dropbear key to openssh key | |
|
72 |
|
|
|
73 | ||
|
74 | # Get Public Key Part | |
|
75 | chroot_exec /usr/bin/dropbearkey -y -f /etc/dropbear-initramfs/id_rsa.dropbear | chroot_exec tee /etc/dropbear-initramfs/id_rsa.pub | |
|
76 | ||
|
77 | # Delete unwanted lines | |
|
78 | sed -i '/Public/d' "${ETC_DIR}"/dropbear-initramfs/id_rsa.pub | |
|
79 | sed -i '/Fingerprint/d' "${ETC_DIR}"/dropbear-initramfs/id_rsa.pub | |
|
80 | ||
|
81 | # Trust the new key | |
|
82 |
|
|
|
83 | ||
|
84 | # Save Keys - convert with putty from rsa/openssh to puttkey | |
|
85 | cp -f "${ETC_DIR}"/dropbear-initramfs/id_rsa "${BASEDIR}"/dropbear_initramfs_key.rsa | |
|
86 | ||
|
87 | # Get unlock script | |
|
88 | install_exec files/initramfs/crypt_unlock.sh "${ETC_DIR}"/initramfs-tools/hooks/crypt_unlock.sh | |
|
89 | ||
|
90 | # Enable Dropbear inside initramfs | |
|
91 | printf "#\n# DROPBEAR: [ y | n ]\n#\n\nDROPBEAR=y\n" >> "${ETC_DIR}/initramfs-tools/initramfs.conf" | |
|
92 | ||
|
93 | # Enable Dropbear inside initramfs | |
|
94 | sed -i "54 i sleep 5" "${R}"/usr/share/initramfs-tools/scripts/init-premount/dropbear | |
|
95 | fi | |
|
58 | # Write static ip settings to "${ETC_DIR}"/initramfs-tools/initramfs.conf | |
|
59 | sed -i "\$aIP=${NET_ADDRESS}::${NET_GATEWAY}:${NET_MASK}:${HOSTNAME}:" "${ETC_DIR}"/initramfs-tools/initramfs.conf | |
|
60 | fi | |
|
61 | ||
|
62 | if [ "$CRYPTFS_DROPBEAR" = true ]; then | |
|
63 | if [ -n "$CRYPTFS_DROPBEAR_PUBKEY" ] && [ -f "$CRYPTFS_DROPBEAR_PUBKEY" ] ; then | |
|
64 | install_readonly "${CRYPTFS_DROPBEAR_PUBKEY}" "${ETC_DIR}"/dropbear-initramfs/id_rsa.pub | |
|
65 | cat "${ETC_DIR}"/dropbear-initramfs/id_rsa.pub >> "${ETC_DIR}"/dropbear-initramfs/authorized_keys | |
|
66 | else | |
|
67 | # Create key | |
|
68 | chroot_exec /usr/bin/dropbearkey -t rsa -f /etc/dropbear-initramfs/id_rsa.dropbear | |
|
69 | ||
|
70 | # Convert dropbear key to openssh key | |
|
71 | chroot_exec /usr/lib/dropbear/dropbearconvert dropbear openssh /etc/dropbear-initramfs/id_rsa.dropbear /etc/dropbear-initramfs/id_rsa | |
|
72 | ||
|
73 | # Get Public Key Part | |
|
74 | chroot_exec /usr/bin/dropbearkey -y -f /etc/dropbear-initramfs/id_rsa.dropbear | chroot_exec tee /etc/dropbear-initramfs/id_rsa.pub | |
|
75 | ||
|
76 | # Delete unwanted lines | |
|
77 | sed -i '/Public/d' "${ETC_DIR}"/dropbear-initramfs/id_rsa.pub | |
|
78 | sed -i '/Fingerprint/d' "${ETC_DIR}"/dropbear-initramfs/id_rsa.pub | |
|
79 | ||
|
80 | # Trust the new key | |
|
81 | cat "${ETC_DIR}"/dropbear-initramfs/id_rsa.pub > "${ETC_DIR}"/dropbear-initramfs/authorized_keys | |
|
82 | ||
|
83 | # Save Keys - convert with putty from rsa/openssh to puttkey | |
|
84 | cp -f "${ETC_DIR}"/dropbear-initramfs/id_rsa "${BASEDIR}"/dropbear_initramfs_key.rsa | |
|
85 | fi | |
|
86 | ||
|
87 | # Get unlock script | |
|
88 | install_exec files/initramfs/crypt_unlock.sh "${ETC_DIR}"/initramfs-tools/hooks/crypt_unlock.sh | |
|
89 | ||
|
90 | # Enable Dropbear inside initramfs | |
|
91 | printf "#\n# DROPBEAR: [ y | n ]\n#\n\nDROPBEAR=y\n" >> "${ETC_DIR}/initramfs-tools/initramfs.conf" | |
|
92 | ||
|
93 | # Enable Dropbear inside initramfs | |
|
94 | sed -i "54 i sleep 5" "${R}"/usr/share/initramfs-tools/scripts/init-premount/dropbear | |
|
95 | else | |
|
96 | # Disable SSHD inside initramfs | |
|
97 | printf "#\n# DROPBEAR: [ y | n ]\n#\n\nDROPBEAR=n\n" >> "${ETC_DIR}/initramfs-tools/initramfs.conf" | |
|
98 | fi | |
|
99 | ||
|
100 | # Add cryptsetup modules to initramfs | |
|
101 | printf "#\n# CRYPTSETUP: [ y | n ]\n#\n\nCRYPTSETUP=y\n" >> "${ETC_DIR}/initramfs-tools/conf-hook" | |
|
102 | ||
|
103 | # Dummy mapping required by mkinitramfs | |
|
104 | echo "0 1 crypt $(echo "${CRYPTFS_CIPHER}" | cut -d ':' -f 1) ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff 0 7:0 4096" | chroot_exec dmsetup create "${CRYPTFS_MAPPING}" | |
|
105 | ||
|
106 | # Remove dummy mapping | |
|
107 | chroot_exec cryptsetup close "${CRYPTFS_MAPPING}" | |
|
96 | 108 | else |
|
97 | # Disable SSHD inside initramfs | |
|
98 | printf "#\n# DROPBEAR: [ y | n ]\n#\n\nDROPBEAR=n\n" >> "${ETC_DIR}/initramfs-tools/initramfs.conf" | |
|
99 | fi | |
|
100 | ||
|
101 | # Add cryptsetup modules to initramfs | |
|
102 | printf "#\n# CRYPTSETUP: [ y | n ]\n#\n\nCRYPTSETUP=y\n" >> "${ETC_DIR}/initramfs-tools/conf-hook" | |
|
103 | 109 | |
|
104 | # Dummy mapping required by mkinitramfs | |
|
105 | echo "0 1 crypt $(echo "${CRYPTFS_CIPHER}" | cut -d ':' -f 1) ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff 0 7:0 4096" | chroot_exec dmsetup create "${CRYPTFS_MAPPING}" | |
|
106 | ||
|
107 | # Generate initramfs with encrypted root partition support | |
|
108 | chroot_exec mkinitramfs -o "/boot/firmware/initramfs-${KERNEL_VERSION}" "${KERNEL_VERSION}" | |
|
109 | ||
|
110 | # Remove dummy mapping | |
|
111 | chroot_exec cryptsetup close "${CRYPTFS_MAPPING}" | |
|
112 | else | |
|
113 | # Generate initramfs without encrypted root partition support | |
|
114 | chroot_exec mkinitramfs -o "/boot/firmware/initramfs-${KERNEL_VERSION}" "${KERNEL_VERSION}" | |
|
115 | fi | |
|
110 | fi | |
|
111 | # Generate initramfs without encrypted root partition support | |
|
112 | chroot_exec mkinitramfs -o "/boot/firmware/initramfs-${KERNEL_VERSION}" "${KERNEL_VERSION}" | |
|
116 | 113 | fi |
General Comments 0
Vous devez vous connecter pour laisser un commentaire.
Se connecter maintenant