[U-Boot] [PATCH] arm: imx: Switch Wandboard to use config_distro_bootcmd.h.

2015-03-28 Thread Vagrant Cascadian
This allows for more flexible and standardized boot across multiple platforms. Remove most redundant legacy boot environment. Cc: Otavio Salvador ota...@ossystems.com.br Signed-off-by: Vagrant Cascadian vagr...@debian.org --- include/configs/wandboard.h | 139

Re: [U-Boot] [PATCH v4 2/2] ARM: mx5: add support for USB armory board

2015-03-26 Thread Vagrant Cascadian
On 2015-03-26, and...@inversepath.com wrote: From: Andrej Rosano and...@inversepath.com Add support for Inverse Path USB armory board, an open source flash-drive sized computer based on Freescale i.MX53 SoC. http://inversepath.com/usbarmory Tested-By: Vagrant Cascadian vagr...@debian.org

Re: [U-Boot] [PATCH v3] arm: mx5: Add support for USB armory board

2015-03-25 Thread Vagrant Cascadian
On 2015-03-25, Stefano Babic wrote: diff --git a/arch/arm/Kconfig b/arch/arm/Kconfig index b9ebee1..a490084 100644 --- a/arch/arm/Kconfig +++ b/arch/arm/Kconfig @@ -462,6 +462,10 @@ config TARGET_MX53SMD bool Support mx53smd select CPU_V7 +config TARGET_USBARMORY +bool

Re: [U-Boot] [PATCH v3] arm: mx5: Add support for USB armory board

2015-03-24 Thread Vagrant Cascadian
On 2015-03-24, and...@inversepath.com wrote: Add support for Inverse Path USB armory board, an open source flash-drive sized computer based on Freescale i.MX53 SoC. Thanks! Unfortunately, this fails to build with numerous errors such as: CC arch/arm/lib/asm-offsets.s In file included

Re: [U-Boot] arm: mx5: Add support for USB armory board

2015-03-21 Thread Vagrant Cascadian
On 2015-03-19, Andrej Rosano wrote: On Thu, Mar 19, 2015 at 09:55:26AM -0700, Vagrant Cascadian wrote: On 2015-02-24, and...@inversepath.com wrote: Add support for Inverse Path USB armory board, an open source flash-drive sized computer based on Freescale i.MX53 SoC. ... Would you consider

[U-Boot] u-boot: OpenRD Ultimate fails to build

2015-03-21 Thread Vagrant Cascadian
It seems that OpenRD Ultimate with u-boot 2015.04-rc3 and newer no longer builds from source, both in Debian and with mainline git. It appears to have overgrown the size limits set for it: OBJCOPY u-boot.srec OBJCOPY u-boot.bin u-boot.bin exceeds file size limit: limit: 393216 bytes

Re: [U-Boot] arm: mx5: Add support for USB armory board

2015-03-19 Thread Vagrant Cascadian
On 2015-02-24, and...@inversepath.com wrote: Add support for Inverse Path USB armory board, an open source flash-drive sized computer based on Freescale i.MX53 SoC. ... diff --git a/include/configs/usbarmory.h b/include/configs/usbarmory.h new file mode 100644 index 000..e00ec7b ---

[U-Boot] [PATCH] Fix cosmetic issues in mkimage manpage

2014-11-01 Thread Vagrant Cascadian
* Escape use of - in description of -F. * Fix line continuations in examples so that the continued lines are also bold. Signed-off-by: Vagrant Cascadian vagr...@debian.org --- doc/mkimage.1 | 8 +--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/doc/mkimage.1 b/doc

Re: [U-Boot] generic-board: make compile-time noise for non-generic boards

2014-10-19 Thread Vagrant Cascadian
On 2014-10-19, Masahiro Yamada wrote: Commit 0f605c1501f6 (Start the deprecation process for generic board) added a run-time warning message. Let's be noisier for non-generic boards to inform the dead line of the conversion. ... diff --git a/Makefile b/Makefile index 99097e1..f439d82 100644

Re: [U-Boot] [RFC PATCH 1/7] Allow checking in multiple partitions for scan_dev_for_boot.

2014-10-07 Thread Vagrant Cascadian
Thanks for the review! On 2014-10-06, Stephen Warren swar...@nvidia.com wrote: On 10/03/2014 03:08 PM, Vagrant Cascadian wrote: Some standalone description of this change, and justification for it, should really be present in the commit message. Patch 0/7 doesn't get applied anywhere

Re: [U-Boot] [RFC PATCH 6/7] Add support for loading environment from uEnv.txt in config_distro_bootcmd.

