From 911d3d62398f1a94b9a1b891eb509035736232ad Mon Sep 17 00:00:00 2001 From: Ajay Bhargav Date: Mon, 16 Feb 2015 16:02:30 +0100 Subject: arm: gplugd: convert to generic board Enable CONFIG_SYS_GENERIC_BOARD for Marvell gplugD. Signed-off-by: Ajay Bhargav Acked-by: Prafulla Wadaskar Acked-by: Luka Perkov --- include/configs/gplugd.h | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'include/configs') diff --git a/include/configs/gplugd.h b/include/configs/gplugd.h index 404c56a..0ac198d 100644 --- a/include/configs/gplugd.h +++ b/include/configs/gplugd.h @@ -26,6 +26,11 @@ #endif /* + * Generic board support + */ +#define CONFIG_SYS_GENERIC_BOARD + +/* * Version number information */ #define CONFIG_IDENT_STRING "\nMarvell-gplugD" -- cgit v1.1 From e3c6c7bfee388ceeb98991e9b08c83f097f3b02c Mon Sep 17 00:00:00 2001 From: Ajay Bhargav Date: Mon, 16 Feb 2015 16:04:48 +0100 Subject: arm: aspenite: convert to generic board Enable CONFIG_SYS_GENERIC_BOARD for Marvell Aspenite. Signed-off-by: Ajay Bhargav Acked-by: Prafulla Wadaskar Acked-by: Luka Perkov --- include/configs/aspenite.h | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'include/configs') diff --git a/include/configs/aspenite.h b/include/configs/aspenite.h index 727b14a..47760ef 100644 --- a/include/configs/aspenite.h +++ b/include/configs/aspenite.h @@ -11,6 +11,11 @@ #define __CONFIG_ASPENITE_H /* + * Generic board support + */ +#define CONFIG_SYS_GENERIC_BOARD + +/* * Version number information */ #define CONFIG_IDENT_STRING "\nMarvell-Aspenite DB" -- cgit v1.1 From ce4eae0e5a8ae620ba84ac5270dd8f2ade83c81f Mon Sep 17 00:00:00 2001 From: Ian Campbell Date: Tue, 24 Feb 2015 08:38:56 +0000 Subject: dreamplug: switch to GENERIC_BOARD Built and booted to a Linux prompt with no issues discovered. network and usb access to the external mmc are ok. (my internal mmc is knackered at the h/w level). Signed-off-by: Ian Campbell Acked-By: Prafulla Wadaskar --- include/configs/dreamplug.h | 1 + 1 file changed, 1 insertion(+) (limited to 'include/configs') diff --git a/include/configs/dreamplug.h b/include/configs/dreamplug.h index 981233a..37ae686 100644 --- a/include/configs/dreamplug.h +++ b/include/configs/dreamplug.h @@ -37,6 +37,7 @@ #define CONFIG_KW88F6281 1 /* SOC Name */ #define CONFIG_MACH_TYPE MACH_TYPE_DREAMPLUG #define CONFIG_SKIP_LOWLEVEL_INIT /* disable board lowlevel_init */ +#define CONFIG_SYS_GENERIC_BOARD /* * Commands configuration -- cgit v1.1 From dbfc4c93f4d8cb495a4fd83b7edbbc3db1e04816 Mon Sep 17 00:00:00 2001 From: Ian Campbell Date: Tue, 24 Feb 2015 08:38:57 +0000 Subject: dreamplug: set CONFIG_BUILD_TARGET to build u-boot.kwb Saves having to remember to ask make for it explicitly. Signed-off-by: Ian Campbell Acked-By: Prafulla Wadaskar --- include/configs/dreamplug.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'include/configs') diff --git a/include/configs/dreamplug.h b/include/configs/dreamplug.h index 37ae686..ea6e5c0 100644 --- a/include/configs/dreamplug.h +++ b/include/configs/dreamplug.h @@ -39,6 +39,9 @@ #define CONFIG_SKIP_LOWLEVEL_INIT /* disable board lowlevel_init */ #define CONFIG_SYS_GENERIC_BOARD +/* Add target to build it automatically upon "make" */ +#define CONFIG_BUILD_TARGET "u-boot.kwb" + /* * Commands configuration */ -- cgit v1.1