summaryrefslogtreecommitdiffstats
path: root/common/environment.c
Commit message (Collapse)AuthorAgeFilesLines
* fix error return value while loading environmentLuotao Fu2010-05-031-1/+5
| | | | | Signed-off-by: Luotao Fu <l.fu@pengutronix.de> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* rename U-Boot-v2 project to bareboxSascha Hauer2009-12-151-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | 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>
* common:environment: fix mode requirementNishanth Menon2008-12-091-1/+1
| | | | | | | | | | | | | | | | | Issue: Compiling on Ubuntu 8.10 Fails: inlined from 'envfs_save' at scripts/../common/environment.c:135: /usr/include/bits/fcntl2.h:51: error: call to '_open_missing_mod' declared with attribute error: open with O_CREAT in second argument needs 3 arguments Usage: open(filename, O_WRONLY | O_CREAT) Fix: When using open with O_CREAT, it requires mode to be defined. Signed-off-by: Nishanth Menon <nm@ti.com>
* Trivial comment fixSascha Hauer2008-04-041-1/+1
|
* [general] Fixed endian handling for envfsCarsten Schlote2008-02-191-30/+32
| | | | | | | | | | | Fixed the handling of data similiar as found in cramfs. This fixes the problem with an unreadable defaultenv on big-endian targets. The endian macors are now loaded from /asm/common.h by default. Signed-off-by: Carsten Schlote <c.schlote@konzeptpark.de>
* separating environment commands, part 2Juergen Beisert2007-11-121-0/+269
| | | | Signed-off-by: Juergen Beisert <j.beisert@pengutronix.de>
* svn_rev_643Sascha Hauer2007-07-051-236/+0
| | | | structure cleanup
* svn_rev_499Sascha Hauer2007-07-051-2/+2
| | | | fix compiler warning
* svn_rev_462Sascha Hauer2007-07-051-3/+23
| | | | | | | - Add help texts for many commands. - Let the linker sort the command table. - Add support for multiple argmuments in several commands (mkdir, rmdir, rm, cat)
* svn_rev_427Sascha Hauer2007-07-051-58/+5
|
* svn_rev_419Sascha Hauer2007-07-051-38/+98
| | | | add ifdef for host compilation
* svn_rev_369Sascha Hauer2007-07-051-1/+0
| | | | include asm-generic in errno.h instead of all other files
* svn_rev_335Sascha Hauer2007-07-051-0/+210
| | | | add envload/envsave functions
* svn_rev_131Sascha Hauer2007-07-051-211/+0
| | | | remove old env routines
* svn_rev_092Sascha Hauer2007-07-051-3/+0
| | | | generic/remove_autoload.diff
* Preliminary support for the iDMR board (ColdFire).Bartlomiej Sieka2006-12-201-0/+1
|
* Add NAND environment support for PPC440EPx Sequoia NAND boot configStefan Roese2006-09-121-1/+2
| | | | Patch by Stefan Roese, 12 Sep 2006
* Add M5271EVB board support.Marian Balakowicz2006-05-091-1/+2
|
* Cleanup build problems (on Fedora Core x86_64 build host)Wolfgang Denk2005-08-031-0/+5
|
* * Code cleanup, mostly for GCC-3.3.xwdenk2004-12-311-0/+3
| | | | | | | | | | | | * Cleanup confusing use of CONFIG_ETH*ADDR - ust his only to pre-define a MAC address; use CONFIG_HAS_ETH* to enable support for additional ethernet addresses. * Cleanup drivers/i82365.c - avoid duplication of code * Fix bogus "cannot span across banks" flash error message * Add support for CompactFlash for the CPC45 Board.
* * Configure PPChameleon board to use redundand environment in flashwdenk2004-04-181-1/+2
| | | | | | * Configure PPChameleon board to use JFFS2 NAND support. * Added support for JFFS2 filesystem (read-only) on top of NAND flash
* * Patch by Martin Winistoerfer, 23 Mar 2003wdenk2003-03-311-1/+2
| | | | | | | | | - Add port to MPC555/556 microcontrollers - Add support for cmi customer board with Intel 28F128J3A, 28F320J3A or 28F640J3A flash. * Patch by Rick Bronson, 28 Mar 2003: - fix common/cmd_nand.c
* Add "pcidelay" environment variable (in ms, enabled via CONFIG_PCI_BOOTDELAY).stroese2003-02-141-0/+3
|
* * Restrict baudrate settings on LWMON to higher speedswdenk2003-01-111-1/+1
| | | | | | | | | | | | when watchdog is on * Update baudrate in bd_info when it gets changed * Add watchdog trigger points while waiting for serial port (so far only 8xx -- needed on LWMON with 100ms watchdog) * Improve command line tool to access the U-Boot's environment (figuration of the utility, using a config file)
* Initial revisionwdenk2002-11-031-0/+198