u-boot.lists.denx.de archive mirror
 help / color / mirror / Atom feed
* [U-Boot] [PATCH 1/4] ARM: atmel: sama5d3xek: convert to generic board
@ 2014-04-24  3:42 Bo Shen
  2014-04-24  3:42 ` [U-Boot] [PATCH 2/4] ARM: atmel: sama5d3_xplained: " Bo Shen
                   ` (4 more replies)
  0 siblings, 5 replies; 11+ messages in thread
From: Bo Shen @ 2014-04-24  3:42 UTC (permalink / raw)
  To: u-boot

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: Bo Shen <voice.shen@atmel.com>
---

 include/configs/sama5d3xek.h | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/include/configs/sama5d3xek.h b/include/configs/sama5d3xek.h
index 516be85..20a5f6e 100644
--- a/include/configs/sama5d3xek.h
+++ b/include/configs/sama5d3xek.h
@@ -34,6 +34,8 @@
 #define CONFIG_CMD_BOOTZ
 #define CONFIG_OF_LIBFDT		/* Device Tree support */
 
+#define CONFIG_SYS_GENERIC_BOARD
+
 /* general purpose I/O */
 #define CONFIG_AT91_GPIO
 
-- 
1.8.5.2

^ permalink raw reply related	[flat|nested] 11+ messages in thread

* [U-Boot] [PATCH 2/4] ARM: atmel: sama5d3_xplained: convert to generic board
  2014-04-24  3:42 [U-Boot] [PATCH 1/4] ARM: atmel: sama5d3xek: convert to generic board Bo Shen
@ 2014-04-24  3:42 ` Bo Shen
  2014-05-26 22:11   ` [U-Boot] [U-Boot,2/4] " Andreas Bießmann
  2014-04-24  3:42 ` [U-Boot] [PATCH 3/4] ARM: atmel: at91sam9m10g45ek: " Bo Shen
                   ` (3 subsequent siblings)
  4 siblings, 1 reply; 11+ messages in thread
From: Bo Shen @ 2014-04-24  3:42 UTC (permalink / raw)
  To: u-boot

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: Bo Shen <voice.shen@atmel.com>
---

 include/configs/sama5d3_xplained.h | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/include/configs/sama5d3_xplained.h b/include/configs/sama5d3_xplained.h
index 91cc7d8..07e0a68 100644
--- a/include/configs/sama5d3_xplained.h
+++ b/include/configs/sama5d3_xplained.h
@@ -28,6 +28,8 @@
 #define CONFIG_CMD_BOOTZ
 #define CONFIG_OF_LIBFDT		/* Device Tree support */
 
+#define CONFIG_SYS_GENERIC_BOARD
+
 /* general purpose I/O */
 #define CONFIG_AT91_GPIO
 
-- 
1.8.5.2

^ permalink raw reply related	[flat|nested] 11+ messages in thread

* [U-Boot] [PATCH 3/4] ARM: atmel: at91sam9m10g45ek: convert to generic board
  2014-04-24  3:42 [U-Boot] [PATCH 1/4] ARM: atmel: sama5d3xek: convert to generic board Bo Shen
  2014-04-24  3:42 ` [U-Boot] [PATCH 2/4] ARM: atmel: sama5d3_xplained: " Bo Shen
@ 2014-04-24  3:42 ` Bo Shen
  2014-05-16  8:12   ` Josh Wu
  2014-05-26 22:11   ` [U-Boot] [U-Boot,3/4] " Andreas Bießmann
  2014-04-24  3:42 ` [U-Boot] [PATCH 4/4] ARM: atmel: at91sam9x5ek: " Bo Shen
                   ` (2 subsequent siblings)
  4 siblings, 2 replies; 11+ messages in thread
From: Bo Shen @ 2014-04-24  3:42 UTC (permalink / raw)
  To: u-boot

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: Bo Shen <voice.shen@atmel.com>
---

 include/configs/at91sam9m10g45ek.h | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/include/configs/at91sam9m10g45ek.h b/include/configs/at91sam9m10g45ek.h
index ccfda71..7a3c9b5 100644
--- a/include/configs/at91sam9m10g45ek.h
+++ b/include/configs/at91sam9m10g45ek.h
@@ -34,6 +34,8 @@
 #define CONFIG_CMD_BOOTZ
 #define CONFIG_OF_LIBFDT
 
