Module Name:    src
Committed By:   isaki
Date:           Sat Feb  1 08:08:15 UTC 2020

Modified Files:
        src/sys/arch/x68k/stand/mboot: Makefile

Log Message:
Make it output 68000 binary.
CFLAGS already has -m68000 but AFLAGS didn't.

This change makes it proceed to next stage1 even if MPU is 68000.
All stage1 bootloader displays an error message if MPU is 68000.


To generate a diff of this commit:
cvs rdiff -u -r1.17 -r1.18 src/sys/arch/x68k/stand/mboot/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/x68k/stand/mboot/Makefile
diff -u src/sys/arch/x68k/stand/mboot/Makefile:1.17 src/sys/arch/x68k/stand/mboot/Makefile:1.18
--- src/sys/arch/x68k/stand/mboot/Makefile:1.17	Fri Aug  8 15:19:51 2014
+++ src/sys/arch/x68k/stand/mboot/Makefile	Sat Feb  1 08:08:15 2020
@@ -1,4 +1,4 @@
-#	$NetBSD: Makefile,v 1.17 2014/08/08 15:19:51 isaki Exp $
+#	$NetBSD: Makefile,v 1.18 2020/02/01 08:08:15 isaki Exp $
 
 NOMAN=		# defined
 .include <bsd.own.mk>
@@ -24,6 +24,7 @@ CPPFLAGS+=	-I${.CURDIR}/../libiocs
 CPPFLAGS+=	-DTEXTADDR="0x${TEXT}" 
 CPPFLAGS+=	-DBOOT=\"${BOOT}\" -DBOOT_VERS=\"${VERSION}\"
 CFLAGS=		-Wno-main -Os -m68000
+AFLAGS+=	-m68000
 
 LINKFLAGS=	-N -static -Ttext ${TEXT}
 LIBIOCS!=	cd ${.CURDIR}/../libiocs && ${PRINTOBJDIR}

Reply via email to