diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2000-07-13 01:41:50 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2000-07-13 01:41:50 +0000 |
commit | 18e88170b452bca5deb34843455c9c784517a884 (patch) | |
tree | 09b641f18b99414f38401e17ab6f60ae4c149dbe | |
parent | 6dfe23af4e777e4383641494302de39bf07a3f64 (diff) |
Be smarter when populating the miniroot : don't copy, then rm, files not needed here. Required to fit since last MAKEDEV additions.
-rw-r--r-- | distrib/sun3/miniroot/list | 6 | ||||
-rw-r--r-- | distrib/sun3/ramdisk/list | 8 |
2 files changed, 7 insertions, 7 deletions
diff --git a/distrib/sun3/miniroot/list b/distrib/sun3/miniroot/list index c0ee95fe43e..eb20e213ac8 100644 --- a/distrib/sun3/miniroot/list +++ b/distrib/sun3/miniroot/list @@ -1,4 +1,4 @@ -# $OpenBSD: list,v 1.1 2000/06/20 21:29:24 miod Exp $ +# $OpenBSD: list,v 1.2 2000/07/13 01:41:45 miod Exp $ # Sun3 extras LINK instbin sbin/disklabel @@ -33,8 +33,8 @@ SPECIAL cd dev; sh MAKEDEV all #SPECIAL /bin/rm dev/MAKEDEV # we need the contents of /usr/mdec -COPYDIR ${DESTDIR}/usr/mdec usr/mdec -SPECIAL rm -f usr/mdec/installboot +COPY ${DESTDIR}/usr/mdec/bootxx /usr/mdec/bootxx +COPY ${DESTDIR}/usr/mdec/ufsboot /usr/mdec/ufsboot # and a few useful bits of the termcap file (512K and still growing 8-) SPECIAL tic -C ${CURDIR}/../../share/termtypes/termtypes.master | sed -n -e 's,/usr/share/lib/tabset,/usr/share/tabset,g' -e 's,/usr/lib/tabset,/usr/share/tabset,g' -e '/^dumb|/,/:[ ]*$/p' -e '/^unknown|/,/:[ ]*$/p' -e '/^sun.*|/,/:[ ]*$/p' -e '/^vt.*|/,/:[ ]*$/p' -e '/^pc3|/,/:[ ]*$/p' -e '/^pcvt.*|/,/:[ ]*$/p' > usr/share/misc/termcap diff --git a/distrib/sun3/ramdisk/list b/distrib/sun3/ramdisk/list index fe6410f807d..bc314cd0cb6 100644 --- a/distrib/sun3/ramdisk/list +++ b/distrib/sun3/ramdisk/list @@ -1,4 +1,4 @@ -# $OpenBSD: list,v 1.3 2000/06/20 21:29:35 miod Exp $ +# $OpenBSD: list,v 1.4 2000/07/13 01:41:49 miod Exp $ # Sun3 extra's LINK instbin sbin/disklabel @@ -19,9 +19,9 @@ SYMLINK /tmp var/tmp COPY ${DESTDIR}/dev/MAKEDEV dev/MAKEDEV SPECIAL cd dev; sh MAKEDEV ramdisk -# we need the contents of /usr/mdec (but not boot or binstall) -COPYDIR ${DESTDIR}/usr/mdec usr/mdec -SPECIAL rm -f usr/mdec/binstall usr/mdec/installboot +# we need the contents of /usr/mdec (but not installboot) +COPY ${DESTDIR}/usr/mdec/bootxx usr/mdec/bootxx +COPY ${DESTDIR}/usr/mdec/ufsboot usr/mdec/ufsboot # and a few useful bits of the termcap file (512K and still growing 8-) SPECIAL tic -C ${CURDIR}/../../share/termtypes/termtypes.master | sed -n -e 's,/usr/share/lib/tabset,/usr/share/tabset,g' -e 's,/usr/lib/tabset,/usr/share/tabset,g' -e '/^dumb|/,/:[ ]*$/p' -e '/^unknown|/,/:[ ]*$/p' -e '/^sun.*|/,/:[ ]*$/p' -e '/^vt.*|/,/:[ ]*$/p' -e '/^pc3|/,/:[ ]*$/p' -e '/^pcvt.*|/,/:[ ]*$/p' > usr/share/misc/termcap |