From 8b5452906b16c24dac7b421fb0c878921f38c94d Mon Sep 17 00:00:00 2001 From: tsubai Date: Mon, 8 Mar 1999 06:33:26 +0000 Subject: [PATCH] Use objcopy to convert ELF kernel to ECOFF. --- sys/arch/newsmips/conf/Makefile.newsmips | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/sys/arch/newsmips/conf/Makefile.newsmips b/sys/arch/newsmips/conf/Makefile.newsmips index a0b7d5bff96c..5e2109c3377a 100644 --- a/sys/arch/newsmips/conf/Makefile.newsmips +++ b/sys/arch/newsmips/conf/Makefile.newsmips @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.newsmips,v 1.12 1999/01/15 23:37:06 thorpej Exp $ +# $NetBSD: Makefile.newsmips,v 1.13 1999/03/08 06:33:26 tsubai Exp $ # Makefile for NetBSD # @@ -118,7 +118,8 @@ LINKFLAGS+= -x SYSTEM_LD_TAIL+=;\ echo mv $@ $@.elf; mv $@ $@.elf; \ - echo elf2ecoff $@.elf $@; elf2ecoff $@.elf $@; \ + echo objcopy -O ecoff-bigmips -R .ident -R .mdebug $@.elf $@; \ + objcopy -O ecoff-bigmips -R .ident -R .mdebug $@.elf $@; \ chmod 755 $@ %LOAD