Home | History | Annotate | Line # | Download | only in utils
README revision 1.1
      1 From: "Gordon W. Ross" <gwr>
      2 Date: Tue, 3 Oct 95 16:37:39 EDT
      3 Subject: New ramdisk, tiny shell, etc.
      4 [ edited since the original mail ]
      5 
      6 As part of my efforts to build a RAM-disk root kernel for the
      7 sun3 port, I've developed some things that others may want:
      8 (Also, please see my questions at the end.)
      9 
     10 New RAM-disk: [ see sys/dev/ramdisk.c ]
     11 
     12 New "small/tiny" tools, to replace some of the larger
     13 programs that one usually wants on a ramdisk root:
     14 
     15 ssh: (small shell)
     16   * Consumes only about 8K of memory on an m68k!
     17     (saves about 100K in the ramdisk...)
     18   * Can run programs, possibly with I/O redirection
     19   * Just enough to let you run the programs needed
     20     while partitioning and copying miniroot to swap.
     21 
     22 tls: (tiny ls)
     23   * Consumes only about 4K of memory on an m68k!
     24     (saves about 10K in the ramdisk...)
     25   * Long format only, nothing fancy.
     26 
     27 Also, in the new "src/distrib/utils" area, I've made build
     28 directories for some programs that build smaller versions,
     29 usually by adding special CFLAGS
     30 
     31 init_s:  (built with -DLETS_GET_SMALL)
     32   * Forces single-user mode
     33   * Eliminates unnecessary code
     34 
     35 libhack:   small implementation of some libc functions
     36   * Needs only /etc/passwd (not pwd.db, spwd.db)
     37   * Reduces size of an m68k crunched binary about 64K
     38 
     39 x_dd:  built with -DNO_CONV (no conv=* options)
     40 
     41 x_ifconfig:  supports inet only
     42 
     43 The x_ prefix on the above is to make the names unique so
     44 crunchgen will not confuse them with the real sources.
     45