Source-Changes-HG archive

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

[src/netbsd-1-6]: src/sys/arch/cobalt Apply patch provided by soren in ticket...



details:   https://anonhg.NetBSD.org/src/rev/e46bfc104c10
branches:  netbsd-1-6
changeset: 529059:e46bfc104c10
user:      lukem <lukem%NetBSD.org@localhost>
date:      Sun Sep 01 14:04:44 2002 +0000

description:
Apply patch provided by soren in ticket #750, as described below:

        some recent changes have contributed to pushing the /cobalt 1.6 kernel
        over the firmware size limit [yes, the port does need a boot loader].

        For 1.6, removing the raid and siop drivers from GENERIC along with
        gzip -4'ing kernels gives us the required headroom.

diffstat:

 sys/arch/cobalt/conf/GENERIC                         |  12 ++++++------
 sys/arch/cobalt/stand/installkernel/installkernel.sh |   4 ++--
 2 files changed, 8 insertions(+), 8 deletions(-)

diffs (67 lines):

diff -r 0a6de409c8ad -r e46bfc104c10 sys/arch/cobalt/conf/GENERIC
--- a/sys/arch/cobalt/conf/GENERIC      Sun Sep 01 14:00:17 2002 +0000
+++ b/sys/arch/cobalt/conf/GENERIC      Sun Sep 01 14:04:44 2002 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: GENERIC,v 1.31.4.1 2002/08/01 04:18:25 lukem Exp $
+# $NetBSD: GENERIC,v 1.31.4.2 2002/09/01 14:04:44 lukem Exp $
 #
 # GENERIC machine description file
 # 
@@ -22,7 +22,7 @@
 
 options        INCLUDE_CONFIG_FILE     # embed config file in kernel binary
 
-#ident                 "GENERIC-$Revision: 1.31.4.1 $"
+#ident                 "GENERIC-$Revision: 1.31.4.2 $"
 
 maxusers       32
 
@@ -146,7 +146,7 @@
 #bha*          at pci? dev ? function ?        # BusLogic 9xx SCSI
 #dpt*          at pci? dev ? function ?        # DPT SmartCache/SmartRAID
 #isp*          at pci? dev ? function ?        # Qlogic ISP [12]0x0 SCSI/FC
-siop*          at pci? dev ? function ?        # NCR 53c8xx SCSI
+#siop*         at pci? dev ? function ?        # NCR 53c8xx SCSI
 #pcscp*                at pci? dev ? function ?        # AMD 53c974 PCscsi-PCI SCSI
 
 # SCSI bus support
@@ -156,7 +156,7 @@
 #scsibus*      at bha?
 #scsibus*      at dpt?
 #scsibus*      at isp?
-scsibus*       at siop?
+#scsibus*      at siop?
 #scsibus*      at pcscp?
 
 # SCSI devices
@@ -235,8 +235,8 @@
 
 # Disk/mass storage pseudo-devices
 #pseudo-device ccd             4               # concatenated disk devices
-pseudo-device  raid            8               # RAIDframe disk driver
-options        RAID_AUTOCONFIG                 # auto-configuration of RAID
+#pseudo-device raid            8               # RAIDframe disk driver
+#options       RAID_AUTOCONFIG                 # auto-configuration of RAID
 # Options to enable various other RAIDframe RAID types.
 # options      RF_INCLUDE_EVENODD=1
 # options      RF_INCLUDE_RAID5_RS=1
diff -r 0a6de409c8ad -r e46bfc104c10 sys/arch/cobalt/stand/installkernel/installkernel.sh
--- a/sys/arch/cobalt/stand/installkernel/installkernel.sh      Sun Sep 01 14:00:17 2002 +0000
+++ b/sys/arch/cobalt/stand/installkernel/installkernel.sh      Sun Sep 01 14:04:44 2002 +0000
@@ -1,6 +1,6 @@
 #!/bin/sh
 
-# $NetBSD: installkernel.sh,v 1.1 2000/06/20 00:24:11 soren Exp $
+# $NetBSD: installkernel.sh,v 1.1.24.1 2002/09/01 14:04:45 lukem Exp $
 
 EXT2_MOUNT=/stand
 NETBSD_KERNEL=netbsd
@@ -17,7 +17,7 @@
        exit 1
 fi
 
-gzip -2 -c /${NETBSD_KERNEL} > ${EXT2_MOUNT}/boot/netbsd.gz
+gzip -4 -c /${NETBSD_KERNEL} > ${EXT2_MOUNT}/boot/netbsd.gz
 
 for KERNEL in ${FW_KERNELS}; do
        rm -f ${EXT2_MOUNT}/boot/${KERNEL}



Home | Main Index | Thread Index | Old Index