]> git.plutz.net Git - blast/blobdiff - Makefile
keep line breaks in DEBCONF variable
[blast] / Makefile
index 78b065af0e7d47ed322839070bcde042a99158e1..36cd2b9c0c30e00e6029f957f912c1327d94ee7c 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -4,10 +4,11 @@ nul_:=
 comma_:= ,
 space_:= ${nul_} ${nul_}
 
-.PHONY: clean .FORCE
-.PHONY: _config_raspi _partition_raspi
-.PHONY: _qemu _bootstrap _install _copy _config_raspi _config _bootloader _squash
-.PHONY: _target _partition _format _mount _sparse _umount _partcopy _mbr
+.PHONY: clean .FORCE _target
+.PHONY: _bootloader_raspi _bootloader_pc _partition_gpt _partition_raspi
+.PHONY: _squash_modules
+.PHONY: _qemu _bootstrap _install _copy _config _bootloader _squash
+.PHONY: _partition _format _mount _sparse _umount _partcopy _mbr
 
 ARCH := amd64
 KEYRING := keys/debian-archive-stretch-stable.gpg
@@ -21,114 +22,114 @@ define SOURCES =
 deb    http://cdn.debian.net/debian stretch main
 endef
 
-PACKAGES := ${PACKAGES} apt btrfs-tools busybox-static bzip2 ca-certificates cron debian-archive-keyring deborphan firmware-linux-free gzip htop ifupdown init iputils-ping irqbalance isc-dhcp-client less make net-tools nmap ntpdate openssh-client psmisc rsync sshfs sudo systemd traceroute unzip vim wget wireless-tools wpasupplicant xz-utils zip
+PACKAGES := ${PACKAGES} apt busybox-static debian-archive-keyring init systemd
 
+include config.mk
 config.mk:
        cp "config.example" "$@"
 
-include config.mk
-
 ifdef disk
-VOLUME := ${disk}
-PBOOT := ${disk}1
-PROOT := ${disk}2
-SYSROOT := hdd_mount/
-CFGROOT := hdd_mount/
-
-_target: _mbr _umount _config _install _partition
-
-_partition:
-_format: _partition
-_mount: _format
-_bootstrap: _mount
-_install: _bootstrap _mount
-_config: _install _mount
-_bootloader: _mount
-_umount: _mount _config _bootloader
-_mbr: _umount _bootloader
+  VOLUME := ${disk}
+  PBOOT := ${disk}1
+  PROOT := ${disk}2
+  SYSROOT := hdd_mount/
+  CFGROOT := hdd_mount/
+  
+  _target: _mbr _umount _config _install _partition
+  
+  _partition: _partition_gpt
+  _format: _partition
+  _mount: _format
+  _bootstrap: _mount
+  _install: _bootstrap _mount
+  _config: _install _mount
+  _bootloader: _mount _bootloader_pc
+  _umount: _mount _config _bootloader
+  _mbr: _umount _bootloader
 
 else ifdef image
-VOLUME := ${image}
-PBOOT := part_boot.img
-PROOT := part_root.img
-SYSROOT := sys_root/
-CFGROOT := img_mount/
-
-_target: _mbr _umount _partcopy _config _install
-
-_bootstrap:
-_install: _bootstrap
-_sparse:
-_format: _sparse
-_mount: _format
-_copy: _install _mount
-_config: _copy _mount
-_bootloader: _mount
-_umount: _mount _config _bootloader
-_partition:
-_partcopy: _partition _umount
-_mbr: _partcopy _bootloader
+  VOLUME := ${image}
+  PBOOT := part_boot.img
+  PROOT := part_root.img
+  SYSROOT := sys_root/
+  CFGROOT := img_mount/
+  
+  _target: _mbr _umount _partcopy _config _install
+  
+  _bootstrap:
+  _install: _bootstrap
+  _sparse:
+  _format: _sparse
+  _mount: _format
+  _copy: _install _mount
+  _config: _copy _mount
+  _bootloader: _mount _bootloader_pc
+  _umount: _mount _config _bootloader
+  _partition: _partition_gpt
+  _partcopy: _partition _umount
+  _mbr: _partcopy _bootloader
 
 else ifdef squash
