diff options
author | 2000-07-13 01:41:45 +0000 | |
---|---|---|
committer | 2000-07-13 01:41:45 +0000 | |
commit | d114e36b602fa7ea6323052b9a4d561fcf0d0117 (patch) | |
tree | 856f92d2413ff0d39ae423503c71b3a4701fe306 | |
parent | sync (diff) | |
download | wireguard-openbsd-d114e36b602fa7ea6323052b9a4d561fcf0d0117.tar.xz wireguard-openbsd-d114e36b602fa7ea6323052b9a4d561fcf0d0117.zip |
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 |