* [U-Boot] [PATCH] Atmel: sam9g10/9m10/9x5: Add support to boot DT kernel
@ 2012-09-05 9:22 Bo Shen
2012-09-14 2:38 ` Bo Shen
2012-09-17 17:04 ` Andreas Bießmann
0 siblings, 2 replies; 3+ messages in thread
From: Bo Shen @ 2012-09-05 9:22 UTC (permalink / raw)
To: u-boot
The mainline linux kernel is moving to flatten device tree support
Add the CONFIG_OF_LIBFDT option to support booting DT linux kernel
Signed-off-by: Bo Shen <voice.shen@atmel.com>
---
include/configs/at91sam9261ek.h | 2 ++
include/configs/at91sam9m10g45ek.h | 2 ++
include/configs/at91sam9x5ek.h | 2 ++
3 files changed, 6 insertions(+)
diff --git a/include/configs/at91sam9261ek.h b/include/configs/at91sam9261ek.h
index 1e1fbe5..611e3e2 100644
--- a/include/configs/at91sam9261ek.h
+++ b/include/configs/at91sam9261ek.h
@@ -48,6 +48,8 @@
#define CONFIG_DISPLAY_CPUINFO
+#define CONFIG_OF_LIBFDT
+
#define CONFIG_ATMEL_LEGACY
#define CONFIG_SYS_TEXT_BASE 0x21f00000
diff --git a/include/configs/at91sam9m10g45ek.h b/include/configs/at91sam9m10g45ek.h
index 4ca280a..e988d81 100644
--- a/include/configs/at91sam9m10g45ek.h
+++ b/include/configs/at91sam9m10g45ek.h
@@ -47,6 +47,8 @@
#define CONFIG_BOARD_EARLY_INIT_F
#define CONFIG_DISPLAY_CPUINFO
+#define CONFIG_OF_LIBFDT
+
/* general purpose I/O */
#define CONFIG_ATMEL_LEGACY /* required until (g)pio is fixed */
#define CONFIG_AT91_GPIO
diff --git a/include/configs/at91sam9x5ek.h b/include/configs/at91sam9x5ek.h
index 1ceb31a..cbdc3e9 100644
--- a/include/configs/at91sam9x5ek.h
+++ b/include/configs/at91sam9x5ek.h
@@ -42,6 +42,8 @@
#define CONFIG_BOARD_EARLY_INIT_F
#define CONFIG_DISPLAY_CPUINFO
+#define CONFIG_OF_LIBFDT
+
/* general purpose I/O */
#define CONFIG_ATMEL_LEGACY /* required until (g)pio is fixed */
#define CONFIG_AT91_GPIO
--
1.7.9.5
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [U-Boot] [PATCH] Atmel: sam9g10/9m10/9x5: Add support to boot DT kernel
2012-09-05 9:22 [U-Boot] [PATCH] Atmel: sam9g10/9m10/9x5: Add support to boot DT kernel Bo Shen
@ 2012-09-14 2:38 ` Bo Shen
2012-09-17 17:04 ` Andreas Bießmann
1 sibling, 0 replies; 3+ messages in thread
From: Bo Shen @ 2012-09-14 2:38 UTC (permalink / raw)
To: u-boot
Hi Andreas,
On 9/5/2012 17:22, Bo Shen wrote:
> The mainline linux kernel is moving to flatten device tree support
> Add the CONFIG_OF_LIBFDT option to support booting DT linux kernel
>
> Signed-off-by: Bo Shen <voice.shen@atmel.com>
> ---
> include/configs/at91sam9261ek.h | 2 ++
> include/configs/at91sam9m10g45ek.h | 2 ++
> include/configs/at91sam9x5ek.h | 2 ++
> 3 files changed, 6 insertions(+)
>
Ping?
> diff --git a/include/configs/at91sam9261ek.h b/include/configs/at91sam9261ek.h
> index 1e1fbe5..611e3e2 100644
> --- a/include/configs/at91sam9261ek.h
> +++ b/include/configs/at91sam9261ek.h
> @@ -48,6 +48,8 @@
>
> #define CONFIG_DISPLAY_CPUINFO
>
> +#define CONFIG_OF_LIBFDT
> +
> #define CONFIG_ATMEL_LEGACY
> #define CONFIG_SYS_TEXT_BASE 0x21f00000
>
> diff --git a/include/configs/at91sam9m10g45ek.h b/include/configs/at91sam9m10g45ek.h
> index 4ca280a..e988d81 100644
> --- a/include/configs/at91sam9m10g45ek.h
> +++ b/include/configs/at91sam9m10g45ek.h
> @@ -47,6 +47,8 @@
> #define CONFIG_BOARD_EARLY_INIT_F
> #define CONFIG_DISPLAY_CPUINFO
>
> +#define CONFIG_OF_LIBFDT
> +
> /* general purpose I/O */
> #define CONFIG_ATMEL_LEGACY /* required until (g)pio is fixed */
> #define CONFIG_AT91_GPIO
> diff --git a/include/configs/at91sam9x5ek.h b/include/configs/at91sam9x5ek.h
> index 1ceb31a..cbdc3e9 100644
> --- a/include/configs/at91sam9x5ek.h
> +++ b/include/configs/at91sam9x5ek.h
> @@ -42,6 +42,8 @@
> #define CONFIG_BOARD_EARLY_INIT_F
> #define CONFIG_DISPLAY_CPUINFO
>
> +#define CONFIG_OF_LIBFDT
> +
> /* general purpose I/O */
> #define CONFIG_ATMEL_LEGACY /* required until (g)pio is fixed */
> #define CONFIG_AT91_GPIO
>
^ permalink raw reply [flat|nested] 3+ messages in thread
* [U-Boot] [PATCH] Atmel: sam9g10/9m10/9x5: Add support to boot DT kernel
2012-09-05 9:22 [U-Boot] [PATCH] Atmel: sam9g10/9m10/9x5: Add support to boot DT kernel Bo Shen
2012-09-14 2:38 ` Bo Shen
@ 2012-09-17 17:04 ` Andreas Bießmann
1 sibling, 0 replies; 3+ messages in thread
From: Andreas Bießmann @ 2012-09-17 17:04 UTC (permalink / raw)
To: u-boot
Dear Bo Shen,
On 05.09.2012 11:22, Bo Shen wrote:
> The mainline linux kernel is moving to flatten device tree support
> Add the CONFIG_OF_LIBFDT option to support booting DT linux kernel
>
> Signed-off-by: Bo Shen <voice.shen@atmel.com>
> ---
applied to u-boot-atmel/master, thanks!
Best regards
Andreas Bie?mann
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2012-09-17 17:04 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-09-05 9:22 [U-Boot] [PATCH] Atmel: sam9g10/9m10/9x5: Add support to boot DT kernel Bo Shen
2012-09-14 2:38 ` Bo Shen
2012-09-17 17:04 ` Andreas Bießmann
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox