From: Marcel Ziswiler <[email protected]> Enable optional raw initrd support to allow boot using an initrd.
Signed-off-by: Marcel Ziswiler <[email protected]> Reviewed-by: Simon Glass <[email protected]> --- include/configs/apalis_t30.h | 3 +++ include/configs/colibri_t20.h | 3 +++ include/configs/colibri_t30.h | 3 +++ 3 files changed, 9 insertions(+) diff --git a/include/configs/apalis_t30.h b/include/configs/apalis_t30.h index 283b002..898ccdf 100644 --- a/include/configs/apalis_t30.h +++ b/include/configs/apalis_t30.h @@ -79,6 +79,9 @@ #undef CONFIG_SYS_MAXARGS #define CONFIG_SYS_MAXARGS 32 +#define CONFIG_SUPPORT_RAW_INITRD +#define CONFIG_SYS_BOOT_RAMDISK_HIGH + #include "tegra-common-usb-gadget.h" #include "tegra-common-post.h" diff --git a/include/configs/colibri_t20.h b/include/configs/colibri_t20.h index 72a328f..4c45ef8 100644 --- a/include/configs/colibri_t20.h +++ b/include/configs/colibri_t20.h @@ -113,6 +113,9 @@ #undef CONFIG_SYS_MAXARGS #define CONFIG_SYS_MAXARGS 32 +#define CONFIG_SUPPORT_RAW_INITRD +#define CONFIG_SYS_BOOT_RAMDISK_HIGH + #include "tegra-common-usb-gadget.h" #include "tegra-common-post.h" diff --git a/include/configs/colibri_t30.h b/include/configs/colibri_t30.h index 249b5c0..3ef4778 100644 --- a/include/configs/colibri_t30.h +++ b/include/configs/colibri_t30.h @@ -72,6 +72,9 @@ #undef CONFIG_SYS_MAXARGS #define CONFIG_SYS_MAXARGS 32 +#define CONFIG_SUPPORT_RAW_INITRD +#define CONFIG_SYS_BOOT_RAMDISK_HIGH + #include "tegra-common-usb-gadget.h" #include "tegra-common-post.h" -- 2.4.3 _______________________________________________ U-Boot mailing list [email protected] http://lists.denx.de/mailman/listinfo/u-boot

