Source-Changes-HG archive

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

[src/trunk]: src/distrib/pmax/instkernel Build an ELF kernel called netbsd in...



details:   https://anonhg.NetBSD.org/src/rev/405e25359826
branches:  trunk
changeset: 471591:405e25359826
user:      simonb <simonb%NetBSD.org@localhost>
date:      Mon Apr 05 06:17:44 1999 +0000

description:
Build an ELF kernel called netbsd instead of an a.out kernel called
netbsd.aout.

diffstat:

 distrib/pmax/instkernel/Makefile |  19 +++++++++----------
 1 files changed, 9 insertions(+), 10 deletions(-)

diffs (35 lines):

diff -r 44ad08fa8b0e -r 405e25359826 distrib/pmax/instkernel/Makefile
--- a/distrib/pmax/instkernel/Makefile  Mon Apr 05 06:15:30 1999 +0000
+++ b/distrib/pmax/instkernel/Makefile  Mon Apr 05 06:17:44 1999 +0000
@@ -1,4 +1,4 @@
-#      $NetBSD: Makefile,v 1.1 1998/12/05 07:33:13 jonathan Exp $
+#      $NetBSD: Makefile,v 1.2 1999/04/05 06:17:44 simonb Exp $
 
 
 KERN=  ${.CURDIR}/../../../sys/arch/pmax/compile/RAMDISK/netbsd
@@ -8,17 +8,16 @@
 CLEANFILES= netbsd.tmp netbsd.ecoff netbsd.ecoff.gz \
            netbsd.aout netbsd.aout.gz
 
-all:   netbsd.ram.gz
+all:   netbsd.gz
 
-netbsd.ram.gz: ${KERN} ${RAMDISK}
-       cp ${KERN} netbsd.tmp
-       mdsetimage -v netbsd.tmp ${RAMDISK}
-       elf2ecoff netbsd.tmp netbsd.ecoff
+netbsd.gz: ${KERN} ${RAMDISK}
+       cp ${KERN} netbsd
+       mdsetimage -v netbsd ${RAMDISK}
+       elf2ecoff netbsd netbsd.ecoff
        rm -f netbsd.ecoff.gz
-       gzip netbsd.ecoff
-       elf2aout netbsd.tmp netbsd.aout
-       rm -f netbsd.aout.gz
-       gzip netbsd.aout
+       gzip -9 netbsd.ecoff
+       rm -f netbsd.gz
+       gzip -9 netbsd
 
 clean cleandir distclean:
        rm -f ${CLEANFILES}



Home | Main Index | Thread Index | Old Index