1 # 2 # $NetBSD: list,v 1.5 2007/03/20 16:20:20 tsutsui Exp $ 3 # 4 5 # The PROM provides a default kernel name of "vmunix" 6 COPY ${KERNEL} netbsd 7 LINK netbsd vmunix 8 9 # These are scripts: 10 COPY ${DESTDIR}/usr/bin/false bin/false 555 11 COPY ${DESTDIR}/usr/bin/true bin/true 555 12 13 # From usr/mdec: 14 COPY ${DESTDIR}/usr/mdec/bootxx usr/mdec/bootxx 15 COPY ${DESTDIR}/usr/mdec/bootyy usr/mdec/bootyy 16 SYMLINK /usr/sbin/installboot usr/mdec/installboot 17 COPY ${DESTDIR}/usr/mdec/netboot usr/mdec/netboot 18 COPY ${DESTDIR}/usr/mdec/tapeboot usr/mdec/tapeboot 19 COPY ${DESTDIR}/usr/mdec/ufsboot usr/mdec/ufsboot 20 LINK usr/mdec/ufsboot ufsboot 21 22 # various files that we need in /etc for the install 23 COPY ${DESTDIR}/etc/group etc/group 24 COPY ${DESTDIR}/etc/master.passwd etc/master.passwd 25 COPY ${DESTDIR}/etc/netconfig etc/netconfig 26 COPY ${DESTDIR}/etc/passwd etc/passwd 27 COPY ${DESTDIR}/etc/protocols etc/protocols 28 COPY ${DESTDIR}/etc/pwd.db etc/pwd.db 29 COPY ${DESTDIR}/etc/services etc/services 30 COPY ${DESTDIR}/etc/spwd.db etc/spwd.db 31 32 # some /etc files get special handling (for MFS /tmp yuck) 33 COPY ${DESTDIR}/etc/disktab etc/disktab.shadow 34 SYMLINK /tmp/disktab.shadow etc/disktab 35 COPY ${CURDIR}/fstab tmp/fstab.shadow 36 SYMLINK /tmp/fstab.shadow etc/fstab 37 SYMLINK /tmp/resolv.conf.shadow etc/resolv.conf 38 SYMLINK /tmp/hosts etc/hosts 39 40 # copy the MAKEDEV script and make some devices 41 COPY ${DESTDIR}/dev/MAKEDEV dev/MAKEDEV 555 42 COPY ${DESTDIR}/dev/MAKEDEV.local dev/MAKEDEV.local 555 43 44 # copy the miniroot installation tools 45 COPY ${CURDIR}/profile .profile 46 COPY ${CURDIR}/termcap usr/share/misc/termcap 47 48 COPY ${CURDIR}/install.md install.md 49 COPY ${OBJDIR}/install.sub install.sub 50 51 COPY ${DISTRIBDIR}/miniroot/install.sh install 555 52 COPY ${DISTRIBDIR}/miniroot/upgrade.sh upgrade 555 53 54 SRCDIRS bin sbin usr.bin usr.sbin 55 56 # miniroot files from /sbin: 57 # Extras not in ../../miniroot/list: 58 # disklabel dmesg edlabel mount_kernfs restore 59 60 PROG sbin/disklabel 61 PROG sbin/dmesg 62 PROG sbin/edlabel 63 64 PROG sbin/fsck 65 PROG sbin/fsck_ffs 66 67 PROG sbin/ifconfig 68 PROG sbin/init 69 PROG sbin/mknod 70 71 PROG sbin/mount 72 PROG sbin/mount_cd9660 73 PROG sbin/mount_ffs 74 PROG sbin/mount_kernfs 75 PROG sbin/mount_nfs 76 77 PROG sbin/newfs sbin/mount_mfs 78 PROG sbin/ping 79 PROG sbin/reboot sbin/halt 80 81 PROG sbin/restore sbin/rrestore 82 83 PROG sbin/route 84 PROG sbin/shutdown 85 PROG sbin/slattach 86 PROG sbin/swapctl 87 PROG sbin/sysctl 88 PROG sbin/umount 89 90 # miniroot files from /bin: 91 # Extras not in ../../miniroot/list: 92 # date ps rmdir 93 94 PROG bin/cat 95 PROG bin/chmod 96 PROG bin/cp 97 PROG bin/date 98 PROG bin/dd 99 PROG bin/df 100 PROG bin/ed 101 PROG bin/expr 102 PROG bin/hostname 103 PROG bin/kill 104 PROG bin/ln 105 PROG bin/ls 106 PROG bin/mkdir 107 PROG bin/mt 108 PROG bin/mv 109 PROG bin/pax usr/bin/tar usr/bin/cpio 110 PROG bin/ps 111 PROG bin/pwd 112 PROG bin/rm 113 PROG bin/rmdir 114 PROG bin/sh 115 PROG bin/sleep 116 PROG bin/stty 117 PROG bin/sync 118 119 PROG bin/test bin/[ 120 121 # usr.sbin: 122 PROG usr/sbin/installboot 123 PROG usr/sbin/chown usr/bin/chgrp 124 PROG usr/sbin/rdate 125 126 # usr.bin: 127 128 PROG usr/bin/chflags 129 PROG usr/bin/cksum 130 PROG usr/bin/cmp 131 PROG usr/bin/ftp 132 PROG usr/bin/less usr/bin/more 133 PROG usr/bin/rsh 134 PROG usr/bin/sed 135 PROG usr/bin/tip 136 PROG usr/bin/vi 137 138 PROG usr/bin/gzip usr/bin/gunzip usr/bin/gzcat 139 140 # install.md still uses sort 141 PROG usr/bin/sort 142 143 SPECIAL less srcdir usr.bin/less/less 144 SPECIAL vi srcdir usr.bin/vi/build 145 146 SPECIAL ed srcdir distrib/utils/x_ed 147 SPECIAL ifconfig srcdir distrib/utils/x_ifconfig 148 SPECIAL ping srcdir distrib/utils/x_ping 149 SPECIAL route srcdir distrib/utils/x_route 150 151 ARGVLN sh -sh 152 153 LIBS libhack.o 154 LIBS -lrmt -ledit -lutil -lcurses -ltermcap -lcrypt -ll -lm -lkvm -lbz2 -lz 155