2014-10-07 Thread Vagrant Cascadian
On 2014-10-06, Stephen Warren wrote: On 10/03/2014 03:08 PM, Vagrant Cascadian wrote: diff --git a/include/config_distro_bootcmd.h b/include/config_distro_bootcmd.h for prefix in ${boot_prefixes}; do \ run scan_dev_for_extlinux

[U-Boot] [RFC PATCH 1/7] Allow checking in multiple partitions for scan_dev_for_boot.

2014-10-04 Thread Vagrant Cascadian
Signed-off-by: Vagrant Cascadian vagr...@debian.org --- include/config_distro_bootcmd.h | 13 - 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/include/config_distro_bootcmd.h b/include/config_distro_bootcmd.h index be616e8..5e5e5e3 100644 --- a/include

[U-Boot] [RFC PATCH 4/7] Add BOOTENV_POST_COMMAND, which is appended to the end of bootcmd.

2014-10-04 Thread Vagrant Cascadian
Signed-off-by: Vagrant Cascadian vagr...@debian.org --- include/config_distro_bootcmd.h | 8 +++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/include/config_distro_bootcmd.h b/include/config_distro_bootcmd.h index 515a2f9..2503431 100644 --- a/include/config_distro_bootcmd.h

[U-Boot] [RFC PATCH 6/7] Add support for loading environment from uEnv.txt in config_distro_bootcmd.

2014-10-04 Thread Vagrant Cascadian
Signed-off-by: Vagrant Cascadian vagr...@debian.org --- include/config_distro_bootcmd.h | 21 + 1 file changed, 21 insertions(+) diff --git a/include/config_distro_bootcmd.h b/include/config_distro_bootcmd.h index 2503431..aaa010e 100644 --- a/include/config_distro_bootcmd.h

[U-Boot] [RFC PATCH 3/7] Add BOOTENV_INIT_COMMAND for commands that may be needed to run before bootcmd, such as setting the fdt file variables for platfroms that detect on boot.

2014-10-04 Thread Vagrant Cascadian
Signed-off-by: Vagrant Cascadian vagr...@debian.org --- include/config_distro_bootcmd.h | 7 ++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/include/config_distro_bootcmd.h b/include/config_distro_bootcmd.h index a93354a..515a2f9 100644 --- a/include/config_distro_bootcmd.h

[U-Boot] [RFC PATCH 0/7] Switch am335x_evm.h based boards to use config_distro_bootcmd.

2014-10-04 Thread Vagrant Cascadian
++--- include/config_distro_defaults.h | 2 ++ include/configs/am335x_evm.h | 26 +- include/configs/ti_armv7_common.h | 1 + 4 files changed, 66 insertions(+), 16 deletions(-) Vagrant Cascadian (7): Allow checking in multiple partitions

[U-Boot] [RFC PATCH 7/7] Switch am335x_evm.h to use config_distro_defaults and config_distro_bootcmd. Add scriptaddr to DEFAULT_LINUX_BOOT_ENV, as scriptaddr is used for boot scripts in config_distro_

2014-10-04 Thread Vagrant Cascadian
Signed-off-by: Vagrant Cascadian vagr...@debian.org --- include/configs/am335x_evm.h | 26 +- include/configs/ti_armv7_common.h | 1 + 2 files changed, 18 insertions(+), 9 deletions(-) diff --git a/include/configs/am335x_evm.h b/include/configs/am335x_evm.h index

[U-Boot] [RFC PATCH 5/7] Only set CONFIG_BOOTDELAY if not already set.

2014-10-04 Thread Vagrant Cascadian
Signed-off-by: Vagrant Cascadian vagr...@debian.org --- include/config_distro_defaults.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/config_distro_defaults.h b/include/config_distro_defaults.h index 5d18a4b..fc67c42 100644 --- a/include/config_distro_defaults.h +++ b/include

[U-Boot] [RFC PATCH 2/7] Allow overriding boot_partitions default value by setting BOOTENV_BOOT_PARTITIONS before including config_distro_bootcmd.

2014-10-04 Thread Vagrant Cascadian
Signed-off-by: Vagrant Cascadian vagr...@debian.org --- include/config_distro_bootcmd.h | 6 +- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/include/config_distro_bootcmd.h b/include/config_distro_bootcmd.h index 5e5e5e3..a93354a 100644 --- a/include/config_distro_bootcmd.h

[U-Boot] converting BeagleBone Black to use config_distro_bootcmd

2014-10-01 Thread Vagrant Cascadian
I've been working on standardizing the u-boot builds in Debian, and one platform I've been working on moving over to config_distro_defaults is the BeagleBone Black... In doing so, it took some moderate modification of config_distro_defaults to allow changing some hard-coded values, and

<    1   2   3   4