summaryrefslogtreecommitdiffstats
path: root/board/ipe337
Commit message (Collapse)AuthorAgeFilesLines
* move boards to arch/<architecure>/boardsJean-Christophe PLAGNIOL-VILLARD2010-07-2318-512/+0
| | | | | | | | | | | | this will allow each arch to handle the boards more simply and depending on there need the env var BOARD will refer to the current board dirent for sandbox as we have only one board the board dirent is arch/sandbox/board Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* fix _update scriptsSascha Hauer2010-05-031-1/+1
| | | | Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* remove typedef cmd_tbl_t and replace it with struct commandSascha Hauer2010-02-011-1/+1
| | | | Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* ipe337: add missing includeSascha Hauer2009-12-181-0/+1
| | | | Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* rename U-Boot-v2 project to bareboxSascha Hauer2009-12-156-17/+17
| | | | | | | | | | | | | | | | | | | | | | | | | | | 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>
* commands: remove maxargsSascha Hauer2009-10-191-1/+0
| | | | | | | No need to check for maximum argument counts. The commands are safe to be called with more arguments, so lets safe some bytes. Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* commands: return COMMAND_ERROR_USAGESascha Hauer2009-10-191-4/+2
| | | | | | | instead of calling u_boot_cmd_usage in each command to safe space. Signed-off-by: Sascha Hauer <sha@pengutronix.de>
* boards: use recently introduced protect_file functionSascha Hauer2009-10-021-1/+1
| | | | Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* register env as env0 and not as envSascha Hauer2009-09-291-2/+2
| | | | Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* remove id fields from struct device_dSascha Hauer2009-07-211-4/+0
| | | | Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* register sdram devices correctlySascha Hauer2009-07-211-3/+7
| | | | Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* Get rid of DEVICE_TYPE_CONSOLE usageSascha Hauer2009-07-211-1/+0
| | | | Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* Get rid of DEVICE_TYPE_DRAM usageSascha Hauer2009-07-211-2/+0
| | | | Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* Get rid of DEVICE_TYPE_ETHER usageSascha Hauer2009-07-211-1/+0
| | | | Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* dev_add_partition -> devfs_add_partitionSascha Hauer2009-07-211-4/+4
| | | | Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* Default environments: Do not continue when tftp failedSascha Hauer2008-11-141-1/+1
| | | | | | | When we fail to download the kernel image (for example when the user pressed ctrl-c) do not try to boot the image Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* Net: Remove all hardcoded MAC addresses from default environmentsSascha Hauer2008-08-201-1/+0
| | | | | | | While very convenient during debugging having MAC addresses in default environments is a very bad idea. Stop it! Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* [blackfin] compile fixes, update defconfigSascha Hauer2008-07-031-1/+2
|
* [memory layout]: streamline memory layoutSascha Hauer2008-06-041-7/+0
| | | | | | | Memory layout can now be specified via kconfig options. Two possibilities exist: default layout means the layout is stack / malloc heap / U-Boot. The user can also specify fixed addresses for each TEXT_BASE / stack / malloc heap.
* [general] Move include/configs/* to board/*/config.hSascha Hauer2008-04-071-0/+53
|
* Subject: [PATCH] [general] Fixed constant strings in data section issueSascha Hauer2008-04-041-1/+1
| | | | | | | | For practical reasons I changed all string literals assumed to be constant to reside in .rodata subsection at end of .text section. Signed-off-by: Carsten Schlote <schlote@vahanus.net> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* [ipe337] fix ageing handlingMarc Kleine-Budde2008-02-213-6/+21
| | | | | | | | | With this path the script "_alternate" isn't used anymore, because the return values somehow get lost. We use alternate directly for now. Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
* add alternate mechanism & flash scripts - part2Wolfram Sang2008-02-158-43/+98
| | | | sorry, forgot to add these files :(
* add alternating mechanism and flash scripts for ipe337Wolfram Sang2008-02-157-0/+75
| | | | | | | - add scripts to flash kernel & environment from U-Boot - add mechanism to check which of the two kernels to boot - add script to initialize the ageing partition - cosmetic changes to the init-scripts
* [ipe337] fixed environmentMarc Kleine-Budde2007-11-271-6/+6
| | | | | | | hush parser has problems with undefined vars thanks to Enrik Bernkhan for spotting this Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
* [ipe337] new version of update_* scriptsMarc Kleine-Budde2007-11-125-46/+41
| | | | Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
* [ipe337] rename environment subdir form defenv -> envMarc Kleine-Budde2007-11-125-4/+0
| | | | Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
* ipe337: Make the default environment more sophisticatedSascha Hauer2007-10-245-9/+97
| | | | Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* ipe337: Increase the time we pull the reset line for the network controllerSascha Hauer2007-10-241-2/+2
| | | | Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* adding first board docJuergen Beisert2007-10-191-0/+10
|
* - Implement tree structure for devicessascha2007-10-191-2/+2
| | | | | | | - Use device tree structure to implement partitions - Let devinfo print a nice tree - Introduce 'fixed' partitions which are not removable - Fix mount: It was not possible to mount on a relative path.
* __u_boot__symtab -> __usymtabSascha Hauer2007-10-071-3/+3
|
* board/ipe337/u-boot.lds.S: add missing _Sascha Hauer2007-10-041-2/+2
|
* update linker scripts:Sascha Hauer2007-10-011-0/+4
| | | | | - add _stext and _etext symbols - add symtabd section
* update default environment for ipe337 boardSascha Hauer2007-09-283-36/+3
|
* add blackfin specific bits for module handlingSascha Hauer2007-09-281-1/+6
|
* add bracketsSascha Hauer2007-09-281-1/+1
|
* move environment to offset 0x20000 in flashSascha Hauer2007-09-271-1/+1
|
* add alternate command for ipe337 boardSascha Hauer2007-09-272-0/+52
|
* update ipe337 default environmentSascha Hauer2007-09-223-4/+11
|
* add default environment for ip337 boardSascha Hauer2007-09-163-0/+52
|
* fix memory size of ipe337 boardSascha Hauer2007-09-161-2/+3
|
* whitespace cleanupSascha Hauer2007-09-131-3/+3
|
* add missing includeSascha Hauer2007-09-131-0/+1
|
* add support for the PII bf561 boardSascha Hauer2007-09-113-0/+149