Module Name: src
Committed By: rin
Date: Sat Jun 29 13:52:40 UTC 2024
Modified Files:
src/sys/arch/i386/stand: Makefile.booters
src/sys/arch/i386/stand/pxeboot: Makefile
Log Message:
i386: stand: Tiny clean up for `start_pxeboot.o`, NFC
To generate a diff of this commit:
cvs rdiff -u -r1.100 -r1.101 src/sys/arch/i386/stand/Makefile.booters
cvs rdiff -u -r1.29 -r1.30 src/sys/arch/i386/stand/pxeboot/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.booters
diff -u src/sys/arch/i386/stand/Makefile.booters:1.100 src/sys/arch/i386/stand/Makefile.booters:1.101
--- src/sys/arch/i386/stand/Makefile.booters:1.100 Sat Jun 29 13:46:40 2024
+++ src/sys/arch/i386/stand/Makefile.booters Sat Jun 29 13:52:39 2024
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile.booters,v 1.100 2024/06/29 13:46:40 rin Exp $
+# $NetBSD: Makefile.booters,v 1.101 2024/06/29 13:52:39 rin Exp $
NOLIBCSANITIZER=
NOSANITIZER=
@@ -26,9 +26,6 @@ I386_STAND_DIR?= $S/arch/i386/stand
.PATH: ${I386_STAND_DIR}/lib
-.PATH: ${I386_STAND_DIR}/lib/crt/pxe
-PXESTART= start_pxe.o
-
CPPFLAGS+= -nostdinc -I${.OBJDIR} -I$S -I${I386_STAND_DIR}/lib -I$S/lib/libsa
CPPFLAGS+= -D_STANDALONE
LDFLAGS+= -nostdlib
Index: src/sys/arch/i386/stand/pxeboot/Makefile
diff -u src/sys/arch/i386/stand/pxeboot/Makefile:1.29 src/sys/arch/i386/stand/pxeboot/Makefile:1.30
--- src/sys/arch/i386/stand/pxeboot/Makefile:1.29 Sat Jun 29 07:52:16 2024
+++ src/sys/arch/i386/stand/pxeboot/Makefile Sat Jun 29 13:52:39 2024
@@ -1,11 +1,11 @@
-# $NetBSD: Makefile,v 1.29 2024/06/29 07:52:16 rin Exp $
+# $NetBSD: Makefile,v 1.30 2024/06/29 13:52:39 rin Exp $
S= ${.CURDIR}/../../../..
BASE?= pxeboot_ia32
PROG= ${BASE}.bin
NEWVERSWHAT= "PXE Boot"
-STARTFILE= ${PXESTART}
+STARTFILE= start_pxe.o
RELOC= 0x0
.if (${BASE} != "pxeboot_ia32")