[U-Boot] [PATCH 1/8] wandboard: Convert to generic board

Enable CONFIG_SYS_GENERIC_BOARD, so that we get rid of the following warning on boot:
"Warning: Your board does not use generic board. Please read doc/README.generic-board and take action. Boards not upgraded by the late 2014 may break or be removed."
Signed-off-by: Fabio Estevam fabio.estevam@freescale.com --- include/configs/wandboard.h | 2 ++ 1 file changed, 2 insertions(+)
diff --git a/include/configs/wandboard.h b/include/configs/wandboard.h index 6c74c72..b137d06 100644 --- a/include/configs/wandboard.h +++ b/include/configs/wandboard.h @@ -26,6 +26,8 @@ #define CONFIG_INITRD_TAG #define CONFIG_REVISION_TAG
+#define CONFIG_SYS_GENERIC_BOARD + /* Size of malloc() pool */ #define CONFIG_SYS_MALLOC_LEN (10 * SZ_1M)

Enable CONFIG_SYS_GENERIC_BOARD, so that we get rid of the following warning on boot:
"Warning: Your board does not use generic board. Please read doc/README.generic-board and take action. Boards not upgraded by the late 2014 may break or be removed."
Signed-off-by: Fabio Estevam fabio.estevam@freescale.com --- include/configs/mx53loco.h | 2 ++ 1 file changed, 2 insertions(+)
diff --git a/include/configs/mx53loco.h b/include/configs/mx53loco.h index 5859f36..12d79b4 100644 --- a/include/configs/mx53loco.h +++ b/include/configs/mx53loco.h @@ -22,6 +22,8 @@ #define CONFIG_SETUP_MEMORY_TAGS #define CONFIG_INITRD_TAG
+#define CONFIG_SYS_GENERIC_BOARD + /* Size of malloc() pool */ #define CONFIG_SYS_MALLOC_LEN (10 * 1024 * 1024)

Enable CONFIG_SYS_GENERIC_BOARD, so that we get rid of the following warning on boot:
"Warning: Your board does not use generic board. Please read doc/README.generic-board and take action. Boards not upgraded by the late 2014 may break or be removed."
Signed-off-by: Fabio Estevam fabio.estevam@freescale.com --- include/configs/mx6sabre_common.h | 2 ++ 1 file changed, 2 insertions(+)
diff --git a/include/configs/mx6sabre_common.h b/include/configs/mx6sabre_common.h index 7a2c172..e59a3b4 100644 --- a/include/configs/mx6sabre_common.h +++ b/include/configs/mx6sabre_common.h @@ -25,6 +25,8 @@ #define CONFIG_INITRD_TAG #define CONFIG_REVISION_TAG
+#define CONFIG_SYS_GENERIC_BOARD + /* Size of malloc() pool */ #define CONFIG_SYS_MALLOC_LEN (10 * SZ_1M)

Enable CONFIG_SYS_GENERIC_BOARD, so that we get rid of the following warning on boot:
"Warning: Your board does not use generic board. Please read doc/README.generic-board and take action. Boards not upgraded by the late 2014 may break or be removed."
Signed-off-by: Fabio Estevam fabio.estevam@freescale.com --- include/configs/mx53ard.h | 2 ++ 1 file changed, 2 insertions(+)
diff --git a/include/configs/mx53ard.h b/include/configs/mx53ard.h index 797a637..134d680 100644 --- a/include/configs/mx53ard.h +++ b/include/configs/mx53ard.h @@ -23,6 +23,8 @@ #define CONFIG_INITRD_TAG #define CONFIG_REVISION_TAG
+#define CONFIG_SYS_GENERIC_BOARD + /* Size of malloc() pool */ #define CONFIG_SYS_MALLOC_LEN (CONFIG_ENV_SIZE + 2 * 1024 * 1024)

Enable CONFIG_SYS_GENERIC_BOARD, so that we get rid of the following warning on boot:
"Warning: Your board does not use generic board. Please read doc/README.generic-board and take action. Boards not upgraded by the late 2014 may break or be removed."
Signed-off-by: Fabio Estevam fabio.estevam@freescale.com --- include/configs/mx53smd.h | 2 ++ 1 file changed, 2 insertions(+)
diff --git a/include/configs/mx53smd.h b/include/configs/mx53smd.h index a04e7c7..3da0ef4 100644 --- a/include/configs/mx53smd.h +++ b/include/configs/mx53smd.h @@ -23,6 +23,8 @@ #define CONFIG_INITRD_TAG #define CONFIG_REVISION_TAG
+#define CONFIG_SYS_GENERIC_BOARD + /* Size of malloc() pool */ #define CONFIG_SYS_MALLOC_LEN (CONFIG_ENV_SIZE + 2 * 1024 * 1024)

Enable CONFIG_SYS_GENERIC_BOARD, so that we get rid of the following warning on boot:
"Warning: Your board does not use generic board. Please read doc/README.generic-board and take action. Boards not upgraded by the late 2014 may break or be removed."
Signed-off-by: Fabio Estevam fabio.estevam@freescale.com --- include/configs/mx53evk.h | 2 ++ 1 file changed, 2 insertions(+)
diff --git a/include/configs/mx53evk.h b/include/configs/mx53evk.h index 3f0d80a..5bbae8c 100644 --- a/include/configs/mx53evk.h +++ b/include/configs/mx53evk.h @@ -23,6 +23,8 @@ #define CONFIG_INITRD_TAG #define CONFIG_REVISION_TAG
+#define CONFIG_SYS_GENERIC_BOARD + #define CONFIG_OF_LIBFDT
/* Size of malloc() pool */

Enable CONFIG_SYS_GENERIC_BOARD, so that we get rid of the following warning on boot:
"Warning: Your board does not use generic board. Please read doc/README.generic-board and take action. Boards not upgraded by the late 2014 may break or be removed."
Signed-off-by: Fabio Estevam fabio.estevam@freescale.com --- include/configs/udoo.h | 2 ++ 1 file changed, 2 insertions(+)
diff --git a/include/configs/udoo.h b/include/configs/udoo.h index a0306de..f8f731a 100644 --- a/include/configs/udoo.h +++ b/include/configs/udoo.h @@ -25,6 +25,8 @@ #define CONFIG_SETUP_MEMORY_TAGS #define CONFIG_INITRD_TAG #define CONFIG_REVISION_TAG + +#define CONFIG_SYS_GENERIC_BOARD
/* Size of malloc() pool */ #define CONFIG_SYS_MALLOC_LEN (2 * SZ_1M)

Enable CONFIG_SYS_GENERIC_BOARD, so that we get rid of the following warning on boot:
"Warning: Your board does not use generic board. Please read doc/README.generic-board and take action. Boards not upgraded by the late 2014 may break or be removed."
Signed-off-by: Fabio Estevam fabio.estevam@freescale.com --- include/configs/hummingboard.h | 2 ++ 1 file changed, 2 insertions(+)
diff --git a/include/configs/hummingboard.h b/include/configs/hummingboard.h index 2895523..34dbdce 100644 --- a/include/configs/hummingboard.h +++ b/include/configs/hummingboard.h @@ -27,6 +27,8 @@ #define CONFIG_INITRD_TAG #define CONFIG_REVISION_TAG
+#define CONFIG_SYS_GENERIC_BOARD + /* Size of malloc() pool */ #define CONFIG_SYS_MALLOC_LEN (2 * SZ_1M)

On 22/04/2014 20:34, Fabio Estevam wrote:
Enable CONFIG_SYS_GENERIC_BOARD, so that we get rid of the following warning on boot:
"Warning: Your board does not use generic board. Please read doc/README.generic-board and take action. Boards not upgraded by the late 2014 may break or be removed."
Signed-off-by: Fabio Estevam fabio.estevam@freescale.com
include/configs/wandboard.h | 2 ++ 1 file changed, 2 insertions(+)
diff --git a/include/configs/wandboard.h b/include/configs/wandboard.h index 6c74c72..b137d06 100644 --- a/include/configs/wandboard.h +++ b/include/configs/wandboard.h @@ -26,6 +26,8 @@ #define CONFIG_INITRD_TAG #define CONFIG_REVISION_TAG
+#define CONFIG_SYS_GENERIC_BOARD
/* Size of malloc() pool */ #define CONFIG_SYS_MALLOC_LEN (10 * SZ_1M)
Put the patchset in my queue, it will be merged in my next iteration.
Regards, Stefano

Hi Fabio,
On 22/04/2014 20:34, Fabio Estevam wrote:
Enable CONFIG_SYS_GENERIC_BOARD, so that we get rid of the following warning on boot:
"Warning: Your board does not use generic board. Please read doc/README.generic-board and take action. Boards not upgraded by the late 2014 may break or be removed."
Signed-off-by: Fabio Estevam fabio.estevam@freescale.com
include/configs/wandboard.h | 2 ++ 1 file changed, 2 insertions(+)
diff --git a/include/configs/wandboard.h b/include/configs/wandboard.h index 6c74c72..b137d06 100644 --- a/include/configs/wandboard.h +++ b/include/configs/wandboard.h @@ -26,6 +26,8 @@ #define CONFIG_INITRD_TAG #define CONFIG_REVISION_TAG
+#define CONFIG_SYS_GENERIC_BOARD
Applied (whole patchset) to u-boot-imx, thanks !
Best regards, Stefano Babic

Hi Stefano,
On Mon, Apr 28, 2014 at 5:57 AM, Stefano Babic sbabic@denx.de wrote:
Applied (whole patchset) to u-boot-imx, thanks !
Could you please rebase your tree against 2014.04? Actually it is still at 2014.04-rc3.
Regards,
Fabio Estevam

Hi Fabio,
On 29/04/2014 17:02, Fabio Estevam wrote:
Hi Stefano,
On Mon, Apr 28, 2014 at 5:57 AM, Stefano Babic sbabic@denx.de wrote:
Applied (whole patchset) to u-boot-imx, thanks !
Could you please rebase your tree against 2014.04? Actually it is still at 2014.04-rc3.
Sorry for that, done !
Regards, Stefano Babic
participants (3)
-
Fabio Estevam
-
Fabio Estevam
-
Stefano Babic