Module Name: src Committed By: tsutsui Date: Fri Jan 10 18:10:11 UTC 2025
Modified Files: src/distrib/vax/liveimage/emuimage: Makefile Log Message: It turns out vax liveimage requires INSTALLBOOT_AFTER_DISKLABEL. It looks tools disklabel(8) doesn't preserve installed bootblock on creating a new label. Confirmed on simh. Should be pulled up to at least netbsd-10. To generate a diff of this commit: cvs rdiff -u -r1.4 -r1.5 src/distrib/vax/liveimage/emuimage/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/distrib/vax/liveimage/emuimage/Makefile diff -u src/distrib/vax/liveimage/emuimage/Makefile:1.4 src/distrib/vax/liveimage/emuimage/Makefile:1.5 --- src/distrib/vax/liveimage/emuimage/Makefile:1.4 Sat Dec 15 18:03:18 2018 +++ src/distrib/vax/liveimage/emuimage/Makefile Fri Jan 10 18:10:11 2025 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.4 2018/12/15 18:03:18 gson Exp $ +# $NetBSD: Makefile,v 1.5 2025/01/10 18:10:11 tsutsui Exp $ LIVEIMGBASE= NetBSD-${DISTRIBVER}-vax-live # gives ${IMGBASE}.img @@ -12,4 +12,7 @@ PRIMARY_BOOT= xxboot #SECONDARY_BOOT= # boot is extracted from base.tgz SECONDARY_BOOT_ARG= # nothing +# XXX: tools disklabel(8) for vax doesn't preserve existing bootblock? +INSTALLBOOT_AFTER_DISKLABEL= yes + .include "${.CURDIR}/../../../common/bootimage/Makefile.liveimage"