Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/arch/evbarm/stand/gzboot Fix CPUFLAGS to the correct val...



details:   https://anonhg.NetBSD.org/src/rev/5d624e541f6c
branches:  trunk
changeset: 783250:5d624e541f6c
user:      matt <matt%NetBSD.org@localhost>
date:      Wed Dec 12 15:08:44 2012 +0000

description:
Fix CPUFLAGS to the correct value so a passed down CPUFLAGS doesn't result
in broken images.

diffstat:

 sys/arch/evbarm/stand/gzboot/ADI_BRH_flash_0x00140000/Makefile |  3 ++-
 sys/arch/evbarm/stand/gzboot/GEMINI_dram_0x01600000/Makefile   |  4 ++--
 sys/arch/evbarm/stand/gzboot/IQ80310_flash_0x00080000/Makefile |  4 +++-
 sys/arch/evbarm/stand/gzboot/IQ80321_flash_0xf0080000/Makefile |  4 +++-
 sys/arch/evbarm/stand/gzboot/TS7200_flash_0x60660000/Makefile  |  4 +++-
 5 files changed, 13 insertions(+), 6 deletions(-)

diffs (89 lines):

diff -r 877f777e7c20 -r 5d624e541f6c sys/arch/evbarm/stand/gzboot/ADI_BRH_flash_0x00140000/Makefile
--- a/sys/arch/evbarm/stand/gzboot/ADI_BRH_flash_0x00140000/Makefile    Wed Dec 12 15:00:06 2012 +0000
+++ b/sys/arch/evbarm/stand/gzboot/ADI_BRH_flash_0x00140000/Makefile    Wed Dec 12 15:08:44 2012 +0000
@@ -1,4 +1,4 @@
-#      $NetBSD: Makefile,v 1.2 2003/04/29 05:36:20 thorpej Exp $
+#      $NetBSD: Makefile,v 1.3 2012/12/12 15:08:44 matt Exp $
 
 S=     ${.CURDIR}/../../../../..
 
@@ -11,6 +11,7 @@
 CPPFLAGS+= -DCONSPEED=57600
 CPPFLAGS+= -DCONADDR=0x03000000UL
 CPPFLAGS+= -DNS16550_FREQ=33300000
+CPUFLAGS= -mcpu=xscale
 
 LDSCRIPT= ${.CURDIR}/ldscript
 
diff -r 877f777e7c20 -r 5d624e541f6c sys/arch/evbarm/stand/gzboot/GEMINI_dram_0x01600000/Makefile
--- a/sys/arch/evbarm/stand/gzboot/GEMINI_dram_0x01600000/Makefile      Wed Dec 12 15:00:06 2012 +0000
+++ b/sys/arch/evbarm/stand/gzboot/GEMINI_dram_0x01600000/Makefile      Wed Dec 12 15:08:44 2012 +0000
@@ -1,4 +1,4 @@
-#      $NetBSD: Makefile,v 1.3 2012/08/06 02:14:15 matt Exp $
+#      $NetBSD: Makefile,v 1.4 2012/12/12 15:08:44 matt Exp $
 
 S=     ${.CURDIR}/../../../../..
 
@@ -12,7 +12,7 @@
 CPPFLAGS+= -DNS16550_AX4
 CPPFLAGS+= -DNS16550_FREQ=48000000
 
-CPUFLAGS+=  -march=armv4
+CPUFLAGS= -march=armv4
 
 LDSCRIPT= ${.CURDIR}/ldscript
 
diff -r 877f777e7c20 -r 5d624e541f6c sys/arch/evbarm/stand/gzboot/IQ80310_flash_0x00080000/Makefile
--- a/sys/arch/evbarm/stand/gzboot/IQ80310_flash_0x00080000/Makefile    Wed Dec 12 15:00:06 2012 +0000
+++ b/sys/arch/evbarm/stand/gzboot/IQ80310_flash_0x00080000/Makefile    Wed Dec 12 15:08:44 2012 +0000
@@ -1,4 +1,4 @@
-#      $NetBSD: Makefile,v 1.3 2003/04/29 05:38:52 thorpej Exp $
+#      $NetBSD: Makefile,v 1.4 2012/12/12 15:08:44 matt Exp $
 
 S=     ${.CURDIR}/../../../../..
 
@@ -10,6 +10,8 @@
 CPPFLAGS+= -DCONSPEED=115200
 CPPFLAGS+= -DCONADDR=0xfe810000UL
 
+CPUFLAGS= -mcpu=xscale
+
 LDSCRIPT= ${.CURDIR}/ldscript
 
 SRCS+= iq80310.c ns16550.c i80312_mem.c
diff -r 877f777e7c20 -r 5d624e541f6c sys/arch/evbarm/stand/gzboot/IQ80321_flash_0xf0080000/Makefile
--- a/sys/arch/evbarm/stand/gzboot/IQ80321_flash_0xf0080000/Makefile    Wed Dec 12 15:00:06 2012 +0000
+++ b/sys/arch/evbarm/stand/gzboot/IQ80321_flash_0xf0080000/Makefile    Wed Dec 12 15:08:44 2012 +0000
@@ -1,4 +1,4 @@
-#      $NetBSD: Makefile,v 1.3 2003/04/29 05:36:20 thorpej Exp $
+#      $NetBSD: Makefile,v 1.4 2012/12/12 15:08:44 matt Exp $
 
 S=     ${.CURDIR}/../../../../..
 
@@ -10,6 +10,8 @@
 CPPFLAGS+= -DCONSPEED=115200
 CPPFLAGS+= -DCONADDR=0xfe800000UL
 
+CPUFLAGS= -mcpu=xscale
+
 LDSCRIPT= ${.CURDIR}/ldscript
 
 SRCS+= iq80321.c ns16550.c i80321_mem.c
diff -r 877f777e7c20 -r 5d624e541f6c sys/arch/evbarm/stand/gzboot/TS7200_flash_0x60660000/Makefile
--- a/sys/arch/evbarm/stand/gzboot/TS7200_flash_0x60660000/Makefile     Wed Dec 12 15:00:06 2012 +0000
+++ b/sys/arch/evbarm/stand/gzboot/TS7200_flash_0x60660000/Makefile     Wed Dec 12 15:08:44 2012 +0000
@@ -1,4 +1,4 @@
-#      $NetBSD: Makefile,v 1.2 2005/12/11 12:17:11 christos Exp $
+#      $NetBSD: Makefile,v 1.3 2012/12/12 15:08:45 matt Exp $
 
 S=     ${.CURDIR}/../../../../..
 
@@ -10,6 +10,8 @@
 CPPFLAGS+= -DCONSPEED=115200
 CPPFLAGS+= -DCONADDR=0x808c0000UL
 
+CPUFLAGS= -mcpu=arm9tdmi
+
 LDSCRIPT= ${.CURDIR}/ldscript
 
 SRCS+= ts7200.c epcom.c



Home | Main Index | Thread Index | Old Index