diff options
author | Dale S. Rahn <rahnds@cvs.openbsd.org> | 1998-09-15 05:45:51 +0000 |
---|---|---|
committer | Dale S. Rahn <rahnds@cvs.openbsd.org> | 1998-09-15 05:45:51 +0000 |
commit | 88585b7bc9e84b7a8b19941614628e9c6c5acb72 (patch) | |
tree | 154bb11a4920f76cb73bf4f0b90c502aee70dc20 /distrib/powerpc/ramdisk | |
parent | 0b790d147a51704636abcdc31761ef98cb8a5833 (diff) |
remove cut from ramdisk, since other ports dont use it.
At least temporarily remove vi from the powerpc ramdisks,
They dont fit on a floppy any longer.
Diffstat (limited to 'distrib/powerpc/ramdisk')
-rw-r--r-- | distrib/powerpc/ramdisk/install.md | 6 | ||||
-rw-r--r-- | distrib/powerpc/ramdisk/list | 9 |
2 files changed, 7 insertions, 8 deletions
diff --git a/distrib/powerpc/ramdisk/install.md b/distrib/powerpc/ramdisk/install.md index 5b046a9c221..15559ebd1fe 100644 --- a/distrib/powerpc/ramdisk/install.md +++ b/distrib/powerpc/ramdisk/install.md @@ -1,4 +1,4 @@ -# $OpenBSD: install.md,v 1.6 1998/09/12 20:05:28 rahnds Exp $ +# $OpenBSD: install.md,v 1.7 1998/09/15 05:45:50 rahnds Exp $ # # # Copyright rc) 1996 The NetBSD Foundation, Inc. @@ -62,12 +62,12 @@ md_machine_arch() { md_get_diskdevs() { # return available disk devices - cat /kern/msgbuf | egrep "^[sw]d[0-9]|ofdisk[0-9] " | cut -d" " -f1 | sort -u + cat /kern/msgbuf | egrep "^[sw]d[0-9]|ofdisk[0-9] " | sed -e "s/[ :(].*//" | sort -u } md_get_cddevs() { # return available CDROM devices - cat /kern/msgbuf | egrep "^a?cd[0-9] " | cut -d" " -f1 | sort -u + cat /kern/msgbuf | egrep "^a?cd[0-9] " | sed -e "s/[ :(].*//" | sort -u } md_get_partition_range() { diff --git a/distrib/powerpc/ramdisk/list b/distrib/powerpc/ramdisk/list index e30deb9f583..a007d9bfe4d 100644 --- a/distrib/powerpc/ramdisk/list +++ b/distrib/powerpc/ramdisk/list @@ -1,9 +1,9 @@ -# $OpenBSD: list,v 1.8 1998/09/13 03:13:11 rahnds Exp $ +# $OpenBSD: list,v 1.9 1998/09/15 05:45:50 rahnds Exp $ SRCDIRS distrib/special SRCDIRS usr.bin bin sbin usr.sbin gnu/usr.bin -SRCDIRS usr.bin/vi usr.sbin/pppd -SRCDIRS usr.bin/vi +SRCDIRS usr.sbin/pppd +#SRCDIRS usr.bin/vi # copy the crunched binary, link to it, and kill it COPY ${OBJDIR}/instbin instbin @@ -51,7 +51,6 @@ LINK instbin sbin/route #LINK instbin sbin/slattach LINK instbin sbin/scsi LINK instbin sbin/umount -LINK instbin usr/bin/cut LINK instbin usr/bin/grep usr/bin/fgrep usr/bin/egrep LINK instbin usr/bin/ftp LINK instbin usr/bin/gzip usr/bin/gunzip usr/bin/gzcat @@ -63,7 +62,7 @@ LINK instbin usr/bin/tip LINK instbin usr/sbin/chat LINK instbin usr/sbin/chown usr/sbin/chgrp LINK instbin usr/sbin/pppd -SYMLINK ../../instbin usr/bin/build usr/bin/vi +#SYMLINK ../../instbin usr/bin/build usr/bin/vi # copy the MAKEDEV script and make some devices COPY ${DESTDIR}/dev/MAKEDEV dev/MAKEDEV |