public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [U-Boot] [PATCH 1/3] mx31ads: Convert to generic board
@ 2015-02-23 11:51 Fabio Estevam
  2015-02-23 11:51 ` [U-Boot] [PATCH 2/3] imx31_phycore: " Fabio Estevam
                   ` (3 more replies)
  0 siblings, 4 replies; 8+ messages in thread
From: Fabio Estevam @ 2015-02-23 11:51 UTC (permalink / raw)
  To: u-boot

Boards need to select CONFIG_SYS_GENERIC_BOARD in order to prevent removal
from the project.

Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
---
 include/configs/mx31ads.h | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/include/configs/mx31ads.h b/include/configs/mx31ads.h
index 0f4bd91..bed071f 100644
--- a/include/configs/mx31ads.h
+++ b/include/configs/mx31ads.h
@@ -14,6 +14,8 @@
  /* High Level Configuration Options */
 #define CONFIG_MX31		1		/* This is a mx31 */
 
+#define CONFIG_SYS_GENERIC_BOARD
+
 #define CONFIG_DISPLAY_CPUINFO
 #define CONFIG_DISPLAY_BOARDINFO
 
-- 
1.9.1

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

* [U-Boot] [PATCH 2/3] imx31_phycore: Convert to generic board
  2015-02-23 11:51 [U-Boot] [PATCH 1/3] mx31ads: Convert to generic board Fabio Estevam
@ 2015-02-23 11:51 ` Fabio Estevam
  2015-02-23 12:57   ` Anatolij Gustschin
  2015-02-25  0:05   ` Tom Rini
  2015-02-23 11:51 ` [U-Boot] [PATCH 3/3] zmx25: " Fabio Estevam
                   ` (2 subsequent siblings)
  3 siblings, 2 replies; 8+ messages in thread
From: Fabio Estevam @ 2015-02-23 11:51 UTC (permalink / raw)
  To: u-boot

Boards need to select CONFIG_SYS_GENERIC_BOARD in order to prevent removal
from the project.

Cc: Anatolij Gustschin <agust@denx.de>
Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
---
 include/configs/imx31_phycore.h | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/include/configs/imx31_phycore.h b/include/configs/imx31_phycore.h
index 4195fa3..49039d6 100644
--- a/include/configs/imx31_phycore.h
+++ b/include/configs/imx31_phycore.h
@@ -18,6 +18,8 @@
 #define CONFIG_MX31			/* This is a mx31 */
 #define CONFIG_MX31_CLK32	32000
 
+#define CONFIG_SYS_GENERIC_BOARD
+
 #define CONFIG_DISPLAY_CPUINFO
 #define CONFIG_DISPLAY_BOARDINFO
 
-- 
1.9.1

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

* [U-Boot] [PATCH 3/3] zmx25: Convert to generic board
  2015-02-23 11:51 [U-Boot] [PATCH 1/3] mx31ads: Convert to generic board Fabio Estevam
  2015-02-23 11:51 ` [U-Boot] [PATCH 2/3] imx31_phycore: " Fabio Estevam
@ 2015-02-23 11:51 ` Fabio Estevam
  2015-02-25  0:05   ` Tom Rini
  2015-02-23 13:10 ` [U-Boot] [PATCH 1/3] mx31ads: " Anatolij Gustschin
  2015-02-25  0:05 ` Tom Rini
  3 siblings, 1 reply; 8+ messages in thread
From: Fabio Estevam @ 2015-02-23 11:51 UTC (permalink / raw)
  To: u-boot

Boards need to select CONFIG_SYS_GENERIC_BOARD in order to prevent removal
from the project.

Cc: Matthias Weisser <weisserm@arcor.de>
Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
---
 include/configs/zmx25.h | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/include/configs/zmx25.h b/include/configs/zmx25.h
index 356ac88..342fa2c 100644
--- a/include/configs/zmx25.h
+++ b/include/configs/zmx25.h
@@ -15,6 +15,8 @@
 #define CONFIG_MX25
 #define CONFIG_SYS_TEXT_BASE		0xA0000000
 
+#define CONFIG_SYS_GENERIC_BOARD
+
 #define CONFIG_SYS_TIMER_RATE		32768
 #define CONFIG_SYS_TIMER_COUNTER	\
 	(&((struct gpt_regs *)IMX_GPT1_BASE)->counter)
-- 
1.9.1

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

