aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* telnetd: correctly output 0xff char. ~100 bytes.Denis Vlasenko2008-11-112-122/+168
| | | | | telnet: fix some atrocious names and style. no code changes
* libbb: disable a second md5 implementation which managed to creep in :)Denis Vlasenko2008-11-116-802/+781
| | | | | | | | | | | | | | | | | | | | function old new delta sha512_end 239 237 -2 sha256_end 162 160 -2 sha1_end 191 189 -2 md5_end 168 166 -2 __md5__magic 4 - -4 md5_crypt 627 621 -6 static.S 16 - -16 __md5_Init 42 - -42 static.P 64 - -64 __md5_Final 131 - -131 __md5_Update 153 - -153 static.C 268 12 -256 __md5_Transform 293 - -293 ------------------------------------------------------------------------------ (add/remove: 0/7 grow/shrink: 0/6 up/down: 0/-973) Total: -973 bytes
* webpage: announce 1.13.0 and 1.12.2Denis Vlasenko2008-11-101-3/+101
|
* libbb: add optionl support for SHA256/512 encrypted passwordsDenis Vlasenko2008-11-107-35/+322
| | | | | | | | | | | | | | | function old new delta sha_crypt - 2423 +2423 cryptpw_main 128 183 +55 to64 - 29 +29 pw_encrypt 974 1000 +26 str_rounds - 11 +11 login_main 1532 1541 +9 packed_usage 25215 25200 -15 __md5_to64 29 - -29 ------------------------------------------------------------------------------ (add/remove: 3/1 grow/shrink: 3/1 up/down: 2553/-44) Total: 2509 bytes
* sha256,sha512: new applets. +4.9kbDenis Vlasenko2008-11-106-52/+635
| | | | | | | we will require sha256/512 code for new $5$ and $6$ style password hashes anyway, they are showing up already in people's /etc/passwd...
* Typo fixesDenis Vlasenko2008-11-102-2/+2
|
* libbb: constify some data in sha1. gcc is clever enough to do it itself,Denis Vlasenko2008-11-101-22/+13
| | | | | thus no actual code changes. Also some pointless beautifuing crept in.
* build system: reorder less' options in config so thatDenis Vlasenko2008-11-101-16/+16
| | | | | they are properly indented
* Bump version to 1.14.0.svnDenis Vlasenko2008-11-091-2/+2
|
* Bump version to 1.13.0Denis Vlasenko2008-11-091-1/+1
|
* update "maximum nommu" configDenis Vlasenko2008-11-091-61/+77
|
* update random config testerDenis Vlasenko2008-11-091-2/+6
|
* randomconfig fixesDenis Vlasenko2008-11-092-2/+2
|
* telnetd: set SO_KEEPALIVE, users report it's useful. +20 bytes.Denis Vlasenko2008-11-091-0/+4
|
* *: a bit of code shrinkDenis Vlasenko2008-11-098-23/+24
| | | | | | | | | | | | | | function old new delta stop_handler 41 38 -3 sulogin_main 508 504 -4 got_cont 4 - -4 cont_handler 11 - -11 startservice 309 297 -12 processorstart 423 409 -14 tcpudpsvd_main 1861 1843 -18 ------------------------------------------------------------------------------ (add/remove: 0/2 grow/shrink: 0/5 up/down: 0/-66) Total: -66 bytes
* move documentation to docs/Denis Vlasenko2008-11-081-0/+0
|
* kbd_mode: s/ioctl/xioctl. also saves 12 bytesDenis Vlasenko2008-11-081-1/+1
|
* kbd_mode: support -C TTY optionDenis Vlasenko2008-11-084-19/+31
| | | | | | | function old new delta packed_usage 25334 25361 +27 kbd_mode_main 146 173 +27
* build system: remove '-Wl,' when we pass flags to ld.Denis Vlasenko2008-11-081-2/+6
|
* libbb: add a TODO to support new SHA-based encrypted passwordsDenis Vlasenko2008-11-071-12/+5
|
* login: fix /etc/nologin handling (should prohibit non-root LOGINS,Denis Vlasenko2008-11-071-36/+44
| | | | | | | | not running login by non-root). minor code shrink. function old new delta login_main 1669 1602 -67
* telnetd: handle emacs M-DEL and IAC-NOP (putty keepalive)Denis Vlasenko2008-11-071-30/+41
| | | | | | | | by Jim Cathey (jcathey AT ciena.com) function old new delta telnetd_main 1314 1364 +50
* defconfig: explain what we aim it to beDenis Vlasenko2008-11-071-65/+75
|
* login: fix /etc/nologin supportDenis Vlasenko2008-11-072-13/+25
| | | | | | | | | | | build system: fix config warnings ("Overlong line") function old new delta login_main 1735 1774 +39 __libc_tcdrain - 23 +23 ------------------------------------------------------------------------------ (add/remove: 1/0 grow/shrink: 1/0 up/down: 62/0) Total: 62 bytes
* add mailutils/*Denis Vlasenko2008-11-067-0/+1331
|
* total overhaul of mail applets. again. Vladimir as usual.Denis Vlasenko2008-11-067-626/+61
|
* correction in commentDenis Vlasenko2008-11-061-1/+1
|
* sv: make default service dir configurable (Vladimir wants it)Denis Vlasenko2008-11-062-1/+9
|
* runsvdir: alternative methon of supporting runsvdir-as-init. +66 bytes.Denis Vlasenko2008-11-066-33/+46
| | | | | *: s/int/pid_t where appropriate
* basename: fix error code. again. deja vu feeling...Denis Vlasenko2008-11-061-1/+2
|
* *: remove superfluous casts. no code changesDenis Vlasenko2008-11-063-4/+4
|
* build system: tidying up CONFIG_xxx names (suggested by Rob)Denis Vlasenko2008-11-0619-59/+57
|
* *: code shrink by adding a wrapper around very common tcsetattr(0, TCSANOW, ↵Denis Vlasenko2008-11-0513-27/+34
| | | | | | | | | | | | | | | | | | | | | | xx) op function old new delta tcsetattr_stdin_TCSANOW - 14 +14 set_sane_term 116 113 -3 top_main 1277 1273 -4 make_new_session 421 415 -6 rawmode 133 126 -7 reset_term 18 10 -8 die 43 35 -8 cookmode 62 54 -8 vlock_main 425 415 -10 read_line_input 3165 3155 -10 bb_askpass 357 347 -10 fsck_minix_main 3079 3065 -14 getty_main 2375 2332 -43 ------------------------------------------------------------------------------ (add/remove: 1/0 grow/shrink: 0/12 up/down: 14/-131) Total: -117 bytes
* add serial HOWTO docDenis Vlasenko2008-11-051-0/+424
|
* inetd: fix a case when we have zero servicesDenis Vlasenko2008-11-051-6/+13
|
* - commentary typo fix (tito)Bernhard Reutner-Fischer2008-11-051-1/+1
|
* - fix typo in print_user() (tito)Bernhard Reutner-Fischer2008-11-051-1/+1
|
* nslookup: tiny shrink (-5 bytes); add comment about res_initDenis Vlasenko2008-11-042-11/+9
| | | | | inet_common: cosmetics, no code changes
* less: fix pasting into search line ('/' cmd) -Denis Vlasenko2008-11-021-11/+17
| | | | | | it was mishandled because pasting "types" very fast and read_key eats many chars. +30 bytes.
* lineedit: fix bug 5824: Since version 23530 with lineedit.c,Denis Vlasenko2008-11-021-1/+2
| | | | | "fdisk" & "ed" can't work any more
* add comment, no code changesDenis Vlasenko2008-11-011-0/+1
|
* gunzip: restore mtime. approx +80 bytes of codeDenis Vlasenko2008-11-018-28/+69
| | | | | | rpm: make code more robust lsmod: small code shrink
* tftpd: show help if stdin is not a socketDenis Vlasenko2008-11-011-2/+9
|
* iplink: accept shorthands for "address" keyword here:Denis Vlasenko2008-11-012-8/+11
| | | | | | "ip link set address 00:11:22:33:44:55" ifupdown: use "addr" instead of "address"
* less: fix newly-introduced case of less spinning foreverDenis Vlasenko2008-10-311-6/+10
| | | | | on pty's closed etc
* runsvdir: if we have PID == 1, SIGHUP should make small pause,Denis Vlasenko2008-10-311-2/+3
| | | | | not 1 minute one
* modprobe: fix a segfault when modprobe is called with no arguments at allDenis Vlasenko2008-10-312-25/+29
| | | | | | function old new delta modprobe_main 559 535 -24
* kill[all[5]]: accept -s SIG too. kill_main: +29 bytesDenis Vlasenko2008-10-312-8/+15
| | | | | by Steve Bennett (steveb AT workware.net.au)
* setup_environment: cd $HOME regardless of clear_env value.Denis Vlasenko2008-10-301-7/+7
|
* tftpd: be less cryptic in help textDenis Vlasenko2008-10-301-0/+6
|