1# fixit.conf - put in anything we think we might want on a fixit floppy 2 3# first, we list the source dirs that our programs reside in. These are 4# searched in order listed to find the dir containing each program. 5 6srcdirs /usr/src/bin /usr/src/sbin /usr/src/usr.bin /usr/src/usr.sbin 7srcdirs /usr/src/gnu/usr.bin 8 9# second, we list all the programs we want to include in our crunched binary. 10# The order doesn't matter. Any program that needs hard links to it gets an 11# `ln' directive. 12 13# /bin stuff 14 15progs cat chmod cp date dd df echo ed expr hostname kill ln ls mkdir 16progs mt mv pwd rcp rm rmdir sh sleep stty sync test 17 18ln test [ 19ln sh -sh # init invokes the shell this way 20 21# /sbin stuff 22 23progs badsect chown clri disklabel dump dmesg fdisk fsck halt ifconfig init 24progs mknod mount newfs ping reboot restore swapon umount 25ln dump rdump 26ln restore rrestore 27 28# /usr/bin stuff 29 30progs ftp rsh sed telnet rlogin vi 31 32# gnu stuff 33 34progs cpio gzip 35ln gzip gunzip 36ln gzip gzcat 37 38# finally, we specify the libraries to link in with our binary 39 40libs -lcrypt -ltelnet -lutil -ll 41libs -lcurses -ltermcap 42