5 space_:= ${nul_} ${nul_}
7 .PHONY: clean .FORCE _target
8 .PHONY: _qemu _bootstrap _install _copy _config
9 .PHONY: _partition_gpt _partition_raspi _sparse _partcopy _mbr
10 .PHONY: _format _format_root _format_boot
11 .PHONY: _bootloader_raspi _bootloader_pc _bootloader_iso
12 .PHONY: _mount _mount_root _mount_boot _efi_mount
13 .PHONY: _umount _umount_root _umount_boot _efi_umount
14 .PHONY: _squash_modules _squash _isosquash _iso_image
17 BOOTSTRAP := http://cdn.debian.net/debian
18 PACKAGES := ${PACKAGES} apt busybox-static debian-archive-keyring init systemd
20 # Partition Table (2M) + Boot Partition (126M)+ Root Partition + Slack Space (1M) = 2048M
27 cp "config.example" "$@"
39 KEYRING := keys/debian-archive-${release}-stable.gpg
40 KEYRING := keys/debian-archive-${release}-automatic.gpg
41 KEYRING := keys/debian-archive-${release}-security-automatic.gpg
45 deb http://cdn.debian.net/debian ${release} main
46 deb http://security.debian.org/ ${release}/updates main
57 _target: _mbr _umount _config _install _partition_gpt
60 _format: _partition_gpt
63 _install: _bootstrap _mount
64 _config: _install _mount
65 _bootloader_pc: _mount
66 _umount: _mount _config _bootloader_pc
67 _mbr: _umount _bootloader_pc
71 PBOOT := part_boot.img
72 PROOT := part_root.img
73 SYSROOT := sys_root_${release}_${ARCH}/
76 _target: _mbr _umount _config _install
82 _partition_gpt: _sparse
83 _partcopy: _partition_gpt _format
85 _copy: _install _img_mount
86 _config: _copy _img_mount
87 _bootloader_pc: _img_mount
88 _umount: _img_mount _config _bootloader_pc
89 _mbr: _partcopy _bootloader_pc
92 SYSROOT := sys_root_${release}_${ARCH}/
95 _target: _install _config ${subvol}
103 btrfs sub snap "${CFGROOT}" "$@"
107 SYSROOT := sys_root_${release}_${ARCH}/
110 PACKAGES += squashfs-tools nbd-client
112 _target: _squash _install _config
117 _config: _copy _squash_modules
123 SYSROOT := sys_root_${release}_${ARCH}/
126 PBOOT := ${ISOROOT}/efi.img
128 PACKAGES += squashfs-tools
130 _target: _iso_image _install _config
135 _config: _copy _squash_modules
137 _bootloader_iso: _config
138 _iso_image: _bootloader_iso _isosquash # _efi_umount
144 PBOOT := rpi_boot.img
145 PROOT := rpi_root.img
146 SYSROOT := sys_root_${release}_${ARCH}/
147 CFGROOT := img_mount/
149 KEYRING := keys/raspbian-archive-keyring.gpg
150 BOOTSTRAP := http://raspbian.raspberrypi.org/raspbian
153 deb http://raspbian.raspberrypi.org/raspbian ${release} main non-free firmware rpi
154 deb http://archive.raspberrypi.org/debian ${release} main
157 PACKAGES += firmware-brcm80211 libraspberrypi-bin libraspberrypi0 pi-bluetooth raspberrypi-bootloader raspberrypi-kernel initramfs-tools
159 _target: _umount _config
166 _partition_raspi: _sparse
167 _partcopy: _partition_raspi _format
168 _img_mount: _partcopy
169 _copy: _install _img_mount
170 _config: _copy _img_mount
171 _bootloader_raspi: _img_mount
172 _umount: _copy _config _bootloader_raspi
180 include modules/default.mk
182 include $(addsuffix .mk, $(addprefix modules/, $(subst ${comma_},${space_},${modules})))
185 ifeq "$(findstring linux-image, ${PACKAGES})" "linux-image"
186 else ifeq "${ARCH}" "amd64"
187 PACKAGES += linux-image-amd64
188 else ifeq "${ARCH}" "i386"
189 PACKAGES += linux-image-686
192 export SOURCES SYSROOT CFGROOT VOLUME PBOOT PROOT SQUASH ARCH KEYRING BOOTSTRAP ISOROOT ISO
194 sys_root_${release}_${ARCH}/:
195 btrfs subvol create "$@" || mkdir "$@"
198 cfg_root/: sys_root_${release}_${ARCH}/ _install
199 -btrfs sub del "$@" || rm -r "$@"
200 btrfs sub snap "$<" "$@" || mkdir "$@"
204 -btrfs sub del "$@" || rm -r "$@"
205 btrfs subvol create "$@" || mkdir "$@"
207 chmod 755 "$@" "$@/live"
216 _qemu: ${SYSROOT}/usr/bin/qemu-arm-static
217 ${SYSROOT}/usr/bin/qemu-arm-static: /usr/bin/qemu-arm-static ${SYSROOT}
218 mkdir -p -m 755 "$${SYSROOT}"/usr/bin
219 chmod 755 "$${SYSROOT}"/usr
222 _bootstrap: ${SYSROOT}/bin/sh
223 ${SYSROOT}/bin/sh: | ${SYSROOT}
224 debootstrap --variant=minbase --arch="$${ARCH}" \
225 --keyring="$${KEYRING}" \
226 "${release}" "$${SYSROOT}" "$${BOOTSTRAP}"
227 printf 'APT::Default-Release "%s";' "${release}" >"$${SYSROOT}/etc/apt/apt.conf.d/10release"
230 .PHONY: _aptkeys _norecommends
231 _aptkeys: ${SYSROOT}/etc/apt/trusted.gpg.d/
232 _norecommends: ${SYSROOT}/etc/apt/apt.conf.d/10norecommends
234 ${SYSROOT}/etc/apt/apt.conf.d/10norecommends: ${SYSROOT}
235 mkdir -p -m 755 "$(dir $@)"
236 printf 'APT::%s "false";\n' "Install-Recommends" "Keep-Recommends" "Install-Suggests" "Keep-Suggests" >"$@"
239 ${SYSROOT}/etc/apt/trusted.gpg.d/: ${SYSROOT} _bootstrap
244 _install: ${SYSROOT} _aptkeys _norecommends
245 printf '%s\n' "$${SOURCES}" |sort -u >"$${SYSROOT}/etc/apt/sources.list"
246 -cp /etc/resolv.conf "$${SYSROOT}/etc/"
247 -chroot "$${SYSROOT}" sh -c 'apt-mark showmanual |xargs apt-mark auto'
248 -chroot "$${SYSROOT}" apt-get update
249 chroot "$${SYSROOT}" ln -sf /bin/true /usr/local/sbin/invoke-rc.d
250 chroot "$${SYSROOT}" ln -sf /bin/true /usr/sbin/udevadm
251 chroot "$${SYSROOT}" apt-get --yes install ${PACKAGES}
252 mkdir -p -m 755 "$${SYSROOT}/var/lib/deborphan/"
253 chroot "$${SYSROOT}" sh -c 'printf "%s\\n" ${PACKAGES} >/var/lib/deborphan/keep'
254 -chroot "$${SYSROOT}" sh -c 'apt-get --yes purge $$(deborphan -an |sed "s;^.* ;;g")'
255 chroot "$${SYSROOT}" apt-get --yes --auto-remove purge
256 -chroot "$${SYSROOT}" apt-get --yes --auto-remove upgrade
257 chroot "$${SYSROOT}" apt-get clean
258 chroot "$${SYSROOT}" rm /usr/local/sbin/invoke-rc.d
259 chroot "$${SYSROOT}" rm /usr/sbin/udevadm
261 _copy: ${SYSROOT} ${CFGROOT}
263 cp -au "$${SYSROOT}/." "$${CFGROOT}/"
266 ln -sf /dev/null "$${CFGROOT}/etc/systemd/network/99-default.link"
267 printf '\nsession optional pam_mkhomedir.so umask=0027\n' >>"$${CFGROOT}/etc/pam.d/common-session"
268 printf 'LABEL=FSROOT / ${fstype} auto,nofail,rw 0 0\nLABEL=BOOT /boot vfat auto,nofail,ro 0 0\n' \
269 >"$${CFGROOT}/etc/fstab"
270 chroot "$${CFGROOT}" update-initramfs -u
272 ${SQUASH}: ${CFGROOT}
274 mksquashfs "$${CFGROOT}" "$${SQUASH}" -comp xz
276 _squash_modules: ${CFGROOT}
277 printf '%s\n' squashfs nbd >>"${CFGROOT}/etc/initramfs-tools/modules"
279 _squash: ${SQUASH} _squash_modules
281 _isosquash: ${ISOROOT}/live/live.squashfs
282 ${ISOROOT}/live/live.squashfs: ${CFGROOT} ${ISOROOT} .FORCE
284 { cd "$${CFGROOT}"; printf '%s\n' boot/*; } \
285 | mksquashfs "$${CFGROOT}" "$@" -comp xz -ef /dev/stdin
288 ! printf '%s\n' "$${VOLUME}" |grep -q '^/dev/' # abort if volume should be real device
289 dd count=0 of="$${VOLUME}" # truncate
290 dd bs=1M count=0 seek=$$((3 + ${BOOT_MB} + ${ROOT_MB})) of="$${VOLUME}"
291 chmod g+w "$${VOLUME}"
294 ! printf '%s\n' "$${PBOOT}" |grep -q '^/dev/' # abort if volume should be real device
295 dd count=0 of="$${PBOOT}" # truncate
296 dd bs=1M count=0 seek=${BOOT_MB} of="$${PBOOT}"
299 ! printf '%s\n' "$${PROOT}" |grep -q '^/dev/' # abort if volume should be real device
300 dd count=0 of="$${PROOT}" # truncate
301 dd bs=1M count=0 seek=${ROOT_MB} of="$${PROOT}"
303 _partition_raspi: ${VOLUME}
304 printf 'label: dos\n\n: start=2MiB, size=%iMiB, type=c\n: start=%iMiB, size=%iMiB, type=83\n' \
305 ${BOOT_MB} "$$((${BOOT_MB} + 2))" ${ROOT_MB} | sfdisk "$${VOLUME}"
307 _partition_gpt: ${VOLUME}
308 printf 'label: gpt\n\n: start=2MiB, size=%iMiB, type=1, attrs="LegacyBIOSBootable"\n: size=%iMiB, type=20\n' \
309 ${BOOT_MB} ${ROOT_MB} | sfdisk "$${VOLUME}"
311 _sparse: ${PBOOT} ${PROOT}
313 ifeq "${fstype}" "ext4"
319 _format_root: ${PROOT}
320 -umount "$${CFGROOT}/boot" "$${CFGROOT}" "${PROOT}"
321 mkfs.${fstype} ${fsflag} -L FSROOT "$${PROOT}"
323 _format_boot: ${PBOOT}
324 -umount "$${CFGROOT}/boot" "${PBOOT}"
325 mkfs.fat -F 32 -n BOOT "$${PBOOT}"
327 _format: _format_root _format_boot
329 _iso_image: ${ISOROOT}
330 grub-mkrescue -o "$${ISO}" "$${ISOROOT}"
332 .PHONY: _syslinux_efi32 _syslinux_efi64 _syslinux_bios
333 .PHONY: _grub_efi32 _grub_efi64
335 _syslinux_efi32: ${CFGROOT}
336 mkdir -p "$${CFGROOT}/boot/EFI/BOOT"
337 cp /usr/lib/SYSLINUX.EFI/efi32/syslinux.efi "$${CFGROOT}/boot/EFI/BOOT/BOOTIA32.EFI"
338 mkdir -p "$${CFGROOT}/boot/efi32"
339 cp $(addprefix /usr/lib/syslinux/modules/efi32/, ldlinux.e32 menu.c32 libutil.c32) "$${CFGROOT}"/boot/efi32/
340 cp /usr/lib/syslinux/modules/efi32/ldlinux.e32 "$${CFGROOT}/boot/EFI/BOOT/" # workaround
341 printf 'PATH /efi32\nINCLUDE /bootmenu.cfg\nMENU TITLE Syslinux EFI-32\n' >"$${CFGROOT}/boot/syslia32.cfg"
343 _syslinux_efi64: ${CFGROOT}
344 mkdir -p "$${CFGROOT}/boot/EFI/BOOT"
345 cp /usr/lib/SYSLINUX.EFI/efi64/syslinux.efi "$${CFGROOT}/boot/EFI/BOOT/BOOTX64.EFI"
346 mkdir -p "$${CFGROOT}/boot/efi64"
347 cp $(addprefix /usr/lib/syslinux/modules/efi64/, ldlinux.e64 menu.c32 libutil.c32) "$${CFGROOT}"/boot/efi64/
348 cp /usr/lib/syslinux/modules/efi64/ldlinux.e64 "$${CFGROOT}/boot/EFI/BOOT/" # workaround
349 printf 'PATH /efi64\nINCLUDE /bootmenu.cfg\nMENU TITLE Syslinux EFI-64\n' >"$${CFGROOT}/boot/syslx64.cfg"
351 _syslinux_bios: ${CFGROOT}
352 mkdir -p "$${CFGROOT}/boot/bios"
353 cp $(addprefix /usr/lib/syslinux/modules/bios/, menu.c32 libutil.c32) "$${CFGROOT}"/boot/bios/
354 printf 'PATH bios\nINCLUDE bootmenu.cfg\nMENU TITLE Syslinux BIOS\n' >"$${CFGROOT}/boot/syslinux.cfg"
356 _grub_efi32: ${CFGROOT}
357 mkdir -p "$${CFGROOT}/boot/EFI/BOOT"
358 grub-mkimage -p / -O i386-efi fat part_gpt normal linux all_video >"$${CFGROOT}/boot/EFI/BOOT/BOOTIA32.EFI"
360 _grub_efi64: ${CFGROOT}
361 mkdir -p "$${CFGROOT}/boot/EFI/BOOT"
362 grub-mkimage -p / -O x86_64-efi fat part_gpt normal linux all_video >"$${CFGROOT}/boot/EFI/BOOT/BOOTX64.EFI"
364 ${CFGROOT}/boot/cmdline.txt: ${CFGROOT}
365 printf 'root=/dev/mmcblk0p2 rootfstype=${fstype} fsck.repair=yes rootwait' >"$@"
367 _bootloader_raspi: ${CFGROOT} ${CFGROOT}/boot/cmdline.txt
369 _bootloader_pc: ${CFGROOT} _grub_efi32 _grub_efi64 _syslinux_bios #_syslinux_efi32 _syslinux_efi64
370 printf 'UI menu.c32\nDEFAULT stretch\nTIMEOUT 30\n' >"$${CFGROOT}/boot/bootmenu.cfg"
371 printf 'set timeout=3\ndefault=stretch\n\n' >"$${CFGROOT}/boot/grub.cfg"
372 k="$$(printf ' %s' "$${CFGROOT}/boot/"vmlinuz-*)"; k="$${k##*/}"; \
373 i="$$(printf ' %s' "$${CFGROOT}/boot/"initrd.img-*)"; i="$${i##*/}"; \
374 printf '\nLABEL stretch\n MENU LABEL Debian Stretch\n KERNEL /%s\n INITRD /%s\n APPEND root=LABEL=FSROOT\n' \
375 "$$k" "$$i" >>"$${CFGROOT}/boot/bootmenu.cfg"; \
376 printf '\nLABEL rescue\n MENU LABEL Rescue\n KERNEL /%s\n INITRD /%s\n APPEND root=LABEL=FSROOT init=/bin/sh\n' \
377 "$$k" "$$i" >>"$${CFGROOT}/boot/bootmenu.cfg"; \
378 printf "menuentry 'Debian Stretch' --id 'stretch' {\n linux '/%s' root=LABEL=FSROOT\n initrd '/%s'\n}\n" \
379 "$$k" "$$i" >>"$${CFGROOT}/boot/grub.cfg"; \
380 printf "menuentry 'Rescue' --id 'rescue' {\n linux '/%s' root=LABEL=FSROOT init=/bin/sh\n initrd '/%s'\n}\n" \
381 "$$k" "$$i" >>"$${CFGROOT}/boot/grub.cfg"
383 _bootloader_iso: ${CFGROOT} ${ISOROOT}
384 mkdir -p "$${ISOROOT}/boot/grub/"
385 cp -L "$${CFGROOT}/vmlinuz" "$${CFGROOT}/initrd.img" "$${ISOROOT}"
386 printf '%s\n' "insmod all_video" "set gfxmode=auto" "load_video" "insmod gfxterm" \
387 >"$${ISOROOT}/boot/grub/grub.cfg"
388 printf '%s\n' "set timeout=10" "default=${release}" \
389 "menuentry 'Debian ${release}' --id '${release}' {" \
390 "linux '/vmlinuz' boot=live" "initrd '/initrd.img'" "}" \
391 >>"$${ISOROOT}/boot/grub/grub.cfg"
392 -[ -f "$${ISOROOT}/install/initrd.gz" -a -f "$${ISOROOT}/install/linux" ] && \
393 printf '%s\n' "menuentry 'Install Debian' --id 'install' {" \
394 "linux '/install/linux'" "initrd '/install/initrd.gz'" "}" \
395 >>"$${ISOROOT}/boot/grub/grub.cfg"
399 mkdir -p -m 755 "efi/"
400 mount -t vfat -o loop "$${PBOOT}" "efi/"
402 _efi_umount: _efi_mount
404 umount efi/ && rmdir efi/
406 .PHONY: _syslinux_mbr _grub_mbr
408 _syslinux_mbr: ${VOLUME}
409 syslinux -t 2097152 -i "$${VOLUME}"
410 dd conv=notrunc if=/usr/lib/syslinux/mbr/gptmbr.bin of="$${VOLUME}"
413 # grub-mkimage -p / -O i386-pc fat part_gpt normal linux all_video |dd conv=notrunc of="$${VOLUME}"
415 _mbr: _syslinux_mbr # _grub_mbr
417 _partcopy: ${VOLUME} ${PROOT} ${PBOOT}
418 dd conv=notrunc,sparse bs=1M seek=2 if="$${PBOOT}" of="$${VOLUME}"
419 dd conv=notrunc,sparse bs=1M seek=$$((2 + ${BOOT_MB})) if="$${PROOT}" of="$${VOLUME}"
421 _mount_root: ${PROOT} ${CFGROOT}
422 mountpoint "$${CFGROOT}" \
423 || mount -t ${fstype} "$${PROOT}" "$${CFGROOT}"
424 chmod 755 "$${CFGROOT}"
426 _mount_boot: ${PBOOT}
427 mkdir -p -m 755 "$${CFGROOT}/boot"
428 mountpoint "$${CFGROOT}/boot" \
429 || mount -t vfat "$${PBOOT}" "$${CFGROOT}/boot"
432 _mount_boot: _mount_root
435 _mount: _mount_root _mount_boot
437 _img_mount: ${CFGROOT}
438 mountpoint "$${CFGROOT}" \
439 || mount -o loop,offset="$$((${BOOT_MB} + 2))"M,sizelimit=${ROOT_MB}M \
440 -t ${fstype} "$${VOLUME}" "$${CFGROOT}"
441 chmod 755 "$${CFGROOT}"
442 mkdir -p -m 755 "$${CFGROOT}/boot"
443 mountpoint "$${CFGROOT}/boot" \
444 || mount -o loop,offset=2M,sizelimit=${BOOT_MB}M \
445 -t vfat "$${VOLUME}" "$${CFGROOT}/boot"
447 _umount_boot: ${CFGROOT} _config
449 -umount "$${CFGROOT}/boot"
451 _umount_root: _umount_boot _config
453 umount "$${CFGROOT}" && rmdir "$${CFGROOT}"
455 _umount: _umount_boot _umount_root
458 [ "$${SYSROOT#/}" ] && [ "$${CFGROOT#/}" ] || false # (abort receipe)
459 -umount img_mount/boot
462 -umount hdd_mount/boot
465 if [ -d "cfg_root/" ]; then btrfs sub del "cfg_root/" || rm -r "cfg_root/"; fi
466 if [ -d "iso_root/" ]; then btrfs sub del "iso_root/" || rm -r "iso_root/"; fi
467 if [ -d "sys_root_${release}_${ARCH}/" ]; then btrfs sub del "sys_root_${release}_${ARCH}/" || rm -r "sys_root_${release}_${ARCH}/"; fi
472 -[ -f "$${SQUASH}" ] && rm "$${SQUASH}"
473 -[ -f "$${VOLUME}" ] && rm "$${VOLUME}"
474 -[ -f "$${ISO}" ] && rm "$${ISO}"