diff options
author | Erik Andersen <andersen@codepoet.org> | 2000-01-25 18:13:53 +0000 |
---|---|---|
committer | Erik Andersen <andersen@codepoet.org> | 2000-01-25 18:13:53 +0000 |
commit | 3fe39dce5d1a0b0946878c66bbd7f694c5aa38ea (patch) | |
tree | 32b6129967a8b5c922b72843efc7fc6683287181 /Changelog | |
parent | bf3a838aaca4ab34d2739438fa44d0dbb04e9862 (diff) | |
download | busybox-w32-3fe39dce5d1a0b0946878c66bbd7f694c5aa38ea.tar.gz busybox-w32-3fe39dce5d1a0b0946878c66bbd7f694c5aa38ea.tar.bz2 busybox-w32-3fe39dce5d1a0b0946878c66bbd7f694c5aa38ea.zip |
Some busybox updates. See the changelog for details if you care.
-Erik
Diffstat (limited to 'Changelog')
-rw-r--r-- | Changelog | 17 |
1 files changed, 14 insertions, 3 deletions
@@ -15,12 +15,23 @@ | |||
15 | * Optional support contributed by Ben Collins <bcollins@debian.org> | 15 | * Optional support contributed by Ben Collins <bcollins@debian.org> |
16 | for the kernel init chroot patch by Werner Almesberger, which | 16 | for the kernel init chroot patch by Werner Almesberger, which |
17 | allows init to chroot to a new device, and umount the old one. | 17 | allows init to chroot to a new device, and umount the old one. |
18 | * Fixed bug that wouldn't let one chown a symlink -- it would | ||
19 | always dereference before. -beppu | ||
20 | * Fixed a bug where init could have reference already freed memory. | ||
21 | Found and fixed by Taketoshi Sano <kgh12351@nifty.ne.jp> | ||
22 | * Several contributions from Friedrich Vedder <fwv@myrtle.lahn.de> | ||
18 | * added (and documented) "-n" option for head - | 23 | * added (and documented) "-n" option for head - |
19 | contributed Friedrich Vedder <fwv@myrtle.lahn.de> | ||
20 | * Cleanup for a number of usage messages -- also | 24 | * Cleanup for a number of usage messages -- also |
21 | contributed Friedrich Vedder <fwv@myrtle.lahn.de> | 25 | contributed Friedrich Vedder <fwv@myrtle.lahn.de> |
22 | * Fixed bug that wouldn't let one chown a symlink -- it would | 26 | * Cosmetic fix to busybox.c (Don't print a comma at the |
23 | always dereference before. -beppu | 27 | end of line if there are no more application names). |
28 | * Fixed a stupid bug in "head" option handling ("head -n" would segfault). | ||
29 | * Moved commonly used functions "xmalloc()" and "exit()" | ||
30 | to utility.c (with proper #ifdef's). | ||
31 | * Created a tiny tail implementation, removing -c, -q, -v, and making | ||
32 | tail -f work only with a single file. This reduced tail | ||
33 | from 6k to 2.4k. The bigger/more featured tail can still be | ||
34 | had by disabling BB_FEATURE_SIMPLE_TAIL in dusybox.defs.h | ||
24 | 35 | ||
25 | 36 | ||
26 | -Erik Andersen | 37 | -Erik Andersen |