1# $NetBSD: list,v 1.9 2000/06/10 04:56:12 matt Exp $ 2 3# Do this first in case spwd.db and pwd.db fill disk 4COPY ${CURDIR}/../../../etc/master.passwd etc/master.passwd 5SPECIAL pwd_mkdb -p -d ./ etc/master.passwd 6SPECIAL /bin/rm etc/spwd.db 7SPECIAL /bin/rm etc/pwd.db 8 9# copy the MAKEDEV script and make some devices 10COPY ${CURDIR}/../../../etc/etc.vax/MAKEDEV dev/MAKEDEV 11SPECIAL cd dev; sh MAKEDEV std mt0 st0 rd0 rd1 dz0 dl0 dhu0 rx0 12SPECIAL cd dev; sh MAKEDEV ra0 ra1 hp0 hp1 sd0 sd1 sd2 md0 pty0 cd0 cd1 13SPECIAL /bin/rm dev/MAKEDEV 14 15# copy the crunched binary, link to it, and kill it 16COPY ${OBJDIR}/ramdiskbin ramdiskbin 17LINK ramdiskbin sysinst 18LINK ramdiskbin bin/cat 19LINK ramdiskbin bin/chmod 20LINK ramdiskbin bin/cp 21LINK ramdiskbin bin/dd 22LINK ramdiskbin bin/df 23LINK ramdiskbin bin/ed 24LINK ramdiskbin bin/ln 25LINK ramdiskbin bin/ls 26LINK ramdiskbin bin/mkdir 27LINK ramdiskbin bin/mt 28LINK ramdiskbin bin/mv 29LINK ramdiskbin bin/pax 30LINK ramdiskbin bin/pwd 31LINK ramdiskbin bin/rm 32LINK ramdiskbin bin/sh 33LINK ramdiskbin bin/stty 34LINK ramdiskbin bin/sync 35LINK ramdiskbin sbin/disklabel 36LINK ramdiskbin sbin/fdisk 37LINK ramdiskbin sbin/fsck 38LINK ramdiskbin sbin/fsck_ffs 39LINK ramdiskbin sbin/halt 40LINK ramdiskbin sbin/ifconfig 41LINK ramdiskbin sbin/init 42LINK ramdiskbin sbin/mknod 43LINK ramdiskbin sbin/mount 44LINK ramdiskbin sbin/mount_cd9660 45LINK ramdiskbin sbin/mount_ffs 46LINK ramdiskbin sbin/mount_msdos 47LINK ramdiskbin sbin/mount_nfs 48LINK ramdiskbin sbin/mount_kernfs 49LINK ramdiskbin sbin/newfs 50LINK ramdiskbin sbin/ping 51LINK ramdiskbin sbin/reboot 52#LINK ramdiskbin sbin/restore 53LINK ramdiskbin sbin/route 54#LINK ramdiskbin sbin/rrestore 55LINK ramdiskbin sbin/shutdown 56LINK ramdiskbin sbin/swapctl 57LINK ramdiskbin sbin/umount 58SYMLINK /bin/cat usr/bin/chgrp 59SYMLINK /bin/cat usr/bin/ftp 60SYMLINK /bin/cat usr/bin/gunzip 61SYMLINK /bin/cat usr/bin/gzcat 62SYMLINK /bin/cat usr/bin/gzip 63SYMLINK /bin/cat usr/bin/more 64SYMLINK /bin/cat usr/bin/sed 65SYMLINK /bin/cat usr/bin/strings 66SYMLINK /bin/cat usr/bin/tar 67# SYMLINK /bin/cat usr/sbin/bad144 68SYMLINK /bin/cat usr/sbin/chown 69SYMLINK /bin/cat usr/sbin/chroot 70SPECIAL /bin/rm ramdiskbin 71 72# we need the boot in /, and boot blocks in /usr/mdec 73COPY ${DESTDIR}/boot boot 74COPY ${DESTDIR}/usr/mdec/xxboot usr/mdec/xxboot 75LINK usr/mdec/xxboot usr/mdec/raboot 76LINK usr/mdec/xxboot usr/mdec/hpboot 77LINK usr/mdec/xxboot usr/mdec/rdboot 78LINK usr/mdec/xxboot usr/mdec/sdboot 79 80# various files that we need in /etc for the install 81COPY ${CURDIR}/../../../etc/group etc/group 82COPY ${CURDIR}/../../../etc/netconfig etc/netconfig 83COPY ${CURDIR}/../../../etc/protocols etc/protocols 84COPY ${CURDIR}/../../../etc/services etc/services 85 86# and the common installation tools 87# COPY dot.commonutils .commonutils 88COPY ${CURDIR}/termcap.vt100 usr/share/misc/termcap 89 90# the disktab explanation file 91COPY ${CURDIR}/disktab.preinstall etc/disktab.preinstall 92 93# and the installation tools 94COPY ${CURDIR}/dot.profile .profile 95# COPY ${CURDIR}/dot.instutils .instutils 96# COPY ${OBJDIR}/install.sh install 97# COPY ${OBJDIR}/upgrade.sh upgrade 98# COPY ${OBJDIR}/start.sh start 99# COPY ${CURDIR}/dot.hdprofile tmp/.hdprofile 100# SPECIAL chmod 755 install 101# SPECIAL chmod 755 upgrade 102# SPECIAL chmod 755 start 103 104#the lists of obsolete files used by sysinst 105SPECIAL sh ${CURDIR}/../../sets/makeobsolete -b -s ${CURDIR}/../../sets -t ./dist 106