fix whitespace
[oweals/busybox.git] / TODO
diff --git a/TODO b/TODO
index dedb540ba9f72702a107fa1c40ce621f8bbe5a0d..b3d950790f2d5bd236703440f68452fa119e292a 100644 (file)
--- a/TODO
+++ b/TODO
@@ -4,6 +4,8 @@ Stuff that needs to be done.  All of this is fair game for 1.2.
 
 build system
   make -j is broken, -j1 is forced atm
+  Make sure that the flags get pinned in e.g. Rules.mak so when expanding them
+  later on you get the cached result without the need to re-evaluate them.
 ----
 find
   doesn't understand (), lots of susv3 stuff.
@@ -20,9 +22,6 @@ sh
   bbsh, but it's a low priority...
 ---
 diff
-  We should have a diff -u command.  We have patch, we should have diff
-  (we only need to support unified diffs though).
-
   Also, make sure we handle empty files properly:
     From the patch man page:
 
@@ -57,6 +56,9 @@ ar
 ---
 mdev
   Micro-udev.
+---
+crond
+  turn FEATURE_DEBUG_OPT into ENABLE_FEATURE_CROND_DEBUG_OPT
 
 Architectural issues:
 
@@ -165,6 +167,7 @@ Memory Allocation
   allocation on the stack or the heap.  Unfortunately, we're not using it much.
   We need to audit our memory allocations and turn a lot of malloc/free calls
   into RESERVE_CONFIG_BUFFER/RELEASE_CONFIG_BUFFER.
+  For a start, see e.g. make CFLAGS_EXTRA=-Wlarger-than-64
 
   And while we're at it, many of the CONFIG_FEATURE_CLEAN_UP #ifdefs will be
   optimized out by the compiler in the stack allocation case (since there's no
@@ -254,4 +257,6 @@ bzero() -> memset()
 ---
 sigblock(), siggetmask(), sigsetmask(), sigmask() -> sigprocmask et al
 ---
+vdprintf() -> similar sized functionality
+---