X-Git-Url: http://git.plutz.net/?a=blobdiff_plain;f=modules%2Fdefault.mk;h=f93fd24797b87a45d81e1129823f01435183be12;hb=c9403a89376c654bdaff36e8d32dc3e6556e349d;hp=7c3133f913fa182f348e591fdc135ee282f21971;hpb=fd7f1c1a3140e02c2716cd54a08e1f4c5220aca5;p=blast diff --git a/modules/default.mk b/modules/default.mk index 7c3133f..f93fd24 100644 --- a/modules/default.mk +++ b/modules/default.mk @@ -35,11 +35,18 @@ _keyboard: ${CFGROOT} -sed -Ei 's;^XKBLAYOUT=.*$$;XKBLAYOUT="${keyboard}";;' "$${CFGROOT}/etc/default/keyboard" ifdef raspi - _config: _raspberry_config + _config: _raspberry_config _raspberry_initrd endif + _raspberry_config: ${CFGROOT} printf '%s\n' "$${RPICONFIG}" >>"$${CFGROOT}/boot/config.txt" +_raspberry_initrd: ${CFGROOT} + printf 'nilfs2\n' >>"$${CFGROOT}/etc/initramfs-tools/modules" + k="$$(echo "$${CFGROOT}"/lib/modules/*-v7+)"; \ + chroot $${CFGROOT} update-initramfs -c -k "$${k##*/}"; \ + printf 'initramfs initrd.img-%s\n' "$${k##*/}" >>"$${CFGROOT}/boot/config.txt" + .PHONY: _timezone _locales ifdef timezone @@ -115,6 +122,6 @@ ifdef wifi export wifi ${CFGROOT}/etc/network/interfaces.d/wifi: ${CFGROOT} printf 'auto wlan0\nallow-hotplug wlan0\n\niface wlan0 inet dhcp\n' >$@ - printf ' wireless-ssid "%s"\n' "$$wifi" >>$@ + printf ' wireless-essid "%s"\n' "$$wifi" >>$@ endif endif