1 1.1 thorpej # $NetBSD: list.ramdisk,v 1.1 2024/01/07 00:57:13 thorpej Exp $ 2 1.1 thorpej 3 1.1 thorpej SRCDIRS external/bsd/less/bin 4 1.1 thorpej SRCDIRS bin sbin usr.bin usr.sbin libexec 5 1.1 thorpej 6 1.1 thorpej # Programs for a minimal ramdisk image 7 1.1 thorpej 8 1.1 thorpej PROG bin/cat 9 1.1 thorpej PROG bin/chmod 10 1.1 thorpej PROG bin/cp 11 1.1 thorpej PROG bin/dd 12 1.1 thorpej PROG bin/df 13 1.1 thorpej PROG bin/ed 14 1.1 thorpej PROG bin/ln 15 1.1 thorpej PROG bin/ls 16 1.1 thorpej PROG bin/mkdir 17 1.1 thorpej PROG bin/mv 18 1.1 thorpej PROG bin/pax usr/bin/tar 19 1.1 thorpej PROG bin/pwd 20 1.1 thorpej PROG bin/rm 21 1.1 thorpej PROG bin/sh 22 1.1 thorpej PROG bin/stty 23 1.1 thorpej PROG bin/sync 24 1.1 thorpej 25 1.1 thorpej PROG sbin/chown bin/chgrp 26 1.1 thorpej PROG sbin/disklabel 27 1.1 thorpej PROG sbin/dkctl 28 1.1 thorpej PROG sbin/dmesg 29 1.1 thorpej PROG sbin/fsck 30 1.1 thorpej PROG sbin/fsck_ffs 31 1.1 thorpej PROG sbin/gpt 32 1.1 thorpej PROG sbin/ifconfig 33 1.1 thorpej PROG sbin/init 34 1.1 thorpej PROG sbin/mknod 35 1.1 thorpej PROG sbin/mount 36 1.1 thorpej PROG sbin/mount_cd9660 37 1.1 thorpej PROG sbin/mount_ffs 38 1.1 thorpej # PROG sbin/mount_kernfs 39 1.1 thorpej PROG sbin/mount_nfs 40 1.1 thorpej PROG sbin/mount_tmpfs 41 1.1 thorpej PROG sbin/newfs sbin/mount_mfs 42 1.1 thorpej PROG sbin/ping 43 1.1 thorpej PROG sbin/reboot sbin/halt 44 1.1 thorpej PROG sbin/route 45 1.1 thorpej PROG sbin/shutdown 46 1.1 thorpej PROG sbin/sysctl 47 1.1 thorpej PROG sbin/swapctl 48 1.1 thorpej PROG sbin/umount 49 1.1 thorpej 50 1.1 thorpej PROG usr/bin/ftp 51 1.1 thorpej PROG usr/bin/gzip usr/bin/gzcat usr/bin/gunzip 52 1.1 thorpej PROG usr/bin/less usr/bin/more 53 1.1 thorpej PROG usr/bin/sed 54 1.1 thorpej PROG usr/bin/tset 55 1.1 thorpej 56 1.1 thorpej PROG usr/sbin/chroot 57 1.1 thorpej 58 1.1 thorpej SPECIAL ed srcdir distrib/utils/x_ed 59 1.1 thorpej SPECIAL gzip srcdir distrib/utils/x_gzip 60 1.1 thorpej SPECIAL ping srcdir distrib/utils/x_ping 61 1.1 thorpej SPECIAL ifconfig srcdir distrib/utils/x_ifconfig 62 1.1 thorpej SPECIAL route srcdir distrib/utils/x_route 63 1.1 thorpej SPECIAL umount srcdir distrib/utils/x_umount 64 1.1 thorpej 65 1.1 thorpej LIBS libhack.o -ledit -lutil -lcurses -lterminfo -lcrypt -ll -lm -lz -lprop 66 1.1 thorpej 67 1.1 thorpej # init invokes the shell as -sh 68 1.1 thorpej ARGVLN sh -sh 69 1.1 thorpej 70 1.1 thorpej # various files that we need in /etc for the install 71 1.1 thorpej COPY ${NETBSDSRCDIR}/etc/group etc/group 72 1.1 thorpej COPY ${NETBSDSRCDIR}/etc/master.passwd etc/master.passwd 73 1.1 thorpej COPY ${NETBSDSRCDIR}/etc/netconfig etc/netconfig 74 1.1 thorpej COPY ${DISTRIBDIR}/common/protocols etc/protocols 75 1.1 thorpej COPY ${DISTRIBDIR}/common/services etc/services 76 1.1 thorpej 77 1.1 thorpej # and the boot script 78 1.1 thorpej COPY ${CURDIR}/../common/dot.profile .profile 79