diff options
| author | Bo Shen <voice.shen@atmel.com> | 2012-09-04 23:22:55 +0000 | 
|---|---|---|
| committer | Andreas Bießmann <andreas.devel@googlemail.com> | 2012-09-17 19:02:44 +0200 | 
| commit | dc3e30bab7c5ef87bd24ebcbb7cdfc3fb2b44555 (patch) | |
| tree | 3527493be0ed53b54f790ff626ec36b546acb2b0 | |
| parent | 83fd09a0491034ee28c6948732b570f3e9e15b68 (diff) | |
| download | olio-uboot-2014.01-dc3e30bab7c5ef87bd24ebcbb7cdfc3fb2b44555.tar.xz olio-uboot-2014.01-dc3e30bab7c5ef87bd24ebcbb7cdfc3fb2b44555.zip | |
Atmel: sam9g10/9m10/9x5: Add support to boot DT kernel
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>
Signed-off-by: Andreas Bießmann <andreas.devel@googlemail.com>
| -rw-r--r-- | include/configs/at91sam9261ek.h | 2 | ||||
| -rw-r--r-- | include/configs/at91sam9m10g45ek.h | 2 | ||||
| -rw-r--r-- | include/configs/at91sam9x5ek.h | 2 | 
3 files changed, 6 insertions, 0 deletions
| diff --git a/include/configs/at91sam9261ek.h b/include/configs/at91sam9261ek.h index 1e1fbe56d..611e3e253 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 4ca280a7f..e988d8141 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 1ceb31a0f..cbdc3e93c 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 |