Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/netbsd-1-5]: src/distrib/i386/floppies/ramdisk-kernel Pull up revs 1.7 -...
details: https://anonhg.NetBSD.org/src/rev/7eae1ec1073f
branches: netbsd-1-5
changeset: 489549:7eae1ec1073f
user: taca <taca%NetBSD.org@localhost>
date: Wed Sep 27 14:48:36 2000 +0000
description:
Pull up revs 1.7 -> 1.9, approved by thorpej:
1.7 -> 1.8:
> Remove the kernel symbol files during a `make clean'.
1.8 -> 1.9:
> Revert rev 1.7, because retaining any symbols
> causes fdset booting to require 2 floppy swaps.
>
> XXX Need to deal with install(8) suggesting you can patch
> vars.
diffstat:
distrib/i386/floppies/ramdisk-kernel/Makefile | 12 ++++--------
1 files changed, 4 insertions(+), 8 deletions(-)
diffs (47 lines):
diff -r a7fa48c6b154 -r 7eae1ec1073f distrib/i386/floppies/ramdisk-kernel/Makefile
--- a/distrib/i386/floppies/ramdisk-kernel/Makefile Tue Sep 26 20:18:16 2000 +0000
+++ b/distrib/i386/floppies/ramdisk-kernel/Makefile Wed Sep 27 14:48:36 2000 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.5.2.1 2000/09/04 04:02:47 jhawk Exp $
+# $NetBSD: Makefile,v 1.5.2.2 2000/09/27 14:48:36 taca Exp $
TOP= ${.CURDIR}/..
@@ -8,10 +8,6 @@
MDEC= ${DESTDIR}/usr/mdec
STRIP?= strip
-STRIPFLAGS?= --strip-unneeded \
- -K pcic_isa_alloc_iobase -K pcic_isa_alloc_iosize \
- -K pcic_isa_intr_alloc_mask \
- -K pcic_irq_probe
COMMONDIR= ${TOP}/bootfloppy-common
LISTS= ${COMMONDIR}/list
@@ -26,7 +22,7 @@
cp ${KERNOBJDIR}/INSTALL/netbsd netbsd.tmp
${DESTDIR}/usr/sbin/mdsetimage -v netbsd.tmp ${RAMDISK}
nm netbsd.tmp > netbsd.INSTALL.symbols
- ${STRIP} ${STRIPFLAGS} netbsd.tmp
+ ${STRIP} netbsd.tmp
gzip -9 netbsd.tmp
mv netbsd.tmp.gz ${.TARGET}
@@ -34,7 +30,7 @@
cp ${KERNOBJDIR}/INSTALL_TINY/netbsd netbsd.tmp
${DESTDIR}/usr/sbin/mdsetimage -v netbsd.tmp ${RAMDISK_T}
nm netbsd.tmp > netbsd.INSTALL_TINY.symbols
- ${STRIP} ${STRIPFLAGS} netbsd.tmp
+ ${STRIP} netbsd.tmp
gzip -9 netbsd.tmp
mv netbsd.tmp.gz ${.TARGET}
@@ -49,7 +45,7 @@
cp ${KERNELSYMS} ${RELEASEDIR}/binary/kernel
clean cleandir distclean:
- rm -f *.core ${KERNELS}
+ rm -f *.core ${KERNELS} ${KERNELSYMS}
.include <bsd.obj.mk>
.include <bsd.subdir.mk>
Home |
Main Index |
Thread Index |
Old Index