blob: 2c3047de177646e664f0648d4ebd24109fd918ec (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
# $OpenBSD: list,v 1.6 1998/04/28 16:28:01 millert Exp $
# we strip comments from files since we need the space...
# the disktab explanation file
SPECIAL sed -e '/^#[ ].*$/d' < ${CURDIR}/disktab.preinstall > etc/disktab.preinstall
# and the installation tools
SPECIAL sed -e '/^#[ ].*$/d' < ${CURDIR}/dot.profile > .profile
SPECIAL sed -e '/^#[ ].*$/d' < ${CURDIR}/dot.instutils > .instutils
SPECIAL sed -e '/^#[ ].*$/d' < ${CURDIR}/disktab.shadow > etc/disktab.shadow
SPECIAL sed -e "/^VERSION=/s/=.*/=${REV}/" -e '/^#[ ].*$/d' < ${CURDIR}/../../miniroot/install.sub > install.sub
SPECIAL sed -e '/^#[ ].*$/d' < ${CURDIR}/../../miniroot/install.sh > install
SPECIAL sed -e '/^#[ ].*$/d' < ${CURDIR}/../../miniroot/upgrade.sh > upgrade
SPECIAL sed -e '/^#[ ].*$/d' < ${CURDIR}/install.md > install.md
SPECIAL chmod 755 install upgrade
|