* [U-Boot] [PATCH 2/3] imx31_phycore: Convert to generic board
  2015-02-23 11:51 ` [U-Boot] [PATCH 2/3] imx31_phycore: " Fabio Estevam
@ 2015-02-23 12:57   ` Anatolij Gustschin
  2015-02-25  0:05   ` Tom Rini
  1 sibling, 0 replies; 8+ messages in thread
From: Anatolij Gustschin @ 2015-02-23 12:57 UTC (permalink / raw)
  To: u-boot

On Mon, 23 Feb 2015 08:51:37 -0300
Fabio Estevam <fabio.estevam@freescale.com> wrote:

> Boards need to select CONFIG_SYS_GENERIC_BOARD in order to prevent removal
> from the project.
> 
> Cc: Anatolij Gustschin <agust@denx.de>
> Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>

Acked-by: Anatolij Gustschin <agust@denx.de>

Thanks,

Anatolij

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

* [U-Boot] [PATCH 1/3] mx31ads: Convert to generic board
  2015-02-23 11:51 [U-Boot] [PATCH 1/3] mx31ads: Convert to generic board Fabio Estevam
  2015-02-23 11:51 ` [U-Boot] [PATCH 2/3] imx31_phycore: " Fabio Estevam
  2015-02-23 11:51 ` [U-Boot] [PATCH 3/3] zmx25: " Fabio Estevam
@ 2015-02-23 13:10 ` Anatolij Gustschin
  2015-02-25  0:05 ` Tom Rini
  3 siblings, 0 replies; 8+ messages in thread
From: Anatolij Gustschin @ 2015-02-23 13:10 UTC (permalink / raw)
  To: u-boot

On Mon, 23 Feb 2015 08:51:36 -0300
Fabio Estevam <fabio.estevam@freescale.com> wrote:

> Boards need to select CONFIG_SYS_GENERIC_BOARD in order to prevent removal
> from the project.
> 
> Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>

Acked-by: Anatolij Gustschin <agust@denx.de>

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

* [U-Boot] [PATCH 1/3] mx31ads: Convert to generic board
  2015-02-23 11:51 [U-Boot] [PATCH 1/3] mx31ads: Convert to generic board Fabio Estevam
                   ` (2 preceding siblings ...)
  2015-02-23 13:10 ` [U-Boot] [PATCH 1/3] mx31ads: " Anatolij Gustschin
@ 2015-02-25  0:05 ` Tom Rini
  3 siblings, 0 replies; 8+ messages in thread
From: Tom Rini @ 2015-02-25  0:05 UTC (permalink / raw)
  To: u-boot

On Mon, Feb 23, 2015 at 08:51:36AM -0300, Fabio Estevam wrote:

> Boards need to select CONFIG_SYS_GENERIC_BOARD in order to prevent removal
> from the project.
> 
> Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>

Applied to u-boot/master, thanks!

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 836 bytes
Desc: Digital signature
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20150224/40b01549/attachment.sig>

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

* [U-Boot] [PATCH 2/3] imx31_phycore: Convert to generic board
  2015-02-23 11:51 ` [U-Boot] [PATCH 2/3] imx31_phycore: " Fabio Estevam
  2015-02-23 12:57   ` Anatolij Gustschin
@ 2015-02-25  0:05   ` Tom Rini
  1 sibling, 0 replies; 8+ messages in thread
From: Tom Rini @ 2015-02-25  0:05 UTC (permalink / raw)
  To: u-boot

On Mon, Feb 23, 2015 at 08:51:37AM -0300, Fabio Estevam wrote:

> Boards need to select CONFIG_SYS_GENERIC_BOARD in order to prevent removal
> from the project.
> 
> Cc: Anatolij Gustschin <agust@denx.de>
> Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>

Applied to u-boot/master, thanks!

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 836 bytes
Desc: Digital signature
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20150224/b13f186f/attachment.sig>

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

* [U-Boot] [PATCH 3/3] zmx25: Convert to generic board
  2015-02-23 11:51 ` [U-Boot] [PATCH 3/3] zmx25: " Fabio Estevam
@ 2015-02-25  0:05   ` Tom Rini
  0 siblings, 0 replies; 8+ messages in thread
From: Tom Rini @ 2015-02-25  0:05 UTC (permalink / raw)
  To: u-boot

On Mon, Feb 23, 2015 at 08:51:38AM -0300, Fabio Estevam wrote:

> Boards need to select CONFIG_SYS_GENERIC_BOARD in order to prevent removal
> from the project.
> 
> Cc: Matthias Weisser <weisserm@arcor.de>
> Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>

Applied to u-boot/master, thanks!

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 836 bytes
Desc: Digital signature
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20150224/74311d2a/attachment.sig>

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

end of thread, other threads:[~2015-02-25  0:05 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-02-23 11:51 [U-Boot] [PATCH 1/3] mx31ads: Convert to generic board Fabio Estevam
2015-02-23 11:51 ` [U-Boot] [PATCH 2/3] imx31_phycore: " Fabio Estevam
2015-02-23 12:57   ` Anatolij Gustschin
2015-02-25  0:05   ` Tom Rini
2015-02-23 11:51 ` [U-Boot] [PATCH 3/3] zmx25: " Fabio Estevam
2015-02-25  0:05   ` Tom Rini
2015-02-23 13:10 ` [U-Boot] [PATCH 1/3] mx31ads: " Anatolij Gustschin
2015-02-25  0:05 ` Tom Rini

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox