svn commit: r211676 - head/sys/boot/arm/uboot

Warner Losh imp at FreeBSD.org
Mon Aug 23 01:37:56 UTC 2010


Author: imp
Date: Mon Aug 23 01:37:55 2010
New Revision: 211676
URL: http://svn.freebsd.org/changeset/base/211676

Log:
  It turns out that the OUTPUT_FORMAT should do the right thing for both endians...

Deleted:
  head/sys/boot/arm/uboot/ldscript.armeb
Modified:
  head/sys/boot/arm/uboot/Makefile

Modified: head/sys/boot/arm/uboot/Makefile
==============================================================================
--- head/sys/boot/arm/uboot/Makefile	Mon Aug 23 01:33:27 2010	(r211675)
+++ head/sys/boot/arm/uboot/Makefile	Mon Aug 23 01:37:55 2010	(r211676)
@@ -77,7 +77,7 @@ CLEANFILES+=	vers.c loader.help
 
 CFLAGS+=	-ffreestanding
 
-LDFLAGS=	-nostdlib -static -T ${.CURDIR}/ldscript.${MACHINE_ARCH}
+LDFLAGS=	-nostdlib -static -T ${.CURDIR}/ldscript.${MACHINE_CPUARCH}
 
 # Pull in common loader code
 .PATH:		${.CURDIR}/../../uboot/common


More information about the svn-src-head mailing list