* [U-Boot] [PATCH 1/2] at91sam9263ek: enable useful commands
@ 2012-06-28 12:32 Andreas Bießmann
2012-06-28 12:32 ` [U-Boot] [PATCH 2/2] at91sam9263ek: fix 'update' script Andreas Bießmann
2012-07-09 11:23 ` [U-Boot] [PATCH 1/2] at91sam9263ek: enable useful commands Andreas Bießmann
0 siblings, 2 replies; 3+ messages in thread
From: Andreas Bießmann @ 2012-06-28 12:32 UTC (permalink / raw)
To: u-boot
Signed-off-by: Andreas Bie?mann <andreas.devel@googlemail.com>
cc: Stelian Pop <stelian@popies.net>
---
include/configs/at91sam9263ek.h | 2 --
1 file changed, 2 deletions(-)
diff --git a/include/configs/at91sam9263ek.h b/include/configs/at91sam9263ek.h
index f2163f1..2d46502 100644
--- a/include/configs/at91sam9263ek.h
+++ b/include/configs/at91sam9263ek.h
@@ -108,10 +108,8 @@
* Command line configuration.
*/
#include <config_cmd_default.h>
-#undef CONFIG_CMD_BDI
#undef CONFIG_CMD_FPGA
#undef CONFIG_CMD_IMI
-#undef CONFIG_CMD_IMLS
#undef CONFIG_CMD_LOADS
#undef CONFIG_CMD_SOURCE
--
1.7.10
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [U-Boot] [PATCH 2/2] at91sam9263ek: fix 'update' script
2012-06-28 12:32 [U-Boot] [PATCH 1/2] at91sam9263ek: enable useful commands Andreas Bießmann
@ 2012-06-28 12:32 ` Andreas Bießmann
2012-07-09 11:23 ` [U-Boot] [PATCH 1/2] at91sam9263ek: enable useful commands Andreas Bießmann
1 sibling, 0 replies; 3+ messages in thread
From: Andreas Bießmann @ 2012-06-28 12:32 UTC (permalink / raw)
To: u-boot
The old update script uses 'load_addr' which is never set. Use 'fileaddr'
instead whic his automagically set by e.g. dhcp.
Signed-off-by: Andreas Bie?mann <andreas.devel@googlemail.com>
cc: Stelian Pop <stelian@popies.net>
---
include/configs/at91sam9263ek.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/include/configs/at91sam9263ek.h b/include/configs/at91sam9263ek.h
index 2d46502..f93a436 100644
--- a/include/configs/at91sam9263ek.h
+++ b/include/configs/at91sam9263ek.h
@@ -163,7 +163,7 @@
"update=" \
"protect off ${monitor_base} +${filesize};" \
"erase ${monitor_base} +${filesize};" \
- "cp.b ${load_addr} ${monitor_base} ${filesize};" \
+ "cp.b ${fileaddr} ${monitor_base} ${filesize};" \
"protect on ${monitor_base} +${filesize}\0"
#ifndef CONFIG_SKIP_LOWLEVEL_INIT
--
1.7.10
^ permalink raw reply related [flat|nested] 3+ messages in thread* [U-Boot] [PATCH 1/2] at91sam9263ek: enable useful commands
2012-06-28 12:32 [U-Boot] [PATCH 1/2] at91sam9263ek: enable useful commands Andreas Bießmann
2012-06-28 12:32 ` [U-Boot] [PATCH 2/2] at91sam9263ek: fix 'update' script Andreas Bießmann
@ 2012-07-09 11:23 ` Andreas Bießmann
1 sibling, 0 replies; 3+ messages in thread
From: Andreas Bießmann @ 2012-07-09 11:23 UTC (permalink / raw)
To: u-boot
On 28.06.2012 14:32, Andreas Bie?mann wrote:
> Signed-off-by: Andreas Bie?mann <andreas.devel@googlemail.com>
> cc: Stelian Pop <stelian@popies.net>
> ---
> include/configs/at91sam9263ek.h | 2 --
> 1 file changed, 2 deletions(-)
>
> diff --git a/include/configs/at91sam9263ek.h b/include/configs/at91sam9263ek.h
> index f2163f1..2d46502 100644
> --- a/include/configs/at91sam9263ek.h
> +++ b/include/configs/at91sam9263ek.h
> @@ -108,10 +108,8 @@
> * Command line configuration.
> */
> #include <config_cmd_default.h>
> -#undef CONFIG_CMD_BDI
> #undef CONFIG_CMD_FPGA
> #undef CONFIG_CMD_IMI
> -#undef CONFIG_CMD_IMLS
NAK, enabling imls breaks all the configurations where NOR is not enabled:
---8<---
Configuring for at91sam9263ek_nandflash - Board: at91sam9263ek, Options:
AT91SAM9263,SYS_USE_NANDFLASH
/home/abiessmann/source/git_projects/u-boot-atmel/include/mtd/cfi_flash.h:174:22:
error: unknown type name 'flash_info_t'
/home/abiessmann/source/git_projects/u-boot-atmel/include/mtd/cfi_flash.h:174:43:
error: unknown type name 'flash_sect_t'
cmd_bootm.c:82:1: error: unknown type name 'flash_info_t'
cmd_bootm.c:1164:2: error: unknown type name 'flash_info_t'
cmd_bootm.c:1169:7: error: 'CONFIG_SYS_MAX_FLASH_BANKS' undeclared
(first use in this function)
cmd_bootm.c:1171:11: error: request for member 'flash_id' in something
not a structure or union
cmd_bootm.c:1171:25: error: 'FLASH_UNKNOWN' undeclared (first use in
this function)
cmd_bootm.c:1173:23: error: request for member 'sector_count' in
something not a structure or union
cmd_bootm.c:1175:22: error: request for member 'start' in something not
a structure or union
--->8---
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2012-07-09 11:23 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-06-28 12:32 [U-Boot] [PATCH 1/2] at91sam9263ek: enable useful commands Andreas Bießmann
2012-06-28 12:32 ` [U-Boot] [PATCH 2/2] at91sam9263ek: fix 'update' script Andreas Bießmann
2012-07-09 11:23 ` [U-Boot] [PATCH 1/2] at91sam9263ek: enable useful commands Andreas Bießmann
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.