Re: [U-Boot] [PATCH] fastboot: check for alias when looking up partition by name

2015-03-12 Thread Michael Scott
On 03/12/2015 09:23 AM, Steve Rae wrote: On 15-03-11 10:02 AM, Michael Scott wrote: Implement an alias name check for devices where GPT limitations prevent user-friendly partition names such as "boot", "system" and "cache". Or, where the actual partition

[U-Boot] [PATCH] fastboot: check for alias when looking up partition by name

2015-03-11 Thread Michael Scott
lias, add an environment setting as follows: fastboot_partition_alias_= Example: fastboot_partition_alias_boot=LNX Signed-off-by: Michael Scott Cc: Steve Rae Cc: Lukasz Majewski --- common/fb_mmc.c | 26 -- doc/README.android-fastboot | 9 + 2 files cha

[U-Boot] [PATCH] ARM: tegra: increase buffer size and sys args num

2014-10-26 Thread Michael Scott
won't boot without the complete bootargs. Increase this 2 config options solve this problem. Signed-off-by: Bryan Wu Signed-off-by: Michael Scott Cc: Tom Warren Cc: Stephen Warren Cc: Bryan Wu --- include/configs/tegra-common.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)

[U-Boot] [PATCH] arm: tegra: raise CONFIG_SYS_MALLOC_LEN to 32mb

2014-10-26 Thread Michael Scott
encounted was ~26mb using a sparsed system.img test file. Choosing 32mb as a "safe" new limit. Signed-off-by: Michael Scott Cc: Tom Warren Cc: Stephen Warren --- include/configs/tegra-common.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/configs/tegra-

[U-Boot] [PATCH] mmc: tegra: handle error returned from bounce_buffer_start

2014-10-21 Thread Michael Scott
s to be DMA aligned prior to MMC write. These blocks are are often more than 4mb which is the default Tegra setting for CONFIG_SYS_MALLOC_LEN. Signed-off-by: Michael Scott Cc: Tom Warren Cc: Stephen Warren --- drivers/mmc/tegra_mmc.c | 8 +++- 1 file changed, 7 insertions(+), 1 deletion(-) d