diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2002-04-29 17:13:40 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2002-04-29 17:13:40 +0000 |
commit | 38bf101802581aab6eedd860599bec1fe80f8bf1 (patch) | |
tree | 7064997817e5c9040fd694554804d319d5451954 /distrib/sun3 | |
parent | be5da28bf760481cf2c10351d5815e8673d7a7f6 (diff) |
generate termcap file using a list2sh.awk directrive; distrib becomes a lot smaller again
Diffstat (limited to 'distrib/sun3')
-rw-r--r-- | distrib/sun3/miniroot/list | 6 | ||||
-rw-r--r-- | distrib/sun3/ramdisk/list | 6 |
2 files changed, 4 insertions, 8 deletions
diff --git a/distrib/sun3/miniroot/list b/distrib/sun3/miniroot/list index e6596372872..49bc05f3179 100644 --- a/distrib/sun3/miniroot/list +++ b/distrib/sun3/miniroot/list @@ -1,4 +1,4 @@ -# $OpenBSD: list,v 1.7 2002/04/22 16:48:48 deraadt Exp $ +# $OpenBSD: list,v 1.8 2002/04/29 17:13:39 deraadt Exp $ # Sun3 extras LINK instbin sbin/disklabel @@ -28,9 +28,6 @@ COPY ${DESTDIR}/usr/mdec/ufsboot boot 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 - # copy the kernel COPY bsd bsd @@ -40,6 +37,7 @@ SYMLINK /tmp/disktab.shadow etc/disktab SYMLINK /tmp/fstab.shadow etc/fstab SYMLINK /tmp/resolv.conf.shadow etc/resolv.conf SYMLINK /tmp/hosts etc/hosts +TERMCAP vt100,vt200,dumb,sun usr/share/misc/termcap # and the installation tools SPECIAL sed -e '/^[ ]*#[ ].*$/d' -e '/^[ ]*#$/d' -e "s/^ARCH=ARCH$/ARCH=`arch -ks`" < ${CURDIR}/../common/install.md > install.md diff --git a/distrib/sun3/ramdisk/list b/distrib/sun3/ramdisk/list index a905a12b4ca..6c04698a92e 100644 --- a/distrib/sun3/ramdisk/list +++ b/distrib/sun3/ramdisk/list @@ -1,4 +1,4 @@ -# $OpenBSD: list,v 1.9 2002/04/22 16:48:48 deraadt Exp $ +# $OpenBSD: list,v 1.10 2002/04/29 17:13:39 deraadt Exp $ # Sun3 extra's LINK instbin sbin/disklabel @@ -21,15 +21,13 @@ SPECIAL cd dev; sh MAKEDEV ramdisk 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 - # various files that we need in /etc for the install COPY ${DESTDIR}/etc/disktab etc/disktab.shadow SYMLINK /tmp/disktab.shadow etc/disktab SYMLINK /tmp/fstab.shadow etc/fstab SYMLINK /tmp/resolv.conf.shadow etc/resolv.conf SYMLINK /tmp/hosts etc/hosts +TERMCAP vt100,vt200,dumb,sun usr/share/misc/termcap # and the installation tools SPECIAL sed -e '/^[ ]*#[ ].*$/d' -e '/^[ ]*#$/d' -e "s/^ARCH=ARCH$/ARCH=`arch -ks`/" < ${CURDIR}/../common/install.md > install.md |