1 1.7 cgd # $NetBSD: list,v 1.7 1999/04/07 06:47:50 cgd Exp $ 2 1.1 thorpej 3 1.1 thorpej # copy the crunched binary, link to it, and kill it 4 1.1 thorpej COPY ${OBJDIR}/ramdiskbin ramdiskbin 5 1.1 thorpej LINK ramdiskbin sysinst 6 1.1 thorpej LINK ramdiskbin bin/cat 7 1.1 thorpej LINK ramdiskbin bin/chmod 8 1.1 thorpej LINK ramdiskbin bin/cp 9 1.1 thorpej LINK ramdiskbin bin/dd 10 1.1 thorpej LINK ramdiskbin bin/df 11 1.1 thorpej LINK ramdiskbin bin/ed 12 1.1 thorpej LINK ramdiskbin bin/ln 13 1.1 thorpej LINK ramdiskbin bin/ls 14 1.1 thorpej LINK ramdiskbin bin/mkdir 15 1.1 thorpej LINK ramdiskbin bin/mt 16 1.1 thorpej LINK ramdiskbin bin/mv 17 1.6 ross LINK ramdiskbin bin/pax 18 1.1 thorpej LINK ramdiskbin bin/pwd 19 1.1 thorpej LINK ramdiskbin bin/rm 20 1.1 thorpej LINK ramdiskbin bin/sh 21 1.1 thorpej LINK ramdiskbin bin/stty 22 1.1 thorpej LINK ramdiskbin bin/sync 23 1.1 thorpej LINK ramdiskbin bin/test 24 1.1 thorpej LINK ramdiskbin bin/[ 25 1.1 thorpej LINK ramdiskbin sbin/disklabel 26 1.1 thorpej LINK ramdiskbin sbin/fsck 27 1.1 thorpej LINK ramdiskbin sbin/fsck_ffs 28 1.1 thorpej LINK ramdiskbin sbin/halt 29 1.1 thorpej LINK ramdiskbin sbin/ifconfig 30 1.1 thorpej LINK ramdiskbin sbin/init 31 1.1 thorpej LINK ramdiskbin sbin/mknod 32 1.1 thorpej LINK ramdiskbin sbin/mount 33 1.1 thorpej LINK ramdiskbin sbin/mount_cd9660 34 1.1 thorpej LINK ramdiskbin sbin/mount_ffs 35 1.6 ross LINK ramdiskbin sbin/mount_kernfs 36 1.1 thorpej LINK ramdiskbin sbin/mount_msdos 37 1.1 thorpej LINK ramdiskbin sbin/mount_nfs 38 1.1 thorpej LINK ramdiskbin sbin/newfs 39 1.1 thorpej LINK ramdiskbin sbin/ping 40 1.1 thorpej LINK ramdiskbin sbin/reboot 41 1.1 thorpej LINK ramdiskbin sbin/restore 42 1.1 thorpej LINK ramdiskbin sbin/route 43 1.1 thorpej LINK ramdiskbin sbin/rrestore 44 1.1 thorpej LINK ramdiskbin sbin/shutdown 45 1.1 thorpej LINK ramdiskbin sbin/slattach 46 1.6 ross LINK ramdiskbin sbin/swapctl 47 1.1 thorpej LINK ramdiskbin sbin/umount 48 1.1 thorpej SYMLINK /bin/cat usr/bin/chgrp 49 1.1 thorpej SYMLINK /bin/cat usr/bin/ftp 50 1.1 thorpej SYMLINK /bin/cat usr/bin/gunzip 51 1.1 thorpej SYMLINK /bin/cat usr/bin/gzcat 52 1.1 thorpej SYMLINK /bin/cat usr/bin/gzip 53 1.6 ross SYMLINK /bin/cat usr/bin/less 54 1.1 thorpej SYMLINK /bin/cat usr/bin/more 55 1.1 thorpej SYMLINK /bin/cat usr/bin/sed 56 1.1 thorpej SYMLINK /bin/cat usr/bin/strings 57 1.1 thorpej SYMLINK /bin/cat usr/bin/tar 58 1.1 thorpej SYMLINK /bin/cat usr/bin/tip 59 1.2 thorpej SYMLINK /bin/cat usr/bin/tset 60 1.1 thorpej SYMLINK /bin/cat usr/mdec/installboot 61 1.1 thorpej SYMLINK /bin/cat usr/sbin/bad144 62 1.1 thorpej SYMLINK /bin/cat usr/sbin/chown 63 1.1 thorpej SYMLINK /bin/cat usr/sbin/chroot 64 1.1 thorpej SYMLINK /bin/cat usr/sbin/update 65 1.1 thorpej SPECIAL /bin/rm ramdiskbin 66 1.1 thorpej 67 1.1 thorpej # copy the MAKEDEV script and make some devices 68 1.1 thorpej COPY ${CURDIR}/../../../../etc/etc.alpha/MAKEDEV dev/MAKEDEV 69 1.1 thorpej SPECIAL cd dev; sh MAKEDEV minimal 70 1.1 thorpej SPECIAL /bin/rm dev/MAKEDEV 71 1.1 thorpej 72 1.1 thorpej # we need the boot blocks /usr/mdec 73 1.1 thorpej COPY ${DESTDIR}/usr/mdec/boot usr/mdec/boot 74 1.7 cgd COPY ${DESTDIR}/usr/mdec/bootxx_ffs usr/mdec/bootxx_ffs 75 1.1 thorpej 76 1.1 thorpej # various files that we need in /etc for the install 77 1.1 thorpej COPY ${CURDIR}/../../../../etc/group etc/group 78 1.1 thorpej COPY ${CURDIR}/../../../../etc/master.passwd etc/master.passwd 79 1.1 thorpej COPY ${CURDIR}/../../../../etc/protocols etc/protocols 80 1.1 thorpej COPY ${CURDIR}/../../../../etc/services etc/services 81 1.1 thorpej SPECIAL pwd_mkdb -p -d ./ etc/master.passwd 82 1.6 ross SPECIAL /bin/rm etc/spwd.db 83 1.6 ross SPECIAL /bin/rm etc/pwd.db 84 1.1 thorpej 85 1.1 thorpej # and the common installation tools 86 1.1 thorpej COPY ${DESTDIR}/usr/share/misc/termcap usr/share/misc/termcap 87 1.6 ross COPY ${CURDIR}/../../../utils/script-installer/dot.commonutils .commonutils 88 1.6 ross COPY ${CURDIR}/../../../utils/script-installer/dot.instutils .instutils 89 1.1 thorpej 90 1.1 thorpej # the disktab explanation file 91 1.1 thorpej COPY disktab.preinstall etc/disktab.preinstall 92 1.1 thorpej 93 1.1 thorpej # and the installation tools 94 1.1 thorpej COPY dot.profile .profile 95 1.1 thorpej COPY dot.hdprofile tmp/.hdprofile 96 1.3 ross 97 1.3 ross # old-style installation tools 98 1.3 ross 99 1.3 ross COPY ${CURDIR}/../src/install.sh install 100 1.3 ross COPY ${CURDIR}/../src/upgrade.sh upgrade 101 1.3 ross 102 1.3 ross SPECIAL chmod 755 install 103 1.3 ross SPECIAL chmod 755 upgrade 104 1.3 ross 105 1.6 ross COPY ${CURDIR}/../../../notes/alpha/INSTALL.more INSTALL.more 106