mail archive of the barebox mailing list
 help / color / mirror / Atom feed
* [PATCH 1/1] at91rm9200ek: enable dt support
@ 2012-11-04 18:51 Jean-Christophe PLAGNIOL-VILLARD
  2012-11-12  7:33 ` Sascha Hauer
  0 siblings, 1 reply; 2+ messages in thread
From: Jean-Christophe PLAGNIOL-VILLARD @ 2012-11-04 18:51 UTC (permalink / raw)
  To: barebox

Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
---
 arch/arm/boards/at91rm9200ek/env/config |    2 ++
 arch/arm/configs/at91rm9200ek_defconfig |    5 +++++
 2 files changed, 7 insertions(+)

diff --git a/arch/arm/boards/at91rm9200ek/env/config b/arch/arm/boards/at91rm9200ek/env/config
index a3830cb..76c180b 100644
--- a/arch/arm/boards/at91rm9200ek/env/config
+++ b/arch/arm/boards/at91rm9200ek/env/config
@@ -15,6 +15,8 @@ global.dhcp.vendor_id=barebox-at91rm9200ek
 kernel_loc=nfs
 # can be either 'net', 'nor' or 'initrd'
 rootfs_loc=net
+# can be either 'nfs', 'tftp', or empty
+oftree_loc=nfs
 
 # can be either 'jffs2' or 'ubifs'
 rootfs_type=ubifs
diff --git a/arch/arm/configs/at91rm9200ek_defconfig b/arch/arm/configs/at91rm9200ek_defconfig
index 6a105c6..2bcade9 100644
--- a/arch/arm/configs/at91rm9200ek_defconfig
+++ b/arch/arm/configs/at91rm9200ek_defconfig
@@ -32,9 +32,14 @@ CONFIG_CMD_FLASH=y
 CONFIG_CMD_BOOTM_ZLIB=y
 CONFIG_CMD_BOOTM_BZLIB=y
 CONFIG_CMD_BOOTM_SHOW_TYPE=y
+CONFIG_CMD_BOOTM_VERBOSE=y
 CONFIG_CMD_BOOTM_INITRD=y
+CONFIG_CMD_BOOTM_OFTREE=y
+CONFIG_CMD_BOOTM_OFTREE_UIMAGE=y
+# CONFIG_CMD_BOOTU is not set
 CONFIG_CMD_RESET=y
 CONFIG_CMD_GO=y
+CONFIG_CMD_OFTREE=y
 CONFIG_CMD_TIMEOUT=y
 CONFIG_CMD_PARTITION=y
 CONFIG_CMD_GPIO=y
-- 
1.7.10.4


_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: [PATCH 1/1] at91rm9200ek: enable dt support
  2012-11-04 18:51 [PATCH 1/1] at91rm9200ek: enable dt support Jean-Christophe PLAGNIOL-VILLARD
@ 2012-11-12  7:33 ` Sascha Hauer
  0 siblings, 0 replies; 2+ messages in thread
From: Sascha Hauer @ 2012-11-12  7:33 UTC (permalink / raw)
  To: Jean-Christophe PLAGNIOL-VILLARD; +Cc: barebox

On Sun, Nov 04, 2012 at 07:51:32PM +0100, Jean-Christophe PLAGNIOL-VILLARD wrote:
> Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
> ---
>  arch/arm/boards/at91rm9200ek/env/config |    2 ++
>  arch/arm/configs/at91rm9200ek_defconfig |    5 +++++
>  2 files changed, 7 insertions(+)
> 

Applied, thanks

Sascha

> diff --git a/arch/arm/boards/at91rm9200ek/env/config b/arch/arm/boards/at91rm9200ek/env/config
> index a3830cb..76c180b 100644
> --- a/arch/arm/boards/at91rm9200ek/env/config
> +++ b/arch/arm/boards/at91rm9200ek/env/config
> @@ -15,6 +15,8 @@ global.dhcp.vendor_id=barebox-at91rm9200ek
>  kernel_loc=nfs
>  # can be either 'net', 'nor' or 'initrd'
>  rootfs_loc=net
> +# can be either 'nfs', 'tftp', or empty
> +oftree_loc=nfs
>  
>  # can be either 'jffs2' or 'ubifs'
>  rootfs_type=ubifs
> diff --git a/arch/arm/configs/at91rm9200ek_defconfig b/arch/arm/configs/at91rm9200ek_defconfig
> index 6a105c6..2bcade9 100644
> --- a/arch/arm/configs/at91rm9200ek_defconfig
> +++ b/arch/arm/configs/at91rm9200ek_defconfig
> @@ -32,9 +32,14 @@ CONFIG_CMD_FLASH=y
>  CONFIG_CMD_BOOTM_ZLIB=y
>  CONFIG_CMD_BOOTM_BZLIB=y
>  CONFIG_CMD_BOOTM_SHOW_TYPE=y
> +CONFIG_CMD_BOOTM_VERBOSE=y
>  CONFIG_CMD_BOOTM_INITRD=y
> +CONFIG_CMD_BOOTM_OFTREE=y
> +CONFIG_CMD_BOOTM_OFTREE_UIMAGE=y
> +# CONFIG_CMD_BOOTU is not set
>  CONFIG_CMD_RESET=y
>  CONFIG_CMD_GO=y
> +CONFIG_CMD_OFTREE=y
>  CONFIG_CMD_TIMEOUT=y
>  CONFIG_CMD_PARTITION=y
>  CONFIG_CMD_GPIO=y
> -- 
> 1.7.10.4
> 
> 
> _______________________________________________
> barebox mailing list
> barebox@lists.infradead.org
> http://lists.infradead.org/mailman/listinfo/barebox
> 

-- 
Pengutronix e.K.                           |                             |
Industrial Linux Solutions                 | http://www.pengutronix.de/  |
Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0    |
Amtsgericht Hildesheim, HRA 2686           | Fax:   +49-5121-206917-5555 |

_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2012-11-12  7:33 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-11-04 18:51 [PATCH 1/1] at91rm9200ek: enable dt support Jean-Christophe PLAGNIOL-VILLARD
2012-11-12  7:33 ` Sascha Hauer

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox