summaryrefslogtreecommitdiffstats
path: root/common
Commit message (Collapse)AuthorAgeFilesLines
* [PATCH] NAND: Partition name support added to NAND subsystemStefan Roese2006-10-282-153/+207
| | | | | | | | chpart, nboot and NAND subsystem related commands now accept also partition name to specify offset. Signed-off-by: Ladislav Michl <ladis@linux-mips.org> Signed-off-by: Stefan Roese <sr@denx.de>
* Check for illegal character '=' in environment variable names.Wolfgang Denk2006-10-281-0/+5
| | | | | | | | Make sure the string passed as variable name does not contain a '=' character. This not only prevents the common error or typing "setenv foo=bar" instead of "setenv foo bar", but (more importantly) also closes a backdoor which allowed to delete write-protected environment variables, for example by using "setenv ethaddr=".
* Minor code cleanup.Wolfgang Denk2006-10-281-94/+80
|
* Code cleanup.Wolfgang Denk2006-10-262-7/+6
|
* Merge with git://git.kernel.org/pub/scm/boot/u-boot/galak/u-boot.git#device_treeWolfgang Denk2006-10-261-6/+55
|\
| * Added support for Multi-Image files that contain a device treeKumar Gala2006-10-241-6/+55
| | | | | | | | | | | | | | | | | | | | | | | | | | If a Multi-Image file contains a third image we try to use it as a device tree. The device tree image is assumed to be uncompressed in the image file. We automatically allocate space for the device tree in memory and provide an 8k pad to allow more than a reasonable amount of growth. Additionally, a device tree that was contained in flash will now automatically get copied to system memory as part of boot. Previously an error was reported if one tried to boot a device tree that was in flash. Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
* | Fix Makefile for "CHANGELOG" targetWolfgang Denk2006-10-251-2/+129
|\ \ | |/ |/| | | Merge with /home/sr/git/u-boot/4xx-idcr
| * Add monitor functions for indirect access to PPC440 DCR'sStefan Roese2006-10-171-2/+129
| | | | | | | | Patch by Leonid Baryudin, 12 Oct 2006
* | Merge with /home/wd/git/u-boot/masterWolfgang Denk2006-10-245-8/+81
|\ \ | | | | | | | | | | | | (Conflicts between Jon Loeliger's and Matthew McClintock's tree were resolved by in favour of Jon's version.)
| * \ Merge with http://www.jdl.com/software/u-boot-86xx.gitWolfgang Denk2006-10-206-258/+271
| |\ \
| | * | * Fix a bunch of compiler warnings for gcc 4.0Jon Loeliger2006-10-191-5/+5
| | | | | | | | | | | | | | | | Signed-off-by: Matthew McClintock <msm@freescale.com>
| | * | Merge branch 'master' of http://www.denx.de/git/u-bootJon Loeliger2006-10-121-2/+1
| | |\ \ | | | |/
| | * | Fix possible uninitialized variable compiler warning.Grant Likely2006-10-121-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | When CONFIG_OF_FLAG_TREE is set, the compiler complains that 'len' in do_bootm_linux() may be uninitialized. There is no possibility in the current code that len will get used uninitialized, but this fix follows the existing convention of setting both len and data to zero at the same time. Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
| | * | Merge branch 'master' of http://www.denx.de/git/u-bootJon Loeliger2006-10-111-25/+201
| | |\ \
| | * \ \ Merge branch 'master' of http://www.denx.de/git/u-bootJon Loeliger2006-10-104-4/+9
| | |\ \ \
| | * \ \ \ Merge branch 'master' of http://www.denx.de/git/u-bootJon Loeliger2006-09-1910-467/+698
| | |\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: board/stxxtc/Makefile
| | * \ \ \ \ Merge branch 'mpc85xx'Jon Loeliger2006-08-291-1/+1
| | |\ \ \ \ \
| | | * | | | | Fixed an OF-tree off-by-one bug when adding a new property name.Zhang Wei2006-08-291-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This bug will cause the kernel booting to pause a long time. Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
| | * | | | | | Merge branch 'mpc86xx'Jon Loeliger2006-08-231-1/+6
| | |\ \ \ \ \ \
| | | * | | | | | Add AHCI support to u-bootJin Zhengxiong2006-08-231-1/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add AHCI support in u-boot, enable the sata disk controllers which following the AHCI protocol. Signed-off-by:Jason Jin<jason.jin@freescale.com>
| | | * | | | | | Unlock cache before kernel starts up for MPC86xxHaiying Wang2006-08-171-2/+2
| | | | | | | | |
| | * | | | | | | Merge branch 'master' of http://www.denx.de/git/u-bootJon Loeliger2006-08-222-6/+3
| | |\ \ \ \ \ \ \
| | * | | | | | | | Fix disable_of bootingMatthew McClintock2006-08-221-1/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Matthew McClintock <msm@freescale.com>
| | * | | | | | | | Support for FDT in uImage format, error when using FDT from flashMatthew McClintock2006-08-221-5/+65
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Matthew McClintock <msm@freescale.com>
| | * | | | | | | | Unlock cache before kernel starts up for MPC86xxHaiying Wang2006-08-171-2/+2
| | | | | | | | | |
| | * | | | | | | | Merge branch 'mpc85xx'Jon Loeliger2006-08-092-247/+126
| | |\ \ \ \ \ \ \ \ | | | | |_|/ / / / / | | | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: include/ft_build.h include/pci.h Resolved, though.
| | | * | | | | | | * Patch to modify ft_build.c to update flat device trees in place Patch by ↵Matthew McClintock2006-08-092-238/+105
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Matthew McClintock 26-June-2006
| | | * | | | | | | * Modify bootm command to support booting with flat device trees Patch by ↵Matthew McClintock2006-08-091-14/+26
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Matthew McClintock 26-June-2006
| | * | | | | | | | Merge branch 'wd'Jon Loeliger2006-08-0913-3300/+650
| | |\ \ \ \ \ \ \ \
| | * \ \ \ \ \ \ \ \ Merge branch 'mpc86xx'Jon Loeliger2006-07-133-2/+67
| | |\ \ \ \ \ \ \ \ \ | | | | |_|_|/ / / / / | | | |/| | | | | | |
| | | * | | | | | | | Add support for reading and writing mac addresses to or from ID EEPROM.Haiying Wang2006-07-132-1/+67
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Added code for reading and writing Mac addresses to/from ID EEPROM(0x57). With attached patch, we can use command "mac/mac read/mac save/" to read and write EEPROM under u-boot prompt. U-boot will calculate the checksum of EEPROM while bootup, if it is right, then u-boot will check whether the mac address of eTSEC0/1/2/3 is availalbe (non-zero). If there is mac address availabe in EEPROM, u-boot will use it, otherewise, u-boot will use the mac address defined in MPC8641HPCN.h. This matches the requirement to set unique mac address for each TSEC port. Signed-off-by: Haiying Wang <haiying.wang@freescale.com> Signed-off-by: York Sun <yorksun@freescale.com>
| | | * | | | | | | | Fixed initrd issue by define big RAMJin Zhengxiong2006-07-131-1/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by:Jason Jin <Jason.jin@freescale.com>
| | * | | | | | | | | Merge branch 'mpc86xx'Jon Loeliger2006-07-071-0/+1
| | |\ \ \ \ \ \ \ \ \ | | | |/ / / / / / / /
| | | * | | | | | | | We made a u-boot patch to fix the hang up issueJason Jin2006-07-071-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | when booting filesystem from ramdisk. Signed-off-by:Jason Jin <Jason.jin@freescale.com>
| | * | | | | | | | | Merge branch 'mpc86xx'Jon Loeliger2006-06-071-1/+1
| | |\ \ \ \ \ \ \ \ \ | | | |/ / / / / / / /
| | | * | | | | | | | Allow args on reset command.Haiying Wang2006-05-261-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Jon Loeliger <jdl@jdl.com>
| | * | | | | | | | | Merge branch 'master' of http://www.denx.de/git/u-bootJon Loeliger2006-06-073-8/+192
| | |\ \ \ \ \ \ \ \ \
| | * \ \ \ \ \ \ \ \ \ Merge branch 'mpc86xx'Jon Loeliger2006-05-101-2/+2
| | |\ \ \ \ \ \ \ \ \ \ | | | | |/ / / / / / / / | | | |/| | | | | | | |
| | | * | | | | | | | | Remove unneeded INIT_RAM_LOCK cache twiddling.Haiying Wang2006-05-101-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Correctly tracks r29 as global data pointer now. Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
| | * | | | | | | | | | Merge branch 'mpc86xx'Jon Loeliger2006-05-091-5/+5
| | |\ \ \ \ \ \ \ \ \ \ | | | |/ / / / / / / / /
| | | * | | | | | | | | Initial support for MPC8641 HPCN board.Jon Loeliger2006-04-261-5/+5
| | | | | | | | | | | |
* | | | | | | | | | | | Merge with /home/wd/git/u-boot/masterWolfgang Denk2006-10-204-8/+19
|\ \ \ \ \ \ \ \ \ \ \ \ | |/ / / / / / / / / / /
| * | | | | | | | | | | Cleanup compile warnings. Prepare for release 1.1.5Wolfgang Denk2006-10-201-3/+3
| | | | | | | | | | | |
| * | | | | | | | | | | MCC200: Fix uninitialized variable problem in LCD driverWolfgang Denk2006-10-201-2/+5
| | | | | | | | | | | |
| * | | | | | | | | | | Add board/cpu specific NAND chip select function to 440 NDFCStefan Roese2006-10-201-0/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Based on idea and implementation from Jeff Mann Patch by Stefan Roese, 20 Oct 2006
| * | | | | | | | | | | Coding style cleanupWolfgang Denk2006-10-201-2/+2
| | |_|_|_|_|_|_|_|_|/ | |/| | | | | | | | |
| * | | | | | | | | | Fix spelling; minor code cleanup.Wolfgang Denk2006-10-121-1/+1
| | | | | | | | | | |
* | | | | | | | | | | Merge with /home/wd/git/u-boot/masterWolfgang Denk2006-10-121-1/+0
|\ \ \ \ \ \ \ \ \ \ \ | |/ / / / / / / / / /
| * | | | | | | | | | Cleanup of NAND update patch (remove changelog from cmd_nand.c)Stefan Roese2006-10-111-1/+0
| | |_|_|_|_|_|_|_|/ | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | Patch by Guido Classen, 10 Oct 2006
* | | | | | | | | | Merge with http://opensource.freescale.com/pub/scm/u-boot-85xx.git#for_wdWolfgang Denk2006-10-112-12/+13
|\ \ \ \ \ \ \ \ \ \
OpenPOWER on IntegriCloud