Module Name: src
Committed By: isaki
Date: Fri Feb 4 06:16:03 UTC 2022
Modified Files:
src/sys/arch/x68k/stand/xxboot: Makefile.xxboot
Log Message:
Add missing -m68020-60 option. This makes xxboot_ustarfs work even on 68060.
Problem reported by Makoto Kamada. Confirmed on XEiJ (68060 mode).
To generate a diff of this commit:
cvs rdiff -u -r1.18 -r1.19 src/sys/arch/x68k/stand/xxboot/Makefile.xxboot
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/xxboot/Makefile.xxboot
diff -u src/sys/arch/x68k/stand/xxboot/Makefile.xxboot:1.18 src/sys/arch/x68k/stand/xxboot/Makefile.xxboot:1.19
--- src/sys/arch/x68k/stand/xxboot/Makefile.xxboot:1.18 Sun Aug 16 06:43:43 2020
+++ src/sys/arch/x68k/stand/xxboot/Makefile.xxboot Fri Feb 4 06:16:03 2022
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile.xxboot,v 1.18 2020/08/16 06:43:43 isaki Exp $
+# $NetBSD: Makefile.xxboot,v 1.19 2022/02/04 06:16:03 isaki Exp $
NOMAN= # defined
@@ -35,6 +35,7 @@ SRCS+= memcmp.S
.include "${S}/conf/newvers_stand.mk"
CFLAGS= -Os -fomit-frame-pointer -fno-unwind-tables -Wno-attributes
+CFLAGS+= -m68020-60
#CFLAGS+= -Wall
CPPFLAGS+= -D_STANDALONE
CPPFLAGS+= -DTEXTADDR="$(TEXT)" -DBOOT_TEXTADDR="$(BOOT_TEXT)"