public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [U-Boot] [PATCH 1/3] tbs2910: use full name in Kconfig board selection
@ 2015-08-13 19:08 Soeren Moch
  2015-08-13 19:08 ` [U-Boot] [PATCH 2/3] tbs2910: remove deprecated CONFIG_SYS_EXTRA_OPTIONS Soeren Moch
                   ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: Soeren Moch @ 2015-08-13 19:08 UTC (permalink / raw)
  To: u-boot

Signed-off-by: Soeren Moch <smoch@web.de>
---
Cc: Stefano Babic <sbabic@denx.de>
---
 arch/arm/cpu/armv7/mx6/Kconfig | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/arm/cpu/armv7/mx6/Kconfig b/arch/arm/cpu/armv7/mx6/Kconfig
index c43cea8..3fc7532 100644
--- a/arch/arm/cpu/armv7/mx6/Kconfig
+++ b/arch/arm/cpu/armv7/mx6/Kconfig
@@ -129,7 +129,7 @@ config TARGET_SECOMX6
 	bool "secomx6 boards"
 
 config TARGET_TBS2910
-	bool "tbs2910"
+	bool "TBS2910 Matrix ARM mini PC"
 	select CPU_V7
 
 config TARGET_TITANIUM
-- 
1.9.1

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

* [U-Boot] [PATCH 2/3] tbs2910: remove deprecated CONFIG_SYS_EXTRA_OPTIONS
  2015-08-13 19:08 [U-Boot] [PATCH 1/3] tbs2910: use full name in Kconfig board selection Soeren Moch
@ 2015-08-13 19:08 ` Soeren Moch
  2015-08-13 19:08 ` [U-Boot] [PATCH 3/3] tbs2910: remove SYS_SOC from board specific Kconfig Soeren Moch
  2015-08-28 13:05 ` [U-Boot] [PATCH 1/3] tbs2910: use full name in Kconfig board selection Soeren Moch
  2 siblings, 0 replies; 5+ messages in thread
From: Soeren Moch @ 2015-08-13 19:08 UTC (permalink / raw)
  To: u-boot

move options from CONFIG_SYS_EXTRA_OPTIONS to board specific Kconfig

Signed-off-by: Soeren Moch <smoch@web.de>
---
Cc: Stefano Babic <sbabic@denx.de>
---
 board/tbs/tbs2910/Kconfig | 6 ++++++
 configs/tbs2910_defconfig | 1 -
 2 files changed, 6 insertions(+), 1 deletion(-)

diff --git a/board/tbs/tbs2910/Kconfig b/board/tbs/tbs2910/Kconfig
index 84b243e..a795837 100644
--- a/board/tbs/tbs2910/Kconfig
+++ b/board/tbs/tbs2910/Kconfig
@@ -12,4 +12,10 @@ config SYS_SOC
 config SYS_CONFIG_NAME
 	default "tbs2910"
 
+config MX6Q
+	default y
+
+config IMX_CONFIG
+	default "board/boundary/nitrogen6x/nitrogen6q2g.cfg"
+
 endif
diff --git a/configs/tbs2910_defconfig b/configs/tbs2910_defconfig
index 1e20d29..2e86d8e 100644
--- a/configs/tbs2910_defconfig
+++ b/configs/tbs2910_defconfig
@@ -1,7 +1,6 @@
 CONFIG_ARM=y
 CONFIG_ARCH_MX6=y
 CONFIG_TARGET_TBS2910=y
-CONFIG_SYS_EXTRA_OPTIONS="IMX_CONFIG=board/boundary/nitrogen6x/nitrogen6q2g.cfg,MX6Q"
 # CONFIG_CMD_IMLS is not set
 # CONFIG_CMD_FLASH is not set
 CONFIG_DM=y
-- 
1.9.1

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

* [U-Boot] [PATCH 3/3] tbs2910: remove SYS_SOC from board specific Kconfig
  2015-08-13 19:08 [U-Boot] [PATCH 1/3] tbs2910: use full name in Kconfig board selection Soeren Moch
  2015-08-13 19:08 ` [U-Boot] [PATCH 2/3] tbs2910: remove deprecated CONFIG_SYS_EXTRA_OPTIONS Soeren Moch
@ 2015-08-13 19:08 ` Soeren Moch
  2015-08-28 13:05 ` [U-Boot] [PATCH 1/3] tbs2910: use full name in Kconfig board selection Soeren Moch
  2 siblings, 0 replies; 5+ messages in thread
From: Soeren Moch @ 2015-08-13 19:08 UTC (permalink / raw)
  To: u-boot

SYS_SOC is already defined in arch/arm/cpu/armv7/mx6/Kconfig, no need to
define it again

Signed-off-by: Soeren Moch <smoch@web.de>
---
Cc: Stefano Babic <sbabic@denx.de>
---
 board/tbs/tbs2910/Kconfig | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/board/tbs/tbs2910/Kconfig b/board/tbs/tbs2910/Kconfig
index a795837..55c475c 100644
--- a/board/tbs/tbs2910/Kconfig
+++ b/board/tbs/tbs2910/Kconfig
@@ -6,9 +6,6 @@ config SYS_BOARD
 config SYS_VENDOR
 	default "tbs"
 
-config SYS_SOC
-	default "mx6"
-
 config SYS_CONFIG_NAME
 	default "tbs2910"
 
-- 
1.9.1

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

* [U-Boot] [PATCH 1/3] tbs2910: use full name in Kconfig board selection
  2015-08-13 19:08 [U-Boot] [PATCH 1/3] tbs2910: use full name in Kconfig board selection Soeren Moch
  2015-08-13 19:08 ` [U-Boot] [PATCH 2/3] tbs2910: remove deprecated CONFIG_SYS_EXTRA_OPTIONS Soeren Moch
  2015-08-13 19:08 ` [U-Boot] [PATCH 3/3] tbs2910: remove SYS_SOC from board specific Kconfig Soeren Moch
@ 2015-08-28 13:05 ` Soeren Moch
  2015-08-31 16:44   ` Stefano Babic
  2 siblings, 1 reply; 5+ messages in thread
From: Soeren Moch @ 2015-08-28 13:05 UTC (permalink / raw)
  To: u-boot

On 08/13/15 21:08, Soeren Moch wrote:
> Signed-off-by: Soeren Moch <smoch@web.de>
> ---
> Cc: Stefano Babic <sbabic@denx.de>
> ---
>   arch/arm/cpu/armv7/mx6/Kconfig | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/arch/arm/cpu/armv7/mx6/Kconfig b/arch/arm/cpu/armv7/mx6/Kconfig
> index c43cea8..3fc7532 100644
> --- a/arch/arm/cpu/armv7/mx6/Kconfig
> +++ b/arch/arm/cpu/armv7/mx6/Kconfig
> @@ -129,7 +129,7 @@ config TARGET_SECOMX6
>   	bool "secomx6 boards"
>   
>   config TARGET_TBS2910
> -	bool "tbs2910"
> +	bool "TBS2910 Matrix ARM mini PC"
>   	select CPU_V7
>   
>   config TARGET_TITANIUM

Stefano,

this patch series seems to be assigned to Tom in patchwork,
but I think this should go through u-boot-imx. Can you pick up
this series, please?

Thanks,
Soeren

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

* [U-Boot] [PATCH 1/3] tbs2910: use full name in Kconfig board selection
  2015-08-28 13:05 ` [U-Boot] [PATCH 1/3] tbs2910: use full name in Kconfig board selection Soeren Moch
@ 2015-08-31 16:44   ` Stefano Babic
  0 siblings, 0 replies; 5+ messages in thread
From: Stefano Babic @ 2015-08-31 16:44 UTC (permalink / raw)
  To: u-boot

On 28/08/2015 15:05, Soeren Moch wrote:
> On 08/13/15 21:08, Soeren Moch wrote:
>> Signed-off-by: Soeren Moch <smoch@web.de>
>> ---
>> Cc: Stefano Babic <sbabic@denx.de>
>> ---
>>   arch/arm/cpu/armv7/mx6/Kconfig | 2 +-
>>   1 file changed, 1 insertion(+), 1 deletion(-)
>>
>> diff --git a/arch/arm/cpu/armv7/mx6/Kconfig
>> b/arch/arm/cpu/armv7/mx6/Kconfig
>> index c43cea8..3fc7532 100644
>> --- a/arch/arm/cpu/armv7/mx6/Kconfig
>> +++ b/arch/arm/cpu/armv7/mx6/Kconfig
>> @@ -129,7 +129,7 @@ config TARGET_SECOMX6
>>       bool "secomx6 boards"
>>     config TARGET_TBS2910
>> -    bool "tbs2910"
>> +    bool "TBS2910 Matrix ARM mini PC"
>>       select CPU_V7
>>     config TARGET_TITANIUM
> 
> Stefano,
> 
> this patch series seems to be assigned to Tom in patchwork,
> but I think this should go through u-boot-imx. Can you pick up
> this series, please?

Applied to u-boot-imx, thanks!

Best regards,
Stefano Babic

-- 
=====================================================================
DENX Software Engineering GmbH,      Managing Director: Wolfgang Denk
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: +49-8142-66989-53 Fax: +49-8142-66989-80 Email: sbabic at denx.de
=====================================================================

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

end of thread, other threads:[~2015-08-31 16:44 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-08-13 19:08 [U-Boot] [PATCH 1/3] tbs2910: use full name in Kconfig board selection Soeren Moch
2015-08-13 19:08 ` [U-Boot] [PATCH 2/3] tbs2910: remove deprecated CONFIG_SYS_EXTRA_OPTIONS Soeren Moch
2015-08-13 19:08 ` [U-Boot] [PATCH 3/3] tbs2910: remove SYS_SOC from board specific Kconfig Soeren Moch
2015-08-28 13:05 ` [U-Boot] [PATCH 1/3] tbs2910: use full name in Kconfig board selection Soeren Moch
2015-08-31 16:44   ` Stefano Babic

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