Source-Changes-HG archive

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

[src/netbsd-1-4]: src/distrib/i386/floppies/bootfloppy-common Apply patch (re...



details:   https://anonhg.NetBSD.org/src/rev/0cc095f87d69
branches:  netbsd-1-4
changeset: 470591:0cc095f87d69
user:      he <he%NetBSD.org@localhost>
date:      Thu May 11 10:12:44 2000 +0000

description:
Apply patch (requested by jhawk):
  Make sure the PCMCIA alloc variables are retained in the symbol
  table of the resulting kernel, thereby allowing them to be tweaked
  as described in the install notes.

diffstat:

 distrib/i386/floppies/bootfloppy-common/Makefile.inc |  7 ++++---
 1 files changed, 4 insertions(+), 3 deletions(-)

diffs (28 lines):

diff -r 2a4c006136b7 -r 0cc095f87d69 distrib/i386/floppies/bootfloppy-common/Makefile.inc
--- a/distrib/i386/floppies/bootfloppy-common/Makefile.inc      Thu May 11 09:59:52 2000 +0000
+++ b/distrib/i386/floppies/bootfloppy-common/Makefile.inc      Thu May 11 10:12:44 2000 +0000
@@ -1,4 +1,4 @@
-#      $NetBSD: Makefile.inc,v 1.18.2.1 1999/11/11 21:05:58 he Exp $
+#      $NetBSD: Makefile.inc,v 1.18.2.2 2000/05/11 10:12:44 he Exp $
 
 # TOP is assumed to be defined by Makefile including this one.
 
@@ -13,7 +13,7 @@
 IMAGE?=                xxx.fs
 KERN?=         netbsd-xxx
 MDEC=          ${DESTDIR}/usr/mdec
-STRIP?=                strip
+STRIP?=                strip --strip-unneeded
 
 LISTS=         ${COMMONDIR}/list
 RAMDISK        !=cd $(.CURDIR)/../ramdisk/; \
@@ -60,7 +60,8 @@
 netbsd.ram.gz: ${KERN} ${RAMDISK}
        cp ${KERN} netbsd.tmp
        ${DESTDIR}/usr/sbin/mdsetimage -v netbsd.tmp ${RAMDISK}
-       ${STRIP} netbsd.tmp
+       ${STRIP} -K _pcic_isa_alloc_iobase \
+           -K _pcic_isa_alloc_iosize -K _pcic_isa_intr_alloc_mask netbsd.tmp
        gzip -9 netbsd.tmp
        mv netbsd.tmp.gz ${.TARGET}
 



Home | Main Index | Thread Index | Old Index