-SQUASH := ${squash}
-SYSROOT := sys_root/
-CFGROOT := cfg_root/
-
-_target: _squash _install _config
-
-_bootstrap:
-_install: _bootstrap
-_copy: _install
-_config: _copy
-_squash: _config
+  SQUASH := ${squash}
+  SYSROOT := sys_root/
+  CFGROOT := cfg_root/
+  
+  _target: _squash _install _config
+  
+  _bootstrap:
+  _install: _bootstrap
+  _copy: _install
+  _config: _copy
+  _squash: _config _squash_modules
 
 else ifdef raspi
-VOLUME := ${raspi}
-PBOOT := rpi_boot.img
-PROOT := rpi_root.img
-SYSROOT := rpi_root/
-CFGROOT := img_mount/
-
-ARCH := armhf
-KEYRING := keys/raspbian-archive-keyring.gpg
-BOOTSTRAP := http://raspbian.raspberrypi.org/raspbian
-
-define SOURCES =
-deb    http://raspbian.raspberrypi.org/raspbian stretch main non-free firmware rpi
-deb    http://archive.raspberrypi.org/debian stretch main
-endef
+  VOLUME := ${raspi}
+  PBOOT := rpi_boot.img
+  PROOT := rpi_root.img
+  SYSROOT := rpi_root/
+  CFGROOT := img_mount/
+  
+  ARCH := armhf
+  KEYRING := keys/raspbian-archive-keyring.gpg
+  BOOTSTRAP := http://raspbian.raspberrypi.org/raspbian
+
+  define SOURCES =
+  deb  http://raspbian.raspberrypi.org/raspbian stretch main non-free firmware rpi
+  deb  http://archive.raspberrypi.org/debian stretch main
+  endef
+
 PACKAGES := ${PACKAGES} firmware-brcm80211 libraspberrypi-bin libraspberrypi0 pi-bluetooth raspberrypi-bootloader raspberrypi-kernel
 
-_target: _umount _partcopy _config _install
-
-_qemu:
-_bootstrap: _qemu
-_install: _bootstrap
-_sparse:
-_format: _sparse
-_mount: _format
-_copy: _install _mount
-_config_raspi: _copy _mount
-_config: _copy _mount _config_raspi
-_umount: _mount _config
-_partition_raspi:
-_partcopy: _partition_raspi _umount
+  _target: _umount _partcopy _config _install
+  
+  _qemu:
+  _bootstrap: _qemu
+  _install: _bootstrap
+  _sparse:
+  _format: _sparse
+  _mount: _format
+  _copy: _install _mount
+  _config: _copy _mount
+  _bootloader: _mount _bootloader_raspi
+  _umount: _mount _config _bootloader
+  _partition: _partition_raspi
+  _partcopy: _partition _umount
 
 else
-_target:
+  _target:
        false
 
 endif
 
 include modules/default.mk
 ifdef modules
-include $(addsuffix .mk, $(addprefix modules/, $(subst ${comma_},${space_},${modules})))
+  include $(addsuffix .mk, $(addprefix modules/, $(subst ${comma_},${space_},${modules})))
 endif
 
 ifeq "${ARCH}" "amd64"
-PACKAGES := ${PACKAGES} linux-image-amd64
+  PACKAGES += linux-image-amd64
 else ifeq "${ARCH}" "i386"
-PACKAGES := ${PACKAGES} linux-image-686
+  PACKAGES += linux-image-686
 endif
 
 export SOURCES SYSROOT CFGROOT VOLUME PBOOT PROOT SQUASH ARCH KEYRING BOOTSTRAP
@@ -192,10 +193,6 @@ _install: ${SYSROOT} _aptkeys _norecommends
 _copy: ${SYSROOT} ${CFGROOT}
        cp -au "$${SYSROOT}/." "$${CFGROOT}/"
 
-_config_raspi: ${CFGROOT}/boot/cmdline.txt
-${CFGROOT}/boot/cmdline.txt: ${CFGROOT}
-       printf 'dwc_otg.lpm_enable=0 console=serial0,115200 console=tty1 root=/dev/mmcblk0p2 rootfstype=ext4 elevator=deadline fsck.repair=yes rootwait quiet' >"$@"
-
 .PHONY: _common_config
 _config: _common_config
 _common_config: ${CFGROOT}
@@ -207,12 +204,16 @@ ${SQUASH}: ${CFGROOT}
        -rm "$${SQUASH}"
        mksquashfs "$${CFGROOT}" "$${SQUASH}" -comp xz
 
-_squash: ${SQUASH}
+_squash_modules: ${CFGROOT}
+       printf '%s\n' squashfs nbd >>"${CFGROOT}/etc/initramfs-tools/modules"
+
+_squash: ${SQUASH} _squash_modules
 
 ${VOLUME}: .FORCE
        ! printf '%s\n' "$${VOLUME}" |grep -q '^/dev/'  # abort if volume should be real device
        dd count=0 of="$${VOLUME}"  # truncate
        dd bs=1M count=0 seek=$$((3 + ${BOOT_MB} + ${ROOT_MB})) of="$${VOLUME}"
+       chmod g+w "$${VOLUME}"
 
 ${PBOOT}: .FORCE
        ! printf '%s\n' "$${PBOOT}" |grep -q '^/dev/'  # abort if volume should be real device
@@ -228,7 +229,7 @@ _partition_raspi: ${VOLUME}
        printf 'label: dos\n\n: start=2MiB, size=%iMiB, type=c\n: start=%iMiB, size=%iMiB, type=83\n' \
                ${BOOT_MB} "$$((${BOOT_MB} + 2))" ${ROOT_MB} | sfdisk "$${VOLUME}"
 
-_partition: ${VOLUME}
+_partition_gpt: ${VOLUME}
        printf 'label: gpt\n\n: start=2MiB, size=%iMiB, type=1, attrs="LegacyBIOSBootable"\n: size=%iMiB, type=20\n' \
                ${BOOT_MB} ${ROOT_MB} | sfdisk "$${VOLUME}"
 
@@ -271,7 +272,12 @@ _grub_efi64: ${CFGROOT}
        mkdir -p "$${CFGROOT}/boot/EFI/BOOT"
        grub-mkimage -p / -O x86_64-efi fat part_gpt normal linux all_video >"$${CFGROOT}/boot/EFI/BOOT/BOOTX64.EFI"
 
-_bootloader: ${CFGROOT} _grub_efi32 _grub_efi64 _syslinux_bios #_syslinux_efi32 _syslinux_efi64
+${CFGROOT}/boot/cmdline.txt: ${CFGROOT}
+       printf 'dwc_otg.lpm_enable=0 console=serial0,115200 console=tty1 root=/dev/mmcblk0p2 rootfstype=ext4 elevator=deadline fsck.repair=yes rootwait quiet' >"$@"
+
+_bootloader_raspi: ${CFGROOT} ${CFGROOT}/boot/cmdline.txt
+
+_bootloader_pc: ${CFGROOT} _grub_efi32 _grub_efi64 _syslinux_bios #_syslinux_efi32 _syslinux_efi64
        printf 'UI menu.c32\nDEFAULT stretch\nTIMEOUT 30\n' >"$${CFGROOT}/boot/bootmenu.cfg"
        printf 'set timeout=3\ndefault=stretch\n\n' >"$${CFGROOT}/boot/grub.cfg"
        k="$$(printf ' %s' "$${CFGROOT}/boot/"vmlinuz-*)"; k="$${k##*/}"; \