All of lore.kernel.org
 help / color / mirror / Atom feed
* [U-Boot] [PATCH 1/3] omap3_evm_common.h: Switch to SYS_GENERIC_BOARD
@ 2015-09-03 18:54 Tom Rini
  2015-09-03 18:54 ` [U-Boot] [PATCH 2/3] ti814x_evm: " Tom Rini
                   ` (3 more replies)
  0 siblings, 4 replies; 9+ messages in thread
From: Tom Rini @ 2015-09-03 18:54 UTC (permalink / raw)
  To: u-boot

Tested on my OMAP3 uEVM.

Signed-off-by: Tom Rini <trini@konsulko.com>
---
 include/configs/omap3_evm_common.h |    1 +
 1 file changed, 1 insertion(+)

diff --git a/include/configs/omap3_evm_common.h b/include/configs/omap3_evm_common.h
index 7e7f6f2..0ebe5c1 100644
--- a/include/configs/omap3_evm_common.h
+++ b/include/configs/omap3_evm_common.h
@@ -15,6 +15,7 @@
 #define CONFIG_OMAP			/* This is TI OMAP core */
 #define CONFIG_OMAP_GPIO
 #define CONFIG_OMAP_COMMON
+#define CONFIG_SYS_GENERIC_BOARD
 /* Common ARM Erratas */
 #define CONFIG_ARM_ERRATA_454179
 #define CONFIG_ARM_ERRATA_430973
-- 
1.7.9.5

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

* [U-Boot] [PATCH 2/3] ti814x_evm: Switch to SYS_GENERIC_BOARD
  2015-09-03 18:54 [U-Boot] [PATCH 1/3] omap3_evm_common.h: Switch to SYS_GENERIC_BOARD Tom Rini
@ 2015-09-03 18:54 ` Tom Rini
  2015-09-13 14:40   ` Simon Glass
  2015-09-15 21:33   ` [U-Boot] [U-Boot,2/3] " Tom Rini
  2015-09-03 18:54 ` [U-Boot] [PATCH 3/3] ti816x: " Tom Rini
                   ` (2 subsequent siblings)
  3 siblings, 2 replies; 9+ messages in thread
From: Tom Rini @ 2015-09-03 18:54 UTC (permalink / raw)
  To: u-boot

Take over maintainership as well.  Not tested as PG2.0 (which I have)
needs additional work over PG1.0 (which Matt has).

Cc: Matt Porter <mporter@konsulko.com>
Signed-off-by: Tom Rini <trini@konsulko.com>
---
 board/ti/ti814x/MAINTAINERS  |    2 +-
 include/configs/ti814x_evm.h |    1 +
 2 files changed, 2 insertions(+), 1 deletion(-)

diff --git a/board/ti/ti814x/MAINTAINERS b/board/ti/ti814x/MAINTAINERS
index e39b253..b2ee39e 100644
--- a/board/ti/ti814x/MAINTAINERS
+++ b/board/ti/ti814x/MAINTAINERS
@@ -1,5 +1,5 @@
 TI814X BOARD
-M:	Matt Porter <matt.porter@linaro.org>
+M:	Tom Rini <trini@konsulko.com>
 S:	Maintained
 F:	board/ti/ti814x/
 F:	include/configs/ti814x_evm.h
diff --git a/include/configs/ti814x_evm.h b/include/configs/ti814x_evm.h
index 7fa35a1..ceeb7fe 100644
--- a/include/configs/ti814x_evm.h
+++ b/include/configs/ti814x_evm.h
@@ -21,6 +21,7 @@
 #define CONFIG_SYS_NO_FLASH
 #define CONFIG_OMAP
 #define CONFIG_OMAP_COMMON
+#define CONFIG_SYS_GENERIC_BOARD
 
 #include <asm/arch/omap.h>
 
-- 
1.7.9.5

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

* [U-Boot] [PATCH 3/3] ti816x: Switch to SYS_GENERIC_BOARD
  2015-09-03 18:54 [U-Boot] [PATCH 1/3] omap3_evm_common.h: Switch to SYS_GENERIC_BOARD Tom Rini
  2015-09-03 18:54 ` [U-Boot] [PATCH 2/3] ti814x_evm: " Tom Rini
@ 2015-09-03 18:54 ` Tom Rini
  2015-09-13 14:40   ` Simon Glass
  2015-09-15 21:33   ` [U-Boot] [U-Boot,3/3] " Tom Rini
  2015-09-13 14:40 ` [U-Boot] [PATCH 1/3] omap3_evm_common.h: " Simon Glass
  2015-09-15 21:33 ` [U-Boot] [U-Boot, " Tom Rini
  3 siblings, 2 replies; 9+ messages in thread
From: Tom Rini @ 2015-09-03 18:54 UTC (permalink / raw)
  To: u-boot

Tested on my TI186x rev E. (PG2.0) and take over maintainership.

Signed-off-by: Tom Rini <trini@konsulko.com>
---
 board/ti/ti816x/MAINTAINERS  |    2 +-
 include/configs/ti816x_evm.h |    1 +
 2 files changed, 2 insertions(+), 1 deletion(-)

diff --git a/board/ti/ti816x/MAINTAINERS b/board/ti/ti816x/MAINTAINERS
index d3de144..fd9a98f 100644
--- a/board/ti/ti816x/MAINTAINERS
+++ b/board/ti/ti816x/MAINTAINERS
@@ -1,5 +1,5 @@
 TI816X BOARD
-#M:	-
+M:	Tom Rini <trini@konsulko.com>
 S:	Maintained
 F:	board/ti/ti816x/
 F:	include/configs/ti816x_evm.h
diff --git a/include/configs/ti816x_evm.h b/include/configs/ti816x_evm.h
index 01d8233..4c19289 100644
--- a/include/configs/ti816x_evm.h
+++ b/include/configs/ti816x_evm.h
@@ -15,6 +15,7 @@
 #define CONFIG_SYS_NO_FLASH
 #define CONFIG_OMAP
 #define CONFIG_OMAP_COMMON
+#define CONFIG_SYS_GENERIC_BOARD
 
 #define CONFIG_ARCH_CPU_INIT
 
-- 
1.7.9.5

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

* [U-Boot] [PATCH 2/3] ti814x_evm: Switch to SYS_GENERIC_BOARD
  2015-09-03 18:54 ` [U-Boot] [PATCH 2/3] ti814x_evm: " Tom Rini
@ 2015-09-13 14:40   ` Simon Glass
  2015-09-15 21:33   ` [U-Boot] [U-Boot,2/3] " Tom Rini
  1 sibling, 0 replies; 9+ messages in thread
From: Simon Glass @ 2015-09-13 14:40 UTC (permalink / raw)
  To: u-boot

On 3 September 2015 at 11:54, Tom Rini <trini@konsulko.com> wrote:
> Take over maintainership as well.  Not tested as PG2.0 (which I have)
> needs additional work over PG1.0 (which Matt has).
>
> Cc: Matt Porter <mporter@konsulko.com>
> Signed-off-by: Tom Rini <trini@konsulko.com>
> ---
>  board/ti/ti814x/MAINTAINERS  |    2 +-
>  include/configs/ti814x_evm.h |    1 +
>  2 files changed, 2 insertions(+), 1 deletion(-)

Reviewed-by: Simon Glass <sjg@chromium.org>
Build-tested also:
Tested-by: Simon Glass <sjg@chromium.org>

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

* [U-Boot] [PATCH 1/3] omap3_evm_common.h: Switch to SYS_GENERIC_BOARD
  2015-09-03 18:54 [U-Boot] [PATCH 1/3] omap3_evm_common.h: Switch to SYS_GENERIC_BOARD Tom Rini
  2015-09-03 18:54 ` [U-Boot] [PATCH 2/3] ti814x_evm: " Tom Rini
  2015-09-03 18:54 ` [U-Boot] [PATCH 3/3] ti816x: " Tom Rini
@ 2015-09-13 14:40 ` Simon Glass
  2015-09-15 21:33 ` [U-Boot] [U-Boot, " Tom Rini
  3 siblings, 0 replies; 9+ messages in thread
From: Simon Glass @ 2015-09-13 14:40 UTC (permalink / raw)
  To: u-boot

On 3 September 2015 at 11:54, Tom Rini <trini@konsulko.com> wrote:
> Tested on my OMAP3 uEVM.
>
> Signed-off-by: Tom Rini <trini@konsulko.com>
> ---
>  include/configs/omap3_evm_common.h |    1 +
>  1 file changed, 1 insertion(+)
>

Reviewed-by: Simon Glass <sjg@chromium.org>
Build-tested also:
Tested-by: Simon Glass <sjg@chromium.org>

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

* [U-Boot] [PATCH 3/3] ti816x: Switch to SYS_GENERIC_BOARD
  2015-09-03 18:54 ` [U-Boot] [PATCH 3/3] ti816x: " Tom Rini
@ 2015-09-13 14:40   ` Simon Glass
  2015-09-15 21:33   ` [U-Boot] [U-Boot,3/3] " Tom Rini
  1 sibling, 0 replies; 9+ messages in thread
From: Simon Glass @ 2015-09-13 14:40 UTC (permalink / raw)
  To: u-boot

On 3 September 2015 at 11:54, Tom Rini <trini@konsulko.com> wrote:
> Tested on my TI186x rev E. (PG2.0) and take over maintainership.
>
> Signed-off-by: Tom Rini <trini@konsulko.com>
> ---
>  board/ti/ti816x/MAINTAINERS  |    2 +-
>  include/configs/ti816x_evm.h |    1 +
>  2 files changed, 2 insertions(+), 1 deletion(-)

Reviewed-by: Simon Glass <sjg@chromium.org>
Build-tested also:
Tested-by: Simon Glass <sjg@chromium.org>

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

* [U-Boot] [U-Boot, 1/3] omap3_evm_common.h: Switch to SYS_GENERIC_BOARD
  2015-09-03 18:54 [U-Boot] [PATCH 1/3] omap3_evm_common.h: Switch to SYS_GENERIC_BOARD Tom Rini
                   ` (2 preceding siblings ...)
  2015-09-13 14:40 ` [U-Boot] [PATCH 1/3] omap3_evm_common.h: " Simon Glass
@ 2015-09-15 21:33 ` Tom Rini
  3 siblings, 0 replies; 9+ messages in thread
From: Tom Rini @ 2015-09-15 21:33 UTC (permalink / raw)
  To: u-boot

On Thu, Sep 03, 2015 at 02:54:02PM -0400, Tom Rini wrote:

> Tested on my OMAP3 uEVM.
> 
> Signed-off-by: Tom Rini <trini@konsulko.com>
> Reviewed-by: Simon Glass <sjg@chromium.org>
> Tested-by: Simon Glass <sjg@chromium.org>

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/20150915/c854c0c0/attachment.sig>

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

* [U-Boot] [U-Boot,2/3] ti814x_evm: Switch to SYS_GENERIC_BOARD
  2015-09-03 18:54 ` [U-Boot] [PATCH 2/3] ti814x_evm: " Tom Rini
  2015-09-13 14:40   ` Simon Glass
@ 2015-09-15 21:33   ` Tom Rini
  1 sibling, 0 replies; 9+ messages in thread
From: Tom Rini @ 2015-09-15 21:33 UTC (permalink / raw)
  To: u-boot

On Thu, Sep 03, 2015 at 02:54:03PM -0400, Tom Rini wrote:

> Take over maintainership as well.  Not tested as PG2.0 (which I have)
> needs additional work over PG1.0 (which Matt has).
> 
> Cc: Matt Porter <mporter@konsulko.com>
> Signed-off-by: Tom Rini <trini@konsulko.com>
> Reviewed-by: Simon Glass <sjg@chromium.org>
> Tested-by: Simon Glass <sjg@chromium.org>

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/20150915/db290b3b/attachment.sig>

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

* [U-Boot] [U-Boot,3/3] ti816x: Switch to SYS_GENERIC_BOARD
  2015-09-03 18:54 ` [U-Boot] [PATCH 3/3] ti816x: " Tom Rini
  2015-09-13 14:40   ` Simon Glass
@ 2015-09-15 21:33   ` Tom Rini
  1 sibling, 0 replies; 9+ messages in thread
From: Tom Rini @ 2015-09-15 21:33 UTC (permalink / raw)
  To: u-boot

On Thu, Sep 03, 2015 at 02:54:04PM -0400, Tom Rini wrote:

> Tested on my TI186x rev E. (PG2.0) and take over maintainership.
> 
> Signed-off-by: Tom Rini <trini@konsulko.com>
> Reviewed-by: Simon Glass <sjg@chromium.org>
> Tested-by: Simon Glass <sjg@chromium.org>

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/20150915/72b96dc7/attachment.sig>

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

end of thread, other threads:[~2015-09-15 21:33 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-09-03 18:54 [U-Boot] [PATCH 1/3] omap3_evm_common.h: Switch to SYS_GENERIC_BOARD Tom Rini
2015-09-03 18:54 ` [U-Boot] [PATCH 2/3] ti814x_evm: " Tom Rini
2015-09-13 14:40   ` Simon Glass
2015-09-15 21:33   ` [U-Boot] [U-Boot,2/3] " Tom Rini
2015-09-03 18:54 ` [U-Boot] [PATCH 3/3] ti816x: " Tom Rini
2015-09-13 14:40   ` Simon Glass
2015-09-15 21:33   ` [U-Boot] [U-Boot,3/3] " Tom Rini
2015-09-13 14:40 ` [U-Boot] [PATCH 1/3] omap3_evm_common.h: " Simon Glass
2015-09-15 21:33 ` [U-Boot] [U-Boot, " Tom Rini

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.