summaryrefslogtreecommitdiff
path: root/Changelog
diff options
context:
space:
mode:
authorErik Andersen <andersen@codepoet.org>2000-01-15 22:28:50 +0000
committerErik Andersen <andersen@codepoet.org>2000-01-15 22:28:50 +0000
commit3163821967821518cfa4c4315f775ec5301bb023 (patch)
treefe0c764cb41cc3ea86c3dcd270e48fa6a1abebcd /Changelog
parentb7cc49d992ed9a5a59261096012e0b4a811bb7f4 (diff)
downloadbusybox-w32-3163821967821518cfa4c4315f775ec5301bb023.tar.gz
busybox-w32-3163821967821518cfa4c4315f775ec5301bb023.tar.bz2
busybox-w32-3163821967821518cfa4c4315f775ec5301bb023.zip
Sync up busybox with the latest and greatest. This is not stuff for
the Embedix release. -Erik
Diffstat (limited to 'Changelog')
-rw-r--r--Changelog15
1 files changed, 14 insertions, 1 deletions
diff --git a/Changelog b/Changelog
index 6c68d844d..878b9c698 100644
--- a/Changelog
+++ b/Changelog
@@ -1,5 +1,6 @@
10.41 10.41
2 * New App: wc -- contributed by Edward Betts <edward@debian.org> 2 * New Apps: wc, hostid, logname, tty, whoami, yes -- all contributed
3 by Edward Betts <edward@debian.org>
3 * Fixed a bug in both cp and mv preventing 'cp foo/README bar' 4 * Fixed a bug in both cp and mv preventing 'cp foo/README bar'
4 type commands (file in a directory to another directory) 5 type commands (file in a directory to another directory)
5 from working. 6 from working.
@@ -13,6 +14,18 @@
13 * Added -o loop option for mount, and support in umount for loop 14 * Added -o loop option for mount, and support in umount for loop
14 devices. Support is toggled by MOUNT_LOOP feature -- Ben Collins 15 devices. Support is toggled by MOUNT_LOOP feature -- Ben Collins
15 <bcollins@debian.org> 16 <bcollins@debian.org>
17 * Several fixes from Marco Pantaleoni <panta@prosa.it>
18 * compile in fullWrite() not only if BB_TAR is defined, but also
19 if BB_CP or BB_MV are (fullWrite() is referenced by copyFile())
20 * add some compiler optimizations to further reduce executable size
21 (as a side note, on my machines the largest code is generated by
22 gcc 2.95.2 with -Os ! The smallest by plain gcc 2.7.2.3 with -O2
23 -m386 ...)
24 * Compile no longer fails if busybox.def.h defines BB_FEATURE_LINUXRC
25 but not BB_INIT. (init_main used to be referenced, but not compiled)
26 * Fixed a bug in setting TERM for serial console support. TERM now
27 defaults to "ansi" for serial consoles.
28 * Fixed a bug in handling the CONSOLE env. variable for serial consoles.
16 29
17 -Erik Andersen 30 -Erik Andersen
18 31