Name |
Date |
Size |
#Lines |
LOC |
||
---|---|---|---|---|---|---|
.. | - | - | ||||
edlabel/ | H | - | - | 547 | 421 | |
embedded/ | H | - | - | 2,872 | 2,135 | |
libhack/ | H | - | - | 2,415 | 1,580 | |
more/ | H | - | - | 6,205 | 3,702 | |
script-installer/ | H | - | - | 349 | 314 | |
sparkcrc/ | H | - | - | 113 | 67 | |
ssh/ | H | - | - | 597 | 417 | |
tls/ | H | - | - | 161 | 101 | |
x_disklabel/ | H | - | - | 41 | 23 | |
x_ed/ | H | - | - | 15 | 7 | |
x_fsck_ffs/ | H | - | - | 32 | 18 | |
x_gzip/ | H | - | - | 32 | 19 | |
x_ifconfig/ | H | - | - | 27 | 13 | |
x_netstat/ | H | - | - | 19 | 11 | |
x_newfs/ | H | - | - | 33 | 19 | |
x_ping/ | H | - | - | 18 | 9 | |
x_ping6/ | H | - | - | 20 | 9 | |
x_route/ | H | - | - | 23 | 13 | |
x_umount/ | H | - | - | 17 | 7 | |
zcat/ | H | - | - | 221 | 139 | |
Makefile | H A D | 31-Jan-2016 | 393 | 25 | 14 | |
Makefile.inc | H A D | 09-Jun-2004 | 228 | 9 | 4 | |
README | H A D | 25-Mar-2002 | 1.5 KiB | 46 | 33 |
README
1# $NetBSD: README,v 1.4 2002/03/25 07:39:50 lukem Exp $ 2 3From: "Gordon W. Ross" <gwr> 4Date: Tue, 3 Oct 95 16:37:39 EDT 5Subject: New ramdisk, tiny shell, etc. 6[ edited since the original mail ] 7 8As part of my efforts to build a RAM-disk root kernel for the 9sun3 port, I've developed some things that others may want: 10 11New RAM-disk: [ see sys/dev/ramdisk.c ] 12 13New "small/tiny" tools, to replace some of the larger 14programs that one usually wants on a ramdisk root: 15 16ssh: (small shell) 17 * Consumes only about 8K of memory on an m68k! 18 (saves about 100K in the ramdisk...) 19 * Can run programs, possibly with I/O redirection 20 * Just enough to let you run the programs needed 21 while partitioning and copying miniroot to swap. 22 23tls: (tiny ls) 24 * Consumes only about 4K of memory on an m68k! 25 (saves about 10K in the ramdisk...) 26 * Long format only, nothing fancy. 27 28Also, in the new "src/distrib/utils" area, I've made build 29directories for some programs that build smaller versions, 30usually by adding special CFLAGS 31 32init_s: (built with -DLETS_GET_SMALL) 33 * Forces single-user mode 34 * Eliminates unnecessary code 35 36libhack: small implementation of some libc functions 37 * Needs only /etc/master.passwd (not pwd.db, spwd.db) 38 * Reduces size of an m68k crunched binary by about 64K 39 40x_dd: built with -DNO_CONV (no conv=* options) 41 42x_ifconfig: supports inet only 43 44The x_ prefix on the above is to make the names unique so 45crunchgen will not confuse them with the real sources. 46