]> git.plutz.net Git - blast/blob - modules/default.mk
generate initramfs for raspberrypi
[blast] / modules / default.mk
1 ifdef imagesize
2   ROOT_MB := $(shell printf '%i\n' "$$(( ${imagesize} - ${BOOT_MB} - 3 ))")
3 endif
4
5 PACKAGES += btrfs-progs bzip2 ca-certificates cron deborphan firmware-linux-free gzip htop ifupdown iputils-ping irqbalance isc-dhcp-client less make net-tools nmap ntpdate openssh-client psmisc rsync sshfs sudo traceroute unzip vim wget wireless-tools wpasupplicant xz-utils zip
6
7 ifdef packages
8   PACKAGES += $(subst ${comma_},${space_},${packages})
9 endif
10
11 export DEBCONF RPICONFIG
12
13 define DEBCONF :=
14 ${DEBCONF}
15
16 keyboard-configuration  keyboard-configuration/model    select  Generic 105-key (Intl) PC
17 keyboard-configuration  keyboard-configuration/variant  select  English (US) - English (Macintosh)
18 endef
19
20 define RPICONFIG :=
21 ${RPICONFIG}
22
23 dtoverlay=vc4-fkms-v3d,cma-256
24 endef
25
26 .PHONY: _debconf_selections _raspberry_config _keyboard
27 _install: _debconf_selections
28 _debconf_selections: ${SYSROOT}
29         printf '%s\n' "$${DEBCONF}" |chroot "$${SYSROOT}" debconf-set-selections
30
31 ifdef keyboard
32   _config: _keyboard
33 endif
34 _keyboard: ${CFGROOT}
35         -sed -Ei 's;^XKBLAYOUT=.*$$;XKBLAYOUT="${keyboard}";;' "$${CFGROOT}/etc/default/keyboard"
36
37 ifdef raspi
38   _config: _raspberry_config _raspberry_initrd
39 endif
40
41 _raspberry_config: ${CFGROOT}
42         printf '%s\n' "$${RPICONFIG}" >>"$${CFGROOT}/boot/config.txt"
43
44 _raspberry_initrd: ${CFGROOT}
45         k=$${CFGROOT}/lib/modules/*-v7+; \
46         chroot $${CFGROOT} update-initramfs -c -k "$${k##*/}"; \
47         printf 'initramfs initrd.img-%s\n' "$${k##*/}" >>"$${CFGROOT}/boot/config.txt"
48
49 .PHONY: _timezone _locales
50
51 ifdef timezone
52   export timezone
53   PACKAGES += tzdata
54   _config: _timezone
55 endif
56
57 ifdef locales
58   PACKAGES += locales
59   _config: _locales
60 endif
61
62 _timezone: ${CFGROOT}
63         printf '%s\n' "$${timezone}" >"$${CFGROOT}/etc/timezone"
64         ln -sf /usr/share/zoneinfo/"$${timezone}" "$${CFGROOT}/etc/localtime"
65
66 _locales: ${CFGROOT}
67         for l in $(subst ${comma_},${space_},${locales}); do \
68                 printf '%s %s\n' "$${l}" "$${l#*.}"; \
69         done >"$${CFGROOT}/etc/locale.gen"
70         printf 'LANG=%s\n' "$(firstword $(subst ${comma_},${space_},${locales}))" >"$${CFGROOT}/etc/default/locale"
71         chroot "$${CFGROOT}" locale-gen
72
73 .PHONY: _rootpass _users _hostname
74
75 ifdef rootpass
76   export rootpass
77   _config: _rootpass
78 endif
79
80 ifdef rootkey
81   export rootkey
82   _config: _rootkey
83 endif
84
85 ifdef users
86   _config: _users
87 endif
88
89 ifdef hostname
90   export hostname
91   _config: _hostname
92 endif
93
94 _rootpass: ${CFGROOT}
95         chroot "$${CFGROOT}" usermod -p "$$(openssl passwd "$${rootpass}")" root
96
97 ${rootkey}.pub:
98         [ -f "$@" ] || ssh-keygen -N '' -f "$${rootkey}"
99
100 _rootkey: ${CFGROOT} ${rootkey}.pub
101         mkdir -m 700 "$${CFGROOT}/root/.ssh/"
102         cp "$${rootkey}.pub" "$${CFGROOT}/root/.ssh/authorized_keys"
103
104 _users: ${CFGROOT}
105         for u in $(subst ${comma_},${space_},${users}); do \
106                 chroot "$${CFGROOT}" useradd -s /bin/bash -p "$$(openssl passwd "")" "$$u"; \
107         done
108
109 _hostname: ${CFGROOT}
110         printf '%s\n' "$${hostname}" >"$${CFGROOT}/etc/hostname"
111         sed -Ei "s;^127\.0\.0\.1.*$$;&  $${hostname};" "$${CFGROOT}/etc/hosts"
112
113 ifdef wifi
114   _config: ${CFGROOT}/etc/network/interfaces.d/wifi
115   ifdef wifipass
116     export wifi wifipass
117     ${CFGROOT}/etc/network/interfaces.d/wifi: ${CFGROOT}
118         printf 'auto wlan0\nallow-hotplug wlan0\n\niface wlan0 inet dhcp\n' >$@
119         printf '  wpa-ssid "%s"\n  wpa-psk "%s"\n' "$$wifi" "$$wifipass" >>$@
120   else
121     export wifi
122     ${CFGROOT}/etc/network/interfaces.d/wifi: ${CFGROOT}
123         printf 'auto wlan0\nallow-hotplug wlan0\n\niface wlan0 inet dhcp\n' >$@
124         printf '  wireless-ssid "%s"\n' "$$wifi" >>$@
125   endif
126 endif