summaryrefslogtreecommitdiffstats
path: root/TODO
diff options
context:
space:
mode:
authorSascha Hauer <s.hauer@pengutronix.de>2009-12-15 09:11:09 +0100
committerSascha Hauer <s.hauer@pengutronix.de>2009-12-15 10:18:30 +0100
commita3ffa97f40dc81f2d6b07ee964f2340fe0c1ba97 (patch)
tree7a9076c1a20df00baeadca9a07d4c1f5cd0611e2 /TODO
parentcaa5cec7b1c93d660aa89d24eb160ab18e4eb628 (diff)
downloadbarebox-a3ffa97f40dc81f2d6b07ee964f2340fe0c1ba97.tar.gz
barebox-a3ffa97f40dc81f2d6b07ee964f2340fe0c1ba97.tar.xz
rename U-Boot-v2 project to barebox
This has been done with the following script: find -path ./.git -prune -o -type f -print0 | xargs -0 -r sed -i \ -e 's/u2boot/barebox/g' \ -e 's/U2Boot/barebox/g' \ -e 's/U-boot V2/barebox/g' \ -e 's/u-boot v2/barebox/g' \ -e 's/U-Boot V2/barebox/g' \ -e 's/U-Boot-v2/barebox/g' \ -e 's/U_BOOT/BAREBOX/g' \ -e 's/UBOOT/BAREBOX/g' \ -e 's/uboot/barebox/g' \ -e 's/u-boot/barebox/g' \ -e 's/u_boot/barebox/g' \ -e 's/U-Boot/barebox/g' \ -e 's/U-boot/barebox/g' \ -e 's/U-BOOT/barebox/g' find -path ./.git -prune -o \( -name "*u-boot*" -o -name "*uboot*" -o -name "*u_boot*" \) -print0 | \ xargs -0 -r rename 's/u[-_]?boot/barebox/' It needs some manual fixup following in the next patch Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'TODO')
-rw-r--r--TODO12
1 files changed, 6 insertions, 6 deletions
diff --git a/TODO b/TODO
index a289271084..27ffb9895c 100644
--- a/TODO
+++ b/TODO
@@ -16,10 +16,10 @@ TODO
Run-up and run-down should be reentrant, so if bootm is failing the system
can re-initialize devices. csc 21.03.2008 19:48:49)
[ ] Clean up make system. Currently I think there are many things from the
- Linux make system which are not needed for U-Boot.
+ Linux make system which are not needed for barebox.
(Please retain definitions and related for module loading and relocation, so
- that special U-Boot modules containing an ELF object can be linked to the
- running U-Boot. csc 21.03.2008 19:52:49)
+ that special barebox modules containing an ELF object can be linked to the
+ running barebox. csc 21.03.2008 19:52:49)
[ ] get/set for nonextisting parameters crashes
[ ] There is a xmalloc function which panics when out of memory. Use this
function where we don't want to check for oom. Same applies to
@@ -69,7 +69,7 @@ TODO
preprocessor.
The #ifdefs should be located in their related header files only.
[ ] Create an example board, which implements all functions stubs required
- to compile a full U-Boot build. Functions are just stubs containing a
+ to compile a full barebox build. Functions are just stubs containing a
panic() call - Real code must be filled in accordingly.
Can be copied as starting point for a new target board.
[ ] Add generic PCI bios code and a PCI bus driver model. The driver should
@@ -81,14 +81,14 @@ TODO
DONE
----
-[x] Rename vmlinux -> u-boot
+[x] Rename vmlinux -> barebox
[x] Implement current work directory
[x] ARCH=linux should catch ctrl-c
[x] Implement 'rm'
[x] the mount command currently does not accept a full path (i.e. /dev/nor0) but
only a device id string (nor0). This sucks.
[x] FS support is not optional eventhough the Kconfig system claims it.
-[x] U-Boot used to have support for different consoles. The old code was huge and
+[x] barebox used to have support for different consoles. The old code was huge and
ineffective, so I removed it. Reimplement it using the driver model.
[x] Mount without options should show mounted filesystems
[x] Add/fix help texts for commands