From e6a83e3a965334417a92aac231bc201adf8d933e Mon Sep 17 00:00:00 2001 From: sekiya Date: Tue, 1 Mar 2005 00:20:09 +0000 Subject: [PATCH] Replace elf2ecoff with objcopy for ECOFF bootloader creation. Fix a comment typo while we're here. --- sys/arch/sgimips/stand/boot/Makefile | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/sys/arch/sgimips/stand/boot/Makefile b/sys/arch/sgimips/stand/boot/Makefile index a938a5abe2b3..2a16a0ffc29e 100644 --- a/sys/arch/sgimips/stand/boot/Makefile +++ b/sys/arch/sgimips/stand/boot/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.8 2003/11/13 12:42:18 sekiya Exp $ +# $NetBSD: Makefile,v 1.9 2005/03/01 00:20:09 sekiya Exp $ PROG= aoutboot @@ -11,9 +11,11 @@ SRCS= start.S boot.c bootinfo.c conf.c devopen.c putchar.c getchar.c \ getopt.c disk.c ${PROG}: ip2xboot ip3xboot - ${ELF2ECOFF} ip2xboot aoutboot + ${OBJCOPY} --impure -O ecoff-bigmips \ + -R .pdr -R .mdebug.abi32 -R .comment -R .ident \ + ip2xboot aoutboot -# XXX Temporary hack to install the ELF verision, too. +# XXX Temporary hack to install the ELF version, too. FILES+= ip2xboot ip3xboot CLEANFILES+= ip2xboot ip3xboot