]> git.plutz.net Git - blast/blob - Makefile
enable bullseye built
[blast] / Makefile
1 DEFAULT: _target
2
3 nul_:=
4 comma_:= ,
5 space_:= ${nul_} ${nul_}
6
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
15
16 ARCH := amd64
17 BOOTSTRAP := http://cdn.debian.net/debian
18 PACKAGES := ${PACKAGES} apt busybox-static debian-archive-keyring init systemd
19
20 # Partition Table (2M) + Boot Partition (126M)+ Root Partition + Slack Space (1M) = 2048M
21 BOOT_MB := 62
22 ROOT_MB := 959
23
24 fstype := ext4
25
26 config.mk:
27         cp "config.example" "$@"
28
29 ifndef config
30   include config.mk
31 else
32   include ${config}
33 endif
34
35 ifndef release
36   release := bullseye
37 endif
38
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
42
43 ifndef SOURCES
44 define SOURCES := 
45 deb     http://cdn.debian.net/debian ${release} main
46 deb     http://security.debian.org/ ${release}/updates main
47 endef
48 endif
49
50 ifdef disk
51   VOLUME := ${disk}
52   PBOOT := ${disk}1
53   PROOT := ${disk}2
54   SYSROOT := hdd_mount/
55   CFGROOT := hdd_mount/
56   
57   _target: _mbr _umount _config _install _partition_gpt
58   
59   _partition_gpt:
60   _format: _partition_gpt
61   _mount: _format
62   _bootstrap: _mount
63   _install: _bootstrap _mount
64   _config: _install _mount
65   _bootloader_pc: _mount
66   _umount: _mount _config _bootloader_pc
67   _mbr: _umount _bootloader_pc
68
69 else ifdef image
70   VOLUME := ${image}
71   PBOOT := part_boot.img
72   PROOT := part_root.img
73   SYSROOT := sys_root_${release}_${ARCH}/
74   CFGROOT := img_mount/
75   
76   _target: _mbr _umount _config _install
77   
78   _bootstrap:
79   _install: _bootstrap
80   _sparse:
81   _format: _sparse
82   _partition_gpt: _sparse
83   _partcopy: _partition_gpt _format
84   _img_mount: _partcopy
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
90
91 else ifdef subvol
92   SYSROOT := sys_root_${release}_${ARCH}/
93   CFGROOT := cfg_root/
94
95   _target: _install _config ${subvol}
96   
97   _bootstrap:
98   _install: _bootstrap
99   _copy: _install
100   _config: _copy
101
102   ${subvol}: _config
103         btrfs sub snap "${CFGROOT}" "$@"
104
105 else ifdef squash
106   SQUASH := ${squash}
107   SYSROOT := sys_root_${release}_${ARCH}/
108   CFGROOT := cfg_root/
109
110   PACKAGES += squashfs-tools nbd-client
111   
112   _target: _squash _install _config
113   
114   _bootstrap:
115   _install: _bootstrap
116   _copy: _install
117   _config: _copy _squash_modules
118   _squash: _config
119
120 else ifdef iso
121   ISO := ${iso}
122   ISOROOT := iso_root/
123   SYSROOT := sys_root_${release}_${ARCH}/
124   CFGROOT := cfg_root/
125   BOOT_MB := 2
126   PBOOT := ${ISOROOT}/efi.img
127
128   PACKAGES += squashfs-tools
129   
130   _target: _iso_image _install _config
131   
132   _bootstrap:
133   _install: _bootstrap
134   _copy: _install
135   _config: _copy _squash_modules
136   _isosquash: _config
137   _bootloader_iso: _config
138   _iso_image: _bootloader_iso _isosquash # _efi_umount
139
140 else ifdef raspi
141   ARCH := armhf
142
143   VOLUME := ${raspi}
144   PBOOT := rpi_boot.img
145   PROOT := rpi_root.img
146   SYSROOT := sys_root_${release}_${ARCH}/
147   CFGROOT := img_mount/
148   
149   KEYRING := keys/raspbian-archive-keyring.gpg
150   BOOTSTRAP := http://raspbian.raspberrypi.org/raspbian
151
152   define SOURCES :=
153   deb   http://raspbian.raspberrypi.org/raspbian ${release} main non-free firmware rpi
154   deb   http://archive.raspberrypi.org/debian ${release} main
155   endef
156
157   PACKAGES += firmware-brcm80211 libraspberrypi-bin libraspberrypi0 pi-bluetooth raspberrypi-bootloader raspberrypi-kernel initramfs-tools
158
159   _target: _umount _config
160   
161   _qemu:
162   _bootstrap: _qemu
163   _install: _bootstrap
164   _sparse:
165   _format: _sparse
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
173
174 else
175   _target:
176         false
177
178 endif
179
180 include modules/default.mk
181 ifdef modules
182   include $(addsuffix .mk, $(addprefix modules/, $(subst ${comma_},${space_},${modules})))
183 endif
184
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
190 endif
191
192 export SOURCES SYSROOT CFGROOT VOLUME PBOOT PROOT SQUASH ARCH KEYRING BOOTSTRAP ISOROOT ISO
193
194 sys_root_${release}_${ARCH}/:
195         btrfs subvol create "$@" || mkdir "$@"
196         chmod 755 "$@"
197
198 cfg_root/: sys_root_${release}_${ARCH}/ _install
199         -btrfs sub del "$@" || rm -r "$@"
200         btrfs sub snap "$<" "$@" || mkdir "$@"
201         chmod 755 "$@"
202
203 ${ISOROOT}:
204         -btrfs sub del "$@" || rm -r "$@"
205         btrfs subvol create "$@" || mkdir "$@"
206         mkdir "$@/live"
207         chmod 755 "$@" "$@/live"
208
209 img_mount/:
210         mkdir -p -m 755 "$@"
211         chmod 755 "$@"
212
213 hdd_mount/:
214         mkdir -p -m 755 "$@"
215
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
220         cp -p "$<" "$@"
221
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"
228
229
230 .PHONY: _aptkeys _norecommends
231 _aptkeys: ${SYSROOT}/etc/apt/trusted.gpg.d/
232 _norecommends: ${SYSROOT}/etc/apt/apt.conf.d/10norecommends
233
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" >"$@"
237         chmod 644 "$@"
238
239 ${SYSROOT}/etc/apt/trusted.gpg.d/: ${SYSROOT} _bootstrap
240         mkdir -p -m 755 "$@"
241         cp keys/*.gpg "$@"
242         chmod 644 "$@"/*.gpg
243
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
260
261 _copy: ${SYSROOT} ${CFGROOT}
262         sync
263         cp -au "$${SYSROOT}/." "$${CFGROOT}/"
264
265 _config: ${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
271
272 ${SQUASH}: ${CFGROOT}
273         -rm "$${SQUASH}"
274         mksquashfs "$${CFGROOT}" "$${SQUASH}" -comp xz
275
276 _squash_modules: ${CFGROOT}
277         printf '%s\n' squashfs nbd >>"${CFGROOT}/etc/initramfs-tools/modules"
278
279 _squash: ${SQUASH} _squash_modules
280
281 _isosquash: ${ISOROOT}/live/live.squashfs
282 ${ISOROOT}/live/live.squashfs: ${CFGROOT} ${ISOROOT} .FORCE
283         -rm "$@"
284         { cd "$${CFGROOT}"; printf '%s\n' boot/*; } \
285         | mksquashfs "$${CFGROOT}" "$@" -comp xz -ef /dev/stdin
286
287 ${VOLUME}: .FORCE
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}"
292
293 ${PBOOT}: .FORCE
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}"
297
298 ${PROOT}: .FORCE
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}"
302
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}"
306
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}"
310
311 _sparse: ${PBOOT} ${PROOT}
312
313 ifeq "${fstype}" "ext4"
314   fsflag:=-F
315 else
316   fsflag:=-f
317 endif
318
319 _format_root: ${PROOT}
320         -umount "$${CFGROOT}/boot" "$${CFGROOT}" "${PROOT}"
321         mkfs.${fstype} ${fsflag} -L FSROOT "$${PROOT}"
322
323 _format_boot: ${PBOOT}
324         -umount "$${CFGROOT}/boot" "${PBOOT}"
325         mkfs.fat -F 32 -n BOOT "$${PBOOT}"
326
327 _format: _format_root _format_boot
328
329 _iso_image: ${ISOROOT}
330         grub-mkrescue -o "$${ISO}" "$${ISOROOT}"
331
332 .PHONY: _syslinux_efi32 _syslinux_efi64 _syslinux_bios
333 .PHONY: _grub_efi32 _grub_efi64
334
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"
342
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"
350
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"
355
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"
359
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"
363
364 ${CFGROOT}/boot/cmdline.txt: ${CFGROOT}
365         printf 'root=/dev/mmcblk0p2 rootfstype=${fstype} fsck.repair=yes rootwait' >"$@"
366
367 _bootloader_raspi: ${CFGROOT} ${CFGROOT}/boot/cmdline.txt
368
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"
382
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"
396
397 _efi_mount: ${PBOOT}
398         -umount "efi/"
399         mkdir -p -m 755 "efi/"
400         mount -t vfat -o loop "$${PBOOT}" "efi/"
401
402 _efi_umount: _efi_mount
403         sync
404         umount efi/ && rmdir efi/
405
406 .PHONY: _syslinux_mbr _grub_mbr
407
408 _syslinux_mbr: ${VOLUME}
409         syslinux -t 2097152 -i "$${VOLUME}"
410         dd conv=notrunc if=/usr/lib/syslinux/mbr/gptmbr.bin of="$${VOLUME}"
411
412 _grub_mbr: ${VOLUME}
413         # grub-mkimage -p / -O i386-pc fat part_gpt normal linux all_video |dd conv=notrunc of="$${VOLUME}"
414
415 _mbr: _syslinux_mbr # _grub_mbr
416
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}"
420
421 _mount_root: ${PROOT} ${CFGROOT}
422         mountpoint "$${CFGROOT}" \
423         || mount -t ${fstype} "$${PROOT}" "$${CFGROOT}"
424         chmod 755 "$${CFGROOT}"
425
426 _mount_boot: ${PBOOT}
427         mkdir -p -m 755 "$${CFGROOT}/boot"
428         mountpoint "$${CFGROOT}/boot" \
429         || mount -t vfat "$${PBOOT}" "$${CFGROOT}/boot"
430
431 ifdef disk
432   _mount_boot: _mount_root
433 endif
434
435 _mount: _mount_root _mount_boot
436
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"
446
447 _umount_boot: ${CFGROOT} _config
448         sync
449         -umount "$${CFGROOT}/boot"
450
451 _umount_root: _umount_boot _config
452         sync
453         umount "$${CFGROOT}" && rmdir "$${CFGROOT}"
454
455 _umount: _umount_boot _umount_root
456
457 clean:
458         [ "$${SYSROOT#/}" ] && [ "$${CFGROOT#/}" ] || false  # (abort receipe)
459         -umount img_mount/boot
460         -umount img_mount
461         -rmdir img_mount
462         -umount hdd_mount/boot
463         -umount hdd_mount
464         -rmdir hdd_mount
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
468         -rm part_boot.img
469         -rm part_root.img
470         -rm rpi_boot.img
471         -rm rpi_root.img
472         -[ -f "$${SQUASH}" ] && rm "$${SQUASH}"
473         -[ -f "$${VOLUME}" ] && rm "$${VOLUME}"
474         -[ -f "$${ISO}" ] && rm "$${ISO}"