summaryrefslogtreecommitdiffstats
path: root/common/Makefile
Commit message (Collapse)AuthorAgeFilesLines
...
* Revert "image: factorise string helper"Sascha Hauer2010-10-071-1/+0
| | | | This reverts commit 7bd7d59e60f3f23862ebc09c9f3527ee24b2960f.
* Revert "image: factorise image printing contents"Sascha Hauer2010-10-071-1/+1
| | | | This reverts commit d424ce77f5e9295584252452dbd78eea562c9af0.
* image: factorise image printing contentsJean-Christophe PLAGNIOL-VILLARD2010-09-241-1/+1
| | | | | | | before we duplicate it between command/bootm.c and scripts/mkimage.c Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* image: factorise string helperJean-Christophe PLAGNIOL-VILLARD2010-09-231-0/+1
| | | | | | | before we duplicate it between common/bootm.c and scripts/mkimage.c Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* add password frameworkJean-Christophe PLAGNIOL-VILLARD2010-09-201-0/+1
| | | | Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
* add digest frameworkJean-Christophe PLAGNIOL-VILLARD2010-09-201-0/+1
| | | | Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
* move barebox_default_env.h to include/generated/Jean-Christophe PLAGNIOL-VILLARD2010-09-171-3/+3
| | | | Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
* Add Menu FrameworkJean-Christophe PLAGNIOL-VILLARD2010-08-301-0/+1
| | | | | | | | | | | | | | | | | | | | | | | Introduce a menu framework that allow us to create list menu to simplify barebox and make it more user-frendly This kind of menu is very usefull when you do not have a keyboard or a serial console attached to your board to allow you to interract with barebox For the develloper part, The framework introduce two API 1) C that allow you to create menu, submenu, entry and complex menu action 2) Command that allow you as the C API to create menu, submenu, entry and complex menu action but this time the actions will be store in a function and then be evaluated and excecuted at runtime. Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* barebox_default_env: fix out of tree buildJean-Christophe PLAGNIOL-VILLARD2010-07-221-3/+5
| | | | | Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* Allow to merge default environment from more than one directorySascha Hauer2010-06-221-2/+3
| | | | Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* Remove/adjust erroneous references to CONFIG_MODULE.Robert P. J. Day2009-12-211-1/+0
| | | | | | | | The correct config variable is CONFIG_MODULES, so tweak any references to the incorrect CONFIG_MODULE. Signed-off-by: Robert P. J. Day <rpjday@crashcourse.ca> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* rename U-Boot-v2 project to bareboxSascha Hauer2009-12-151-5/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | 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>
* uboot_default_env: fix out of tree buildJean-Christophe PLAGNIOL-VILLARD2009-10-201-2/+2
| | | | Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
* introduce cdevSascha Hauer2009-07-211-1/+0
| | | | Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* console: add a simple console for saving spaceSascha Hauer2008-08-011-1/+2
| | | | | | | Add a simple console layer which is not able to handle multiple consoles for those who don't need it. Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* 007-partitionsNishanth Menon2008-06-051-1/+1
| | | | | | | | | [Patch 07/17] U-Boot-V2:Common Make partitions configurable Not all configurations of Uboot require partitions. This patch modifies partition compilation as configurable param Signed-off-by: Nishanth Menon<x0nishan@ti.com>
* implement TAB completionSascha Hauer2008-03-011-0/+1
|
* Revert "separating memory commands"Marc Kleine-Budde2007-11-271-1/+0
| | | | | | | | | | | | This reverts commit d59c600c656d08410ea862c582fbd77432c3ca47. Conflicts: commands/Makefile common/Kconfig common/Makefile Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
* [makesystem] fix default environment handlingMarc Kleine-Budde2007-11-261-2/+2
| | | | | | | This patch fixes the environemnt generate broken in 7b498d9838e68eb0b58450ec54ed968e7848c8e0 Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
* [makesystem] reworked default environment handlingMarc Kleine-Budde2007-11-191-9/+8
| | | | | | | | | | | This patch improves the default environment handling, now the makesystem bails out if the default environment path is empty or points to an invalid directory (with activated default environment). It also fixes this error: find: invalid predicate `' Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
* separating environment commands, part 2Juergen Beisert2007-11-121-0/+1
| | | | Signed-off-by: Juergen Beisert <j.beisert@pengutronix.de>
* separating memory commandsJuergen Beisert2007-11-121-0/+1
| | | | Signed-off-by: Juergen Beisert <j.beisert@pengutronix.de>
* add module.o and module.lds to MakefileSascha Hauer2007-10-111-0/+2
|
* add dependency to include/uboot_default_env.h for startup.cSascha Hauer2007-10-041-0/+3
|
* Add module handling (mostly copied from Linux kernel and stripped downSascha Hauer2007-09-281-0/+2
| | | | for U-Boot)
* add directory handling for environmentSascha Hauer2007-09-251-1/+1
|
* - teach hush to honour PATH variableSascha Hauer2007-09-241-3/+2
| | | | - remove common/main.c. This is now handled in the different shells.
* add default environmentSascha Hauer2007-09-131-0/+9
|
* Remove all unused files from common. They can be added later fromSascha Hauer2007-09-051-60/+0
| | | | U-Boot 1.x when needed.
* compile common/memsize.cSascha Hauer2007-07-121-1/+1
|
* svn_rev_682Sascha Hauer2007-07-051-1/+0
| | | | remove double entry
* svn_rev_653Sascha Hauer2007-07-051-1/+0
| | | | restructure tree, add reginfo command
* svn_rev_650Sascha Hauer2007-07-051-1/+0
|
* svn_rev_643Sascha Hauer2007-07-051-25/+1
| | | | structure cleanup
* svn_rev_582Sascha Hauer2007-07-051-1/+0
| | | | remove miiphyutil.o
* svn_rev_568Sascha Hauer2007-07-051-1/+0
| | | | remove cmd_console.c. It's obsoleted
* svn_rev_538Sascha Hauer2007-07-051-1/+1
| | | | several powerpc fixes
* svn_rev_511Sascha Hauer2007-07-051-0/+1
|
* svn_rev_502Sascha Hauer2007-07-051-1/+1
| | | | complete multiple console support
* svn_rev_500Sascha Hauer2007-07-051-1/+1
|
* svn_rev_435Sascha Hauer2007-07-051-1/+1
| | | | rename
* svn_rev_384Sascha Hauer2007-07-051-0/+1
|
* svn_rev_350Sascha Hauer2007-07-051-4/+7
|
* svn_rev_307Sascha Hauer2007-07-051-2/+5
| | | | | | | some main.c cleanup: - move the parser used when hush is disabled to parser.c - move readline related functions to readline.c (with cmdline editing) and readline_simple.c (no cmdline editing)
* svn_rev_303Sascha Hauer2007-07-051-42/+40
| | | | add CMD_EDIT and DYNAMIC_CRC_TABLE
* svn_rev_302Sascha Hauer2007-07-051-0/+1
|
* svn_rev_297Sascha Hauer2007-07-051-0/+1
|
* svn_rev_294Sascha Hauer2007-07-051-1/+2
|
* svn_rev_268Sascha Hauer2007-07-051-0/+3
| | | | WIP
* svn_rev_207Sascha Hauer2007-07-051-0/+1
| | | | move several config options to kconfig