Remove support for floppy tape installs. I'm sorry, we're outta
space, and it's either this or the DOS installs. I think that the DOS installs are somehow more important. :)
This commit is contained in:
parent
4b23ce1494
commit
a51c5aa8c3
@ -1,10 +1,10 @@
|
||||
# $Id: boot_crunch.conf,v 1.34 1998/09/19 01:47:07 jkh Exp $
|
||||
# $Id: boot_crunch.conf,v 1.35 1998/09/22 00:16:23 jkh Exp $
|
||||
|
||||
srcdirs /usr/src/bin /usr/src/sbin /usr/src/release /usr/src/usr.bin
|
||||
srcdirs /usr/src/gnu/usr.bin /usr/src/usr.sbin /usr/src/sbin/i386
|
||||
|
||||
progs sh find
|
||||
progs pwd ft ppp
|
||||
progs pwd ppp
|
||||
progs sysinstall newfs gzip cpio bad144 fsck ifconfig route slattach
|
||||
progs mount_nfs
|
||||
ln gzip gunzip
|
||||
|
@ -1,10 +1,10 @@
|
||||
# $Id: boot_crunch.conf,v 1.34 1998/09/19 01:47:07 jkh Exp $
|
||||
# $Id: boot_crunch.conf,v 1.35 1998/09/22 00:16:23 jkh Exp $
|
||||
|
||||
srcdirs /usr/src/bin /usr/src/sbin /usr/src/release /usr/src/usr.bin
|
||||
srcdirs /usr/src/gnu/usr.bin /usr/src/usr.sbin /usr/src/sbin/i386
|
||||
|
||||
progs sh find
|
||||
progs pwd ft ppp
|
||||
progs pwd ppp
|
||||
progs sysinstall newfs gzip cpio bad144 fsck ifconfig route slattach
|
||||
progs mount_nfs
|
||||
ln gzip gunzip
|
||||
|
@ -1,10 +1,10 @@
|
||||
# $Id: boot_crunch.conf,v 1.34 1998/09/19 01:47:07 jkh Exp $
|
||||
# $Id: boot_crunch.conf,v 1.35 1998/09/22 00:16:23 jkh Exp $
|
||||
|
||||
srcdirs /usr/src/bin /usr/src/sbin /usr/src/release /usr/src/usr.bin
|
||||
srcdirs /usr/src/gnu/usr.bin /usr/src/usr.sbin /usr/src/sbin/i386
|
||||
|
||||
progs sh find
|
||||
progs pwd ft ppp
|
||||
progs pwd ppp
|
||||
progs sysinstall newfs gzip cpio bad144 fsck ifconfig route slattach
|
||||
progs mount_nfs
|
||||
ln gzip gunzip
|
||||
|
@ -1,10 +1,10 @@
|
||||
# $Id: boot_crunch.conf,v 1.34 1998/09/19 01:47:07 jkh Exp $
|
||||
# $Id: boot_crunch.conf,v 1.35 1998/09/22 00:16:23 jkh Exp $
|
||||
|
||||
srcdirs /usr/src/bin /usr/src/sbin /usr/src/release /usr/src/usr.bin
|
||||
srcdirs /usr/src/gnu/usr.bin /usr/src/usr.sbin /usr/src/sbin/i386
|
||||
|
||||
progs sh find
|
||||
progs pwd ft ppp
|
||||
progs pwd ppp
|
||||
progs sysinstall newfs gzip cpio bad144 fsck ifconfig route slattach
|
||||
progs mount_nfs
|
||||
ln gzip gunzip
|
||||
|
@ -1,10 +1,10 @@
|
||||
# $Id: boot_crunch.conf,v 1.34 1998/09/19 01:47:07 jkh Exp $
|
||||
# $Id: boot_crunch.conf,v 1.35 1998/09/22 00:16:23 jkh Exp $
|
||||
|
||||
srcdirs /usr/src/bin /usr/src/sbin /usr/src/release /usr/src/usr.bin
|
||||
srcdirs /usr/src/gnu/usr.bin /usr/src/usr.sbin /usr/src/sbin/i386
|
||||
|
||||
progs sh find
|
||||
progs pwd ft ppp
|
||||
progs pwd ppp
|
||||
progs sysinstall newfs gzip cpio bad144 fsck ifconfig route slattach
|
||||
progs mount_nfs
|
||||
ln gzip gunzip
|
||||
|
@ -4,7 +4,7 @@
|
||||
* This is probably the last program in the `sysinstall' line - the next
|
||||
* generation being essentially a complete rewrite.
|
||||
*
|
||||
* $Id: devices.c,v 1.81 1998/09/13 16:45:10 wpaul Exp $
|
||||
* $Id: devices.c,v 1.82 1998/09/15 10:24:45 gibbs Exp $
|
||||
*
|
||||
* Copyright (c) 1995
|
||||
* Jordan Hubbard. All rights reserved.
|
||||
@ -68,7 +68,6 @@ static struct _devname {
|
||||
{ DEVICE_TYPE_CDROM, "matcd%da", "Matsushita CDROM ('sound blaster' type)", 17, 0, 8, 4, 'b' },
|
||||
{ DEVICE_TYPE_CDROM, "wcd%dc", "ATAPI IDE CDROM", 19, 2, 8, 4, 'b' },
|
||||
{ DEVICE_TYPE_TAPE, "rsa%d", "SCSI tape drive", 14, 0, 16, 4, 'c' },
|
||||
{ DEVICE_TYPE_TAPE, "rft%d", "Floppy tape drive (QIC-02)", 9, 32, 64, 4, 'c' },
|
||||
{ DEVICE_TYPE_TAPE, "rwt%d", "Wangtek tape drive", 10, 0, 1, 4, 'c' },
|
||||
{ DEVICE_TYPE_DISK, "da%d", "SCSI disk device", 4, 65538, 8, 16, 'b' },
|
||||
{ DEVICE_TYPE_DISK, "rda%d", "SCSI disk device", 13, 65538, 8, 16, 'c' },
|
||||
|
@ -4,7 +4,7 @@
|
||||
* This is probably the last program in the `sysinstall' line - the next
|
||||
* generation being essentially a complete rewrite.
|
||||
*
|
||||
* $Id: devices.c,v 1.81 1998/09/13 16:45:10 wpaul Exp $
|
||||
* $Id: devices.c,v 1.82 1998/09/15 10:24:45 gibbs Exp $
|
||||
*
|
||||
* Copyright (c) 1995
|
||||
* Jordan Hubbard. All rights reserved.
|
||||
@ -68,7 +68,6 @@ static struct _devname {
|
||||
{ DEVICE_TYPE_CDROM, "matcd%da", "Matsushita CDROM ('sound blaster' type)", 17, 0, 8, 4, 'b' },
|
||||
{ DEVICE_TYPE_CDROM, "wcd%dc", "ATAPI IDE CDROM", 19, 2, 8, 4, 'b' },
|
||||
{ DEVICE_TYPE_TAPE, "rsa%d", "SCSI tape drive", 14, 0, 16, 4, 'c' },
|
||||
{ DEVICE_TYPE_TAPE, "rft%d", "Floppy tape drive (QIC-02)", 9, 32, 64, 4, 'c' },
|
||||
{ DEVICE_TYPE_TAPE, "rwt%d", "Wangtek tape drive", 10, 0, 1, 4, 'c' },
|
||||
{ DEVICE_TYPE_DISK, "da%d", "SCSI disk device", 4, 65538, 8, 16, 'b' },
|
||||
{ DEVICE_TYPE_DISK, "rda%d", "SCSI disk device", 13, 65538, 8, 16, 'c' },
|
||||
|
@ -4,7 +4,7 @@
|
||||
* This is probably the last program in the `sysinstall' line - the next
|
||||
* generation being essentially a complete rewrite.
|
||||
*
|
||||
* $Id: devices.c,v 1.81 1998/09/13 16:45:10 wpaul Exp $
|
||||
* $Id: devices.c,v 1.82 1998/09/15 10:24:45 gibbs Exp $
|
||||
*
|
||||
* Copyright (c) 1995
|
||||
* Jordan Hubbard. All rights reserved.
|
||||
@ -68,7 +68,6 @@ static struct _devname {
|
||||
{ DEVICE_TYPE_CDROM, "matcd%da", "Matsushita CDROM ('sound blaster' type)", 17, 0, 8, 4, 'b' },
|
||||
{ DEVICE_TYPE_CDROM, "wcd%dc", "ATAPI IDE CDROM", 19, 2, 8, 4, 'b' },
|
||||
{ DEVICE_TYPE_TAPE, "rsa%d", "SCSI tape drive", 14, 0, 16, 4, 'c' },
|
||||
{ DEVICE_TYPE_TAPE, "rft%d", "Floppy tape drive (QIC-02)", 9, 32, 64, 4, 'c' },
|
||||
{ DEVICE_TYPE_TAPE, "rwt%d", "Wangtek tape drive", 10, 0, 1, 4, 'c' },
|
||||
{ DEVICE_TYPE_DISK, "da%d", "SCSI disk device", 4, 65538, 8, 16, 'b' },
|
||||
{ DEVICE_TYPE_DISK, "rda%d", "SCSI disk device", 13, 65538, 8, 16, 'c' },
|
||||
|
Loading…
Reference in New Issue
Block a user