Module Name: src Committed By: christos Date: Sun Jul 8 16:50:28 UTC 2018
Modified Files: src/sys/arch/i386/stand: Makefile src/sys/arch/i386/stand/efiboot: Makefile Log Message: Enable efiboot on i386, for 32 bit bootblocks To generate a diff of this commit: cvs rdiff -u -r1.28 -r1.29 src/sys/arch/i386/stand/Makefile cvs rdiff -u -r1.1 -r1.2 src/sys/arch/i386/stand/efiboot/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/sys/arch/i386/stand/Makefile diff -u src/sys/arch/i386/stand/Makefile:1.28 src/sys/arch/i386/stand/Makefile:1.29 --- src/sys/arch/i386/stand/Makefile:1.28 Tue Jan 24 06:09:14 2017 +++ src/sys/arch/i386/stand/Makefile Sun Jul 8 12:50:27 2018 @@ -1,11 +1,9 @@ -# $NetBSD: Makefile,v 1.28 2017/01/24 11:09:14 nonaka Exp $ +# $NetBSD: Makefile,v 1.29 2018/07/08 16:50:27 christos Exp $ SUBDIR= mbr boot SUBDIR+= bootxx cdboot fatboot SUBDIR+= dosboot misc SUBDIR+= pxeboot -.if ${MACHINE} == "amd64" SUBDIR+= efiboot -.endif .include <bsd.subdir.mk> Index: src/sys/arch/i386/stand/efiboot/Makefile diff -u src/sys/arch/i386/stand/efiboot/Makefile:1.1 src/sys/arch/i386/stand/efiboot/Makefile:1.2 --- src/sys/arch/i386/stand/efiboot/Makefile:1.1 Tue Jan 24 06:09:14 2017 +++ src/sys/arch/i386/stand/efiboot/Makefile Sun Jul 8 12:50:28 2018 @@ -1,6 +1,8 @@ -# $NetBSD: Makefile,v 1.1 2017/01/24 11:09:14 nonaka Exp $ +# $NetBSD: Makefile,v 1.2 2018/07/08 16:50:28 christos Exp $ +SUBDIR= bootia32 +.if ${MACHINE} == "amd64" SUBDIR= bootx64 -SUBDIR+= bootia32 +.endif .include <bsd.subdir.mk>