aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2000-06-05 05:33:00 +0000
committerEric Andersen <andersen@codepoet.org>2000-06-05 05:33:00 +0000
commit926e0e34656dde7de79fb32a2181f26f92279c0e (patch)
treed7e4c67fc57047c29490e3922b80c79f835eb30c
parentafeb6834597dba7c2546f36f5de61f218fbd5b4b (diff)
downloadbusybox-w32-926e0e34656dde7de79fb32a2181f26f92279c0e.tar.gz
busybox-w32-926e0e34656dde7de79fb32a2181f26f92279c0e.tar.bz2
busybox-w32-926e0e34656dde7de79fb32a2181f26f92279c0e.zip
More TODO items. Fix a dependancy bug on busybox.def.h
-Erik
-rw-r--r--TODO9
-rw-r--r--busybox.def.h2
2 files changed, 9 insertions, 2 deletions
diff --git a/TODO b/TODO
index 9634cefd1..4778436d4 100644
--- a/TODO
+++ b/TODO
@@ -16,7 +16,7 @@ around to it some time. If you have any good ideas, please let me know.
16 16
17----------- 17-----------
18 18
19Bugs that need fixing: 19Bugs that need fixing before the 0.44 release goes out the door:
20 20
21 - mkfs.minix rev 1.7 completely broke the parser. Fix it. 21 - mkfs.minix rev 1.7 completely broke the parser. Fix it.
22 - 'grep foo$ file' doesn't work 22 - 'grep foo$ file' doesn't work
@@ -43,6 +43,9 @@ Bugs that need fixing:
43 - implement 'ls -R'. 43 - implement 'ls -R'.
44 - "cp -a sourcedir/*" (note: no dest) - produces an odd error message about 44 - "cp -a sourcedir/*" (note: no dest) - produces an odd error message about
45 the last file in the dir, rather than saying "missing destination file". 45 the last file in the dir, rather than saying "missing destination file".
46 - "math" should also take input from stdin
47 - "more" doesn't accept " " to scroll by one page when BB_FEATURE_USE_TERMIOS
48 is not on.
46 49
47 50
48----------- 51-----------
@@ -137,6 +140,10 @@ I'll add this to the TODO list,
137 140
138------------------------------------------------------------------ 141------------------------------------------------------------------
139 142
143An interesting email listing some apps that use /proc. BusyBox
144tries to avoid /proc as mush as is possible, so this stuff is
145interesting (to me at least):
146
140 147
141Date: Fri, 25 Feb 2000 08:23:12 +0000 (GMT) 148Date: Fri, 25 Feb 2000 08:23:12 +0000 (GMT)
142From: Riley Williams <rhw@MemAlpha.CX> 149From: Riley Williams <rhw@MemAlpha.CX>
diff --git a/busybox.def.h b/busybox.def.h
index 01d7d87cc..3b7c8bf26 100644
--- a/busybox.def.h
+++ b/busybox.def.h
@@ -263,7 +263,7 @@
263#define BB_NFSMOUNT 263#define BB_NFSMOUNT
264#endif 264#endif
265// 265//
266#if defined BB_FEATURE_STANDALONE_SHELL 266#if defined BB_FEATURE_SH_COMMAND_EDITING
267#ifndef BB_FEATURE_USE_TERMIOS 267#ifndef BB_FEATURE_USE_TERMIOS
268#define BB_FEATURE_USE_TERMIOS 268#define BB_FEATURE_USE_TERMIOS
269#endif 269#endif