+#define CONFIG_SYS_GENERIC_BOARD
+
 /* general purpose I/O */
 #define CONFIG_ATMEL_LEGACY		/* required until (g)pio is fixed */
 #define CONFIG_AT91_GPIO
-- 
1.8.5.2

^ permalink raw reply related	[flat|nested] 11+ messages in thread

* [U-Boot] [PATCH 4/4] ARM: atmel: at91sam9x5ek: convert to generic board
  2014-04-24  3:42 [U-Boot] [PATCH 1/4] ARM: atmel: sama5d3xek: convert to generic board Bo Shen
  2014-04-24  3:42 ` [U-Boot] [PATCH 2/4] ARM: atmel: sama5d3_xplained: " Bo Shen
  2014-04-24  3:42 ` [U-Boot] [PATCH 3/4] ARM: atmel: at91sam9m10g45ek: " Bo Shen
@ 2014-04-24  3:42 ` Bo Shen
  2014-05-16  8:56   ` Josh Wu
  2014-05-26 22:11   ` [U-Boot] [U-Boot,4/4] " Andreas Bießmann
  2014-05-16  8:12 ` [U-Boot] [PATCH 1/4] ARM: atmel: sama5d3xek: " Josh Wu
  2014-05-26 22:11 ` [U-Boot] [U-Boot,1/4] " Andreas Bießmann
  4 siblings, 2 replies; 11+ messages in thread
From: Bo Shen @ 2014-04-24  3:42 UTC (permalink / raw)
  To: u-boot

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: Bo Shen <voice.shen@atmel.com>
---

 include/configs/at91sam9x5ek.h | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/include/configs/at91sam9x5ek.h b/include/configs/at91sam9x5ek.h
index f0a6757..5fc00af 100644
--- a/include/configs/at91sam9x5ek.h
+++ b/include/configs/at91sam9x5ek.h
@@ -30,6 +30,8 @@
 #define CONFIG_CMD_BOOTZ
 #define CONFIG_OF_LIBFDT
 
+#define CONFIG_SYS_GENERIC_BOARD
+
 /* general purpose I/O */
 #define CONFIG_ATMEL_LEGACY		/* required until (g)pio is fixed */
 #define CONFIG_AT91_GPIO
-- 
1.8.5.2

^ permalink raw reply related	[flat|nested] 11+ messages in thread

* [U-Boot] [PATCH 1/4] ARM: atmel: sama5d3xek: convert to generic board
  2014-04-24  3:42 [U-Boot] [PATCH 1/4] ARM: atmel: sama5d3xek: convert to generic board Bo Shen
                   ` (2 preceding siblings ...)
  2014-04-24  3:42 ` [U-Boot] [PATCH 4/4] ARM: atmel: at91sam9x5ek: " Bo Shen
@ 2014-05-16  8:12 ` Josh Wu
  2014-05-26 22:11 ` [U-Boot] [U-Boot,1/4] " Andreas Bießmann
  4 siblings, 0 replies; 11+ messages in thread
From: Josh Wu @ 2014-05-16  8:12 UTC (permalink / raw)
  To: u-boot

Hi, Voice

On 4/24/2014 11:42 AM, Bo Shen 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: Bo Shen <voice.shen@atmel.com>
> ---

Tested-by: Josh Wu <josh.wu@atmel.com>

Best Regards,
Josh Wu

>
>   include/configs/sama5d3xek.h | 2 ++
>   1 file changed, 2 insertions(+)
>
> diff --git a/include/configs/sama5d3xek.h b/include/configs/sama5d3xek.h
> index 516be85..20a5f6e 100644
> --- a/include/configs/sama5d3xek.h
> +++ b/include/configs/sama5d3xek.h
> @@ -34,6 +34,8 @@
>   #define CONFIG_CMD_BOOTZ
>   #define CONFIG_OF_LIBFDT		/* Device Tree support */
>   
> +#define CONFIG_SYS_GENERIC_BOARD
> +
>   /* general purpose I/O */
>   #define CONFIG_AT91_GPIO
>   

^ permalink raw reply	[flat|nested] 11+ messages in thread

* [U-Boot] [PATCH 3/4] ARM: atmel: at91sam9m10g45ek: convert to generic board
  2014-04-24  3:42 ` [U-Boot] [PATCH 3/4] ARM: atmel: at91sam9m10g45ek: " Bo Shen
@ 2014-05-16  8:12   ` Josh Wu
  2014-05-26 22:11   ` [U-Boot] [U-Boot,3/4] " Andreas Bießmann
  1 sibling, 0 replies; 11+ messages in thread
From: Josh Wu @ 2014-05-16  8:12 UTC (permalink / raw)
  To: u-boot

On 4/24/2014 11:42 AM, Bo Shen 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: Bo Shen <voice.shen@atmel.com>

Tested-by: Josh Wu <josh.wu@atmel.com>

Best Regards,
Josh Wu

> ---
>
>   include/configs/at91sam9m10g45ek.h | 2 ++
>   1 file changed, 2 insertions(+)
>
> diff --git a/include/configs/at91sam9m10g45ek.h b/include/configs/at91sam9m10g45ek.h
> index ccfda71..7a3c9b5 100644
> --- a/include/configs/at91sam9m10g45ek.h
> +++ b/include/configs/at91sam9m10g45ek.h
> @@ -34,6 +34,8 @@
>   #define CONFIG_CMD_BOOTZ
>   #define CONFIG_OF_LIBFDT
>   
> +#define CONFIG_SYS_GENERIC_BOARD
> +
>   /* general purpose I/O */
>   #define CONFIG_ATMEL_LEGACY		/* required until (g)pio is fixed */
>   #define CONFIG_AT91_GPIO

^ permalink raw reply	[flat|nested] 11+ messages in thread

* [U-Boot] [PATCH 4/4] ARM: atmel: at91sam9x5ek: convert to generic board
  2014-04-24  3:42 ` [U-Boot] [PATCH 4/4] ARM: atmel: at91sam9x5ek: " Bo Shen
@ 2014-05-16  8:56   ` Josh Wu
  2014-05-26 22:11   ` [U-Boot] [U-Boot,4/4] " Andreas Bießmann
  1 sibling, 0 replies; 11+ messages in thread
From: Josh Wu @ 2014-05-16  8:56 UTC (permalink / raw)
  To: u-boot

On 4/24/2014 11:42 AM, Bo Shen 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: Bo Shen <voice.shen@atmel.com>

Tested on at91sam9x35ek board.

Tested-by: Josh Wu <josh.wu@atmel.com>

Best Regards,
Josh Wu

> ---
>
>   include/configs/at91sam9x5ek.h | 2 ++
>   1 file changed, 2 insertions(+)
>
> diff --git a/include/configs/at91sam9x5ek.h b/include/configs/at91sam9x5ek.h
> index f0a6757..5fc00af 100644
> --- a/include/configs/at91sam9x5ek.h
> +++ b/include/configs/at91sam9x5ek.h
> @@ -30,6 +30,8 @@
>   #define CONFIG_CMD_BOOTZ
>   #define CONFIG_OF_LIBFDT
>   
> +#define CONFIG_SYS_GENERIC_BOARD
> +
>   /* general purpose I/O */
>   #define CONFIG_ATMEL_LEGACY		/* required until (g)pio is fixed */
>   #define CONFIG_AT91_GPIO

^ permalink raw reply	[flat|nested] 11+ messages in thread

* [U-Boot] [U-Boot,1/4] ARM: atmel: sama5d3xek: convert to generic board
  2014-04-24  3:42 [U-Boot] [PATCH 1/4] ARM: atmel: sama5d3xek: convert to generic board Bo Shen
                   ` (3 preceding siblings ...)
  2014-05-16  8:12 ` [U-Boot] [PATCH 1/4] ARM: atmel: sama5d3xek: " Josh Wu
@ 2014-05-26 22:11 ` Andreas Bießmann
  4 siblings, 0 replies; 11+ messages in thread
From: Andreas Bießmann @ 2014-05-26 22:11 UTC (permalink / raw)
  To: u-boot

Dear Bo Shen,

Bo Shen <voice.shen@atmel.com> writes:
>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: Bo Shen <voice.shen@atmel.com>
>Tested-by: Josh Wu <josh.wu@atmel.com>
>
>---
>include/configs/sama5d3xek.h | 2 ++
> 1 file changed, 2 insertions(+)

applied to u-boot-atmel/master, thanks!

Best regards,
Andreas Bie?mann

^ permalink raw reply	[flat|nested] 11+ messages in thread

* [U-Boot] [U-Boot,2/4] ARM: atmel: sama5d3_xplained: convert to generic board
  2014-04-24  3:42 ` [U-Boot] [PATCH 2/4] ARM: atmel: sama5d3_xplained: " Bo Shen
@ 2014-05-26 22:11   ` Andreas Bießmann
  0 siblings, 0 replies; 11+ messages in thread
From: Andreas Bießmann @ 2014-05-26 22:11 UTC (permalink / raw)
  To: u-boot

Dear Bo Shen,

Bo Shen <voice.shen@atmel.com> writes:
>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: Bo Shen <voice.shen@atmel.com>
>
>---
>include/configs/sama5d3_xplained.h | 2 ++
> 1 file changed, 2 insertions(+)

applied to u-boot-atmel/master, thanks!

Best regards,
Andreas Bie?mann

^ permalink raw reply	[flat|nested] 11+ messages in thread

* [U-Boot] [U-Boot,3/4] ARM: atmel: at91sam9m10g45ek: convert to generic board
  2014-04-24  3:42 ` [U-Boot] [PATCH 3/4] ARM: atmel: at91sam9m10g45ek: " Bo Shen
  2014-05-16  8:12   ` Josh Wu
@ 2014-05-26 22:11   ` Andreas Bießmann
  1 sibling, 0 replies; 11+ messages in thread
From: Andreas Bießmann @ 2014-05-26 22:11 UTC (permalink / raw)
  To: u-boot

Dear Bo Shen,

Bo Shen <voice.shen@atmel.com> writes:
>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: Bo Shen <voice.shen@atmel.com>
>Tested-by: Josh Wu <josh.wu@atmel.com>
>
>---
>include/configs/at91sam9m10g45ek.h | 2 ++
> 1 file changed, 2 insertions(+)

applied to u-boot-atmel/master, thanks!

Best regards,
Andreas Bie?mann

^ permalink raw reply	[flat|nested] 11+ messages in thread

* [U-Boot] [U-Boot,4/4] ARM: atmel: at91sam9x5ek: convert to generic board
  2014-04-24  3:42 ` [U-Boot] [PATCH 4/4] ARM: atmel: at91sam9x5ek: " Bo Shen
  2014-05-16  8:56   ` Josh Wu
@ 2014-05-26 22:11   ` Andreas Bießmann
  1 sibling, 0 replies; 11+ messages in thread
From: Andreas Bießmann @ 2014-05-26 22:11 UTC (permalink / raw)
  To: u-boot

Dear Bo Shen,

Bo Shen <voice.shen@atmel.com> writes:
>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: Bo Shen <voice.shen@atmel.com>
>Tested-by: Josh Wu <josh.wu@atmel.com>
>
>---
>include/configs/at91sam9x5ek.h | 2 ++
> 1 file changed, 2 insertions(+)

applied to u-boot-atmel/master, thanks!

Best regards,
Andreas Bie?mann

^ permalink raw reply	[flat|nested] 11+ messages in thread

end of thread, other threads:[~2014-05-26 22:11 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-04-24  3:42 [U-Boot] [PATCH 1/4] ARM: atmel: sama5d3xek: convert to generic board Bo Shen
2014-04-24  3:42 ` [U-Boot] [PATCH 2/4] ARM: atmel: sama5d3_xplained: " Bo Shen
2014-05-26 22:11   ` [U-Boot] [U-Boot,2/4] " Andreas Bießmann
2014-04-24  3:42 ` [U-Boot] [PATCH 3/4] ARM: atmel: at91sam9m10g45ek: " Bo Shen
2014-05-16  8:12   ` Josh Wu
2014-05-26 22:11   ` [U-Boot] [U-Boot,3/4] " Andreas Bießmann
2014-04-24  3:42 ` [U-Boot] [PATCH 4/4] ARM: atmel: at91sam9x5ek: " Bo Shen
2014-05-16  8:56   ` Josh Wu
2014-05-26 22:11   ` [U-Boot] [U-Boot,4/4] " Andreas Bießmann
2014-05-16  8:12 ` [U-Boot] [PATCH 1/4] ARM: atmel: sama5d3xek: " Josh Wu
2014-05-26 22:11 ` [U-Boot] [U-Boot,1/4] " 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;
as well as URLs for NNTP newsgroup(s).