public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [U-Boot] [PATCH] ARM: remove redudant information from Kconfig files
@ 2014-12-19  5:27 Masahiro Yamada
  2014-12-19  5:31 ` Bo Shen
  2015-01-12 20:11 ` [U-Boot] " Tom Rini
  0 siblings, 2 replies; 3+ messages in thread
From: Masahiro Yamada @ 2014-12-19  5:27 UTC (permalink / raw)
  To: u-boot

 - "string" type for SYS_* is defined in arch/Kconfig
 - SYS_CPU "armv7" has been replaced with "select CPU_V7"
 - SYS_SOC "tegra124" is already defined in tegra124/Kconfig

Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com>
---

 board/atmel/sama5d4_xplained/Kconfig |  3 ---
 board/atmel/sama5d4ek/Kconfig        |  3 ---
 board/nvidia/nyan-big/Kconfig        | 12 ------------
 board/samsung/smdk5420/Kconfig       |  3 ---
 board/st/stv0991/Kconfig             |  8 --------
 board/sunxi/Kconfig                  |  1 -
 6 files changed, 30 deletions(-)

diff --git a/board/atmel/sama5d4_xplained/Kconfig b/board/atmel/sama5d4_xplained/Kconfig
index f6440c0..f320a68 100644
--- a/board/atmel/sama5d4_xplained/Kconfig
+++ b/board/atmel/sama5d4_xplained/Kconfig
@@ -1,8 +1,5 @@
 if TARGET_SAMA5D4_XPLAINED
 
-config SYS_CPU
-	default "armv7"
-
 config SYS_BOARD
 	default "sama5d4_xplained"
 
diff --git a/board/atmel/sama5d4ek/Kconfig b/board/atmel/sama5d4ek/Kconfig
index a889895..7dc569c 100644
--- a/board/atmel/sama5d4ek/Kconfig
+++ b/board/atmel/sama5d4ek/Kconfig
@@ -1,8 +1,5 @@
 if TARGET_SAMA5D4EK
 
-config SYS_CPU
-	default "armv7"
-
 config SYS_BOARD
 	default "sama5d4ek"
 
diff --git a/board/nvidia/nyan-big/Kconfig b/board/nvidia/nyan-big/Kconfig
index 6c42bb9..341c8d7 100644
--- a/board/nvidia/nyan-big/Kconfig
+++ b/board/nvidia/nyan-big/Kconfig
@@ -1,24 +1,12 @@
 if TARGET_NYAN_BIG
 
-config SYS_CPU
-	string
-	default "arm720t" if SPL_BUILD
-	default "armv7" if !SPL_BUILD
-
 config SYS_BOARD
-	string
 	default "nyan-big"
 
 config SYS_VENDOR
-	string
 	default "nvidia"
 
-config SYS_SOC
-	string
-	default "tegra124"
-
 config SYS_CONFIG_NAME
-	string
 	default "nyan-big"
 
 endif
diff --git a/board/samsung/smdk5420/Kconfig b/board/samsung/smdk5420/Kconfig
index e7aafe5..2f382cd 100644
--- a/board/samsung/smdk5420/Kconfig
+++ b/board/samsung/smdk5420/Kconfig
@@ -1,15 +1,12 @@
 if TARGET_PEACH_PI
 
 config SYS_BOARD
-	string
 	default "smdk5420"
 
 config SYS_VENDOR
-	string
 	default "samsung"
 
 config SYS_CONFIG_NAME
-	string
 	default "peach-pi"
 
 endif
diff --git a/board/st/stv0991/Kconfig b/board/st/stv0991/Kconfig
index 8bda349..007712f 100644
--- a/board/st/stv0991/Kconfig
+++ b/board/st/stv0991/Kconfig
@@ -1,23 +1,15 @@
 if TARGET_STV0991
 
-config SYS_CPU
-	string
-	default "armv7"
-
 config SYS_BOARD
-	string
 	default "stv0991"
 
 config SYS_VENDOR
-	string
 	default "st"
 
 config SYS_SOC
-	string
 	default "stv0991"
 
 config SYS_CONFIG_NAME
-	string
 	default "stv0991"
 
 endif
diff --git a/board/sunxi/Kconfig b/board/sunxi/Kconfig
index 246cd9a..5ae491d 100644
--- a/board/sunxi/Kconfig
+++ b/board/sunxi/Kconfig
@@ -33,7 +33,6 @@ config MACH_SUN8I
 endchoice
 
 config SYS_CONFIG_NAME
-	string
 	default "sun4i" if MACH_SUN4I
 	default "sun5i" if MACH_SUN5I
 	default "sun6i" if MACH_SUN6I
-- 
1.9.1

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

* [U-Boot] [PATCH] ARM: remove redudant information from Kconfig files
  2014-12-19  5:27 [U-Boot] [PATCH] ARM: remove redudant information from Kconfig files Masahiro Yamada
@ 2014-12-19  5:31 ` Bo Shen
  2015-01-12 20:11 ` [U-Boot] " Tom Rini
  1 sibling, 0 replies; 3+ messages in thread
From: Bo Shen @ 2014-12-19  5:31 UTC (permalink / raw)
  To: u-boot

Hi Masahiro Yamada,

On 12/19/2014 01:27 PM, Masahiro Yamada wrote:
>   - "string" type for SYS_* is defined in arch/Kconfig
>   - SYS_CPU "armv7" has been replaced with "select CPU_V7"
>   - SYS_SOC "tegra124" is already defined in tegra124/Kconfig
>
> Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com>

For sama5d4ek and sama5d4 xplained board.
Acked-by: Bo Shen <voice.shen@atmel.com>

> ---
>
>   board/atmel/sama5d4_xplained/Kconfig |  3 ---
>   board/atmel/sama5d4ek/Kconfig        |  3 ---
>   board/nvidia/nyan-big/Kconfig        | 12 ------------
>   board/samsung/smdk5420/Kconfig       |  3 ---
>   board/st/stv0991/Kconfig             |  8 --------
>   board/sunxi/Kconfig                  |  1 -
>   6 files changed, 30 deletions(-)
>
> diff --git a/board/atmel/sama5d4_xplained/Kconfig b/board/atmel/sama5d4_xplained/Kconfig
> index f6440c0..f320a68 100644
> --- a/board/atmel/sama5d4_xplained/Kconfig
> +++ b/board/atmel/sama5d4_xplained/Kconfig
> @@ -1,8 +1,5 @@
>   if TARGET_SAMA5D4_XPLAINED
>
> -config SYS_CPU
> -	default "armv7"
> -
>   config SYS_BOARD
>   	default "sama5d4_xplained"
>
> diff --git a/board/atmel/sama5d4ek/Kconfig b/board/atmel/sama5d4ek/Kconfig
> index a889895..7dc569c 100644
> --- a/board/atmel/sama5d4ek/Kconfig
> +++ b/board/atmel/sama5d4ek/Kconfig
> @@ -1,8 +1,5 @@
>   if TARGET_SAMA5D4EK
>
> -config SYS_CPU
> -	default "armv7"
> -
>   config SYS_BOARD
>   	default "sama5d4ek"
>
> diff --git a/board/nvidia/nyan-big/Kconfig b/board/nvidia/nyan-big/Kconfig
> index 6c42bb9..341c8d7 100644
> --- a/board/nvidia/nyan-big/Kconfig
> +++ b/board/nvidia/nyan-big/Kconfig
> @@ -1,24 +1,12 @@
>   if TARGET_NYAN_BIG
>
> -config SYS_CPU
> -	string
> -	default "arm720t" if SPL_BUILD
> -	default "armv7" if !SPL_BUILD
> -
>   config SYS_BOARD
> -	string
>   	default "nyan-big"
>
>   config SYS_VENDOR
> -	string
>   	default "nvidia"
>
> -config SYS_SOC
> -	string
> -	default "tegra124"
> -
>   config SYS_CONFIG_NAME
> -	string
>   	default "nyan-big"
>
>   endif
> diff --git a/board/samsung/smdk5420/Kconfig b/board/samsung/smdk5420/Kconfig
> index e7aafe5..2f382cd 100644
> --- a/board/samsung/smdk5420/Kconfig
> +++ b/board/samsung/smdk5420/Kconfig
> @@ -1,15 +1,12 @@
>   if TARGET_PEACH_PI
>
>   config SYS_BOARD
> -	string
>   	default "smdk5420"
>
>   config SYS_VENDOR
> -	string
>   	default "samsung"
>
>   config SYS_CONFIG_NAME
> -	string
>   	default "peach-pi"
>
>   endif
> diff --git a/board/st/stv0991/Kconfig b/board/st/stv0991/Kconfig
> index 8bda349..007712f 100644
> --- a/board/st/stv0991/Kconfig
> +++ b/board/st/stv0991/Kconfig
> @@ -1,23 +1,15 @@
>   if TARGET_STV0991
>
> -config SYS_CPU
> -	string
> -	default "armv7"
> -
>   config SYS_BOARD
> -	string
>   	default "stv0991"
>
>   config SYS_VENDOR
> -	string
>   	default "st"
>
>   config SYS_SOC
> -	string
>   	default "stv0991"
>
>   config SYS_CONFIG_NAME
> -	string
>   	default "stv0991"
>
>   endif
> diff --git a/board/sunxi/Kconfig b/board/sunxi/Kconfig
> index 246cd9a..5ae491d 100644
> --- a/board/sunxi/Kconfig
> +++ b/board/sunxi/Kconfig
> @@ -33,7 +33,6 @@ config MACH_SUN8I
>   endchoice
>
>   config SYS_CONFIG_NAME
> -	string
>   	default "sun4i" if MACH_SUN4I
>   	default "sun5i" if MACH_SUN5I
>   	default "sun6i" if MACH_SUN6I
>

Best Regards,
Bo Shen

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

* [U-Boot] ARM: remove redudant information from Kconfig files
  2014-12-19  5:27 [U-Boot] [PATCH] ARM: remove redudant information from Kconfig files Masahiro Yamada
  2014-12-19  5:31 ` Bo Shen
@ 2015-01-12 20:11 ` Tom Rini
  1 sibling, 0 replies; 3+ messages in thread
From: Tom Rini @ 2015-01-12 20:11 UTC (permalink / raw)
  To: u-boot

On Fri, Dec 19, 2014 at 02:27:13PM +0900, Masahiro Yamada wrote:

> - "string" type for SYS_* is defined in arch/Kconfig
>  - SYS_CPU "armv7" has been replaced with "select CPU_V7"
>  - SYS_SOC "tegra124" is already defined in tegra124/Kconfig
> 
> Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com>
> Acked-by: Bo Shen <voice.shen@atmel.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/20150112/1570e695/attachment.pgp>

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

end of thread, other threads:[~2015-01-12 20:11 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-12-19  5:27 [U-Boot] [PATCH] ARM: remove redudant information from Kconfig files Masahiro Yamada
2014-12-19  5:31 ` Bo Shen
2015-01-12 20:11 ` [U-Boot] " Tom Rini

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