Source-Changes-HG archive

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

[src/trunk]: src/sys/arch/mvmeppc/stand use -ffreestanding



details:   https://anonhg.NetBSD.org/src/rev/8ddf108ae28e
branches:  trunk
changeset: 554004:8ddf108ae28e
user:      matt <matt%NetBSD.org@localhost>
date:      Fri Oct 24 06:48:53 2003 +0000

description:
use -ffreestanding

diffstat:

 sys/arch/mvmeppc/stand/Makefile.booters |  4 ++--
 sys/arch/mvmeppc/stand/boot/Makefile    |  6 +++---
 2 files changed, 5 insertions(+), 5 deletions(-)

diffs (38 lines):

diff -r ee2f2ae83efa -r 8ddf108ae28e sys/arch/mvmeppc/stand/Makefile.booters
--- a/sys/arch/mvmeppc/stand/Makefile.booters   Fri Oct 24 05:30:33 2003 +0000
+++ b/sys/arch/mvmeppc/stand/Makefile.booters   Fri Oct 24 06:48:53 2003 +0000
@@ -1,4 +1,4 @@
-#      $NetBSD: Makefile.booters,v 1.2 2002/05/31 13:46:00 bjh21 Exp $
+#      $NetBSD: Makefile.booters,v 1.3 2003/10/24 06:48:53 matt Exp $
 
 S?=            ${.CURDIR}/../../../..
 MDEC_DIR?=     /usr/mdec
@@ -17,7 +17,7 @@
 
 INCPATH=-I${.OBJDIR} -I${.CURDIR} -I${.CURDIR}/../libsa -I${.CURDIR}/../libbug \
         -I${.CURDIR}/../../include -I${S} -I${S}/lib/libsa
-CFLAGS= -nostdinc -D_STANDALONE \
+CFLAGS= -nostdinc -ffreestanding -D_STANDALONE \
        -DLIBSA_USE_MEMSET -DLIBSA_USE_MEMCPY ${INCPATH} ${DEFS}
 BINDIR= ${MDEC_DIR}
 
diff -r ee2f2ae83efa -r 8ddf108ae28e sys/arch/mvmeppc/stand/boot/Makefile
--- a/sys/arch/mvmeppc/stand/boot/Makefile      Fri Oct 24 05:30:33 2003 +0000
+++ b/sys/arch/mvmeppc/stand/boot/Makefile      Fri Oct 24 06:48:53 2003 +0000
@@ -1,13 +1,13 @@
-#      $NetBSD: Makefile,v 1.2 2002/03/03 11:03:43 scw Exp $
+#      $NetBSD: Makefile,v 1.3 2003/10/24 06:48:53 matt Exp $
 
 SRCS=   boot.c conf.c devopen.c
-PROG=  boot.tmp
+PROG=  boot.elf
 LIBS=  ${LIBSA}
 DPADD= ${LIBS}
 CLEANFILES+= boot.bin
 
 boot.bin: ${PROG}
-       ${OBJCOPY} -O binary ${.OBJDIR}/boot.tmp $@
+       ${OBJCOPY} -O binary ${.OBJDIR}/boot.elf $@
 
 .include "../Makefile.booters"
 



Home | Main Index | Thread Index | Old Index