1 # $NetBSD: installimage.mk,v 1.5 2025/02/02 03:19:37 tsutsui Exp $ 2 3 # common code between distrib/amd64/installimage/Makefile and 4 # distrib/amd64/installimage-bios/Makefile. 5 6 .if ${USE_XZ_SETS:Uno} != "no" 7 INSTIMAGEMB?= 2500 # for all installation binaries 8 .else 9 INSTIMAGEMB?= 3800 # for all installation binaries 10 .endif 11 12 IMGFFSVERSION= 2 13 PRIMARY_BOOT= bootxx_ffsv2 14 SECONDARY_BOOT= boot 15 SECONDARY_BOOT_ARG= # unnecessary 16 17 CLEANFILES+= boot.cfg 18 19 prepare_md_post: 20 ${TOOL_SED} \ 21 -e "s/@@MACHINE@@/${MACHINE}/" \ 22 -e "s/@@VERSION@@/${DISTRIBVER}/" \ 23 < ${.CURDIR}/boot.cfg.in > boot.cfg 24 25 DISTRIBDIR!= cd ${.CURDIR}/../.. ; pwd 26 27 SPEC_EXTRA= ${.CURDIR}/spec.inst 28 IMGFILE_EXTRA= \ 29 ${.CURDIR}/etc.ttys etc/ttys \ 30 ${.CURDIR}/etc.rc etc/rc \ 31 ${.CURDIR}/install.sh . \ 32 ${.OBJDIR}/boot.cfg . 33