Home | History | Annotate | Line # | Download | only in examples
fixit.conf revision 1.1
      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 
      6 srcdirs /usr/src/bin /usr/src/sbin /usr/src/usr.bin /usr/src/usr.sbin
      7 srcdirs /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 
     15 progs cat chmod cp date dd df echo ed expr hostname kill ln ls mkdir
     16 progs mt mv pwd rcp rm rmdir sh sleep stty sync test
     17 
     18 ln test [
     19 ln sh -sh		# init invokes the shell this way
     20 ln sh -
     21 
     22 # /sbin stuff
     23 
     24 progs badsect chown clri disklabel dump dmesg fdisk fsck halt ifconfig init
     25 progs mknod mount newfs ping reboot restore swapon umount
     26 ln dump rdump
     27 ln restore rrestore
     28 
     29 # /usr/bin stuff
     30 
     31 progs ftp rsh sed telnet rlogin vi
     32 
     33 # gnu stuff
     34 
     35 progs cpio gzip
     36 ln gzip gunzip
     37 ln gzip gzcat
     38 
     39 # finally, we specify the libraries to link in with our binary
     40 
     41 libs -ledit		# NetBSDism
     42 libs -lcrypt		# but don't include this when exporting	:-(
     43 libs -lcurses -ltermcap
     44 libs -lkvm -ltelnet -lutil -ll
     45