diff mbox

[U-Boot,04/10] Kconfig: add CONFIG_CMD_BOOTZ

Message ID 1440600893-20542-5-git-send-email-grinberg@compulab.co.il
State Deferred
Delegated to: Tom Rini
Headers show

Commit Message

Igor Grinberg Aug. 26, 2015, 2:54 p.m. UTC
Add CONFIG_CMD_BOOTZ to the Kconfig.
Since the CONFIG_CMD_BOOTZ cannot live without the CONFIG_CMD_BOOTM,
make it select the CONFIG_CMD_BOOTM.

Signed-off-by: Igor Grinberg <grinberg@compulab.co.il>
Cc: Masahiro Yamada <yamada.masahiro@socionext.com>
Cc: Simon Glass <sjg@chromium.org>
---
 common/Kconfig | 6 ++++++
 1 file changed, 6 insertions(+)

Comments

Igor Grinberg Sept. 24, 2015, 9:57 a.m. UTC | #1
ping.

On 08/26/15 17:54, Igor Grinberg wrote:
> Add CONFIG_CMD_BOOTZ to the Kconfig.
> Since the CONFIG_CMD_BOOTZ cannot live without the CONFIG_CMD_BOOTM,
> make it select the CONFIG_CMD_BOOTM.
> 
> Signed-off-by: Igor Grinberg <grinberg@compulab.co.il>
> Cc: Masahiro Yamada <yamada.masahiro@socionext.com>
> Cc: Simon Glass <sjg@chromium.org>
> ---
>  common/Kconfig | 6 ++++++
>  1 file changed, 6 insertions(+)
> 
> diff --git a/common/Kconfig b/common/Kconfig
> index ecbf6cb..b7791bd 100644
> --- a/common/Kconfig
> +++ b/common/Kconfig
> @@ -165,6 +165,12 @@ config CMD_BOOTM
>  	help
>  	  Boot an application image from the memory.
>  
> +config CMD_BOOTZ
> +	bool "bootz"
> +	select CMD_BOOTM
> +	help
> +	  Boot a Linux kernel zImage from the memory.
> +
>  config CMD_GO
>  	bool "go"
>  	default y
>
Igor Grinberg Sept. 29, 2015, 4:25 p.m. UTC | #2
ping x2

On 09/24/15 12:57, Igor Grinberg wrote:
> ping.
> 
> On 08/26/15 17:54, Igor Grinberg wrote:
>> Add CONFIG_CMD_BOOTZ to the Kconfig.
>> Since the CONFIG_CMD_BOOTZ cannot live without the CONFIG_CMD_BOOTM,
>> make it select the CONFIG_CMD_BOOTM.
>>
>> Signed-off-by: Igor Grinberg <grinberg@compulab.co.il>
>> Cc: Masahiro Yamada <yamada.masahiro@socionext.com>
>> Cc: Simon Glass <sjg@chromium.org>
>> ---
>>  common/Kconfig | 6 ++++++
>>  1 file changed, 6 insertions(+)
>>
>> diff --git a/common/Kconfig b/common/Kconfig
>> index ecbf6cb..b7791bd 100644
>> --- a/common/Kconfig
>> +++ b/common/Kconfig
>> @@ -165,6 +165,12 @@ config CMD_BOOTM
>>  	help
>>  	  Boot an application image from the memory.
>>  
>> +config CMD_BOOTZ
>> +	bool "bootz"
>> +	select CMD_BOOTM
>> +	help
>> +	  Boot a Linux kernel zImage from the memory.
>> +
>>  config CMD_GO
>>  	bool "go"
>>  	default y
>>
>
Tom Rini Sept. 29, 2015, 5:11 p.m. UTC | #3
On Tue, Sep 29, 2015 at 07:25:02PM +0300, Igor Grinberg wrote:
> ping x2
> 
> On 09/24/15 12:57, Igor Grinberg wrote:
> > ping.
> > 
> > On 08/26/15 17:54, Igor Grinberg wrote:
> >> Add CONFIG_CMD_BOOTZ to the Kconfig.
> >> Since the CONFIG_CMD_BOOTZ cannot live without the CONFIG_CMD_BOOTM,
> >> make it select the CONFIG_CMD_BOOTM.
> >>
> >> Signed-off-by: Igor Grinberg <grinberg@compulab.co.il>
> >> Cc: Masahiro Yamada <yamada.masahiro@socionext.com>
> >> Cc: Simon Glass <sjg@chromium.org>
> >> ---
> >>  common/Kconfig | 6 ++++++
> >>  1 file changed, 6 insertions(+)
> >>
> >> diff --git a/common/Kconfig b/common/Kconfig
> >> index ecbf6cb..b7791bd 100644
> >> --- a/common/Kconfig
> >> +++ b/common/Kconfig
> >> @@ -165,6 +165,12 @@ config CMD_BOOTM
> >>  	help
> >>  	  Boot an application image from the memory.
> >>  
> >> +config CMD_BOOTZ
> >> +	bool "bootz"
> >> +	select CMD_BOOTM
> >> +	help
> >> +	  Boot a Linux kernel zImage from the memory.
> >> +
> >>  config CMD_GO
> >>  	bool "go"
> >>  	default y

I figured you were tackling this later with moveconfig.py, no?
Igor Grinberg Sept. 30, 2015, 7:52 a.m. UTC | #4
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA256

On 09/29/15 20:11, Tom Rini wrote:
> On Tue, Sep 29, 2015 at 07:25:02PM +0300, Igor Grinberg wrote:
>> ping x2
>>
>> On 09/24/15 12:57, Igor Grinberg wrote:
>>> ping.
>>>
>>> On 08/26/15 17:54, Igor Grinberg wrote:
>>>> Add CONFIG_CMD_BOOTZ to the Kconfig.
>>>> Since the CONFIG_CMD_BOOTZ cannot live without the CONFIG_CMD_BOOTM,
>>>> make it select the CONFIG_CMD_BOOTM.
>>>>
>>>> Signed-off-by: Igor Grinberg <grinberg@compulab.co.il>
>>>> Cc: Masahiro Yamada <yamada.masahiro@socionext.com>
>>>> Cc: Simon Glass <sjg@chromium.org>
>>>> ---
>>>>  common/Kconfig | 6 ++++++
>>>>  1 file changed, 6 insertions(+)
>>>>
>>>> diff --git a/common/Kconfig b/common/Kconfig
>>>> index ecbf6cb..b7791bd 100644
>>>> --- a/common/Kconfig
>>>> +++ b/common/Kconfig
>>>> @@ -165,6 +165,12 @@ config CMD_BOOTM
>>>>  	help
>>>>  	  Boot an application image from the memory.
>>>>  
>>>> +config CMD_BOOTZ
>>>> +	bool "bootz"
>>>> +	select CMD_BOOTM
>>>> +	help
>>>> +	  Boot a Linux kernel zImage from the memory.
>>>> +
>>>>  config CMD_GO
>>>>  	bool "go"
>>>>  	default y
> 
> I figured you were tackling this later with moveconfig.py, no?

Aahh, yes that is true. Sorry about that.


- -- 
Regards,
Igor.
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v2

iQIcBAEBCAAGBQJWC5S1AAoJEBDE8YO64Efal6QQAI1/cg7ftNL0Kcyvkp7QMBKy
+KyLmJZQ+dVLjATzXJWLScaSQp3AuHfJgvoEfPIALZMxZmyXPuAWroP/hoBgNJdA
koo6Mk2x0ckMfqR4VVk0xF7peIUq528R9b+OVMrXCnum2RwOyz5+4IvWuVVmzUKa
B4a+7YACjO74M33V+FhQLMP4NJwtmBA+2Jwb09kitR26uGV/nenYDxCtSVHClO2F
4vZWYMw36Ex0H2nZP3PY7U2mDIyEqBFuCgEgve/g0HIz0BIKbxP8viRq5zVQMLcg
edJpn2/9eRKLfCBcDuZxMXqtx7Ox3fGK22OanhE3IGGvQk3EWu0zUWlmmnagb5Ja
8VwR2MwVCtQj+hCAY76dqcD9Dzv5iH/vygPvnHnwTjCEDXGH1FyVuI5emIWFqa8S
RvYVQyB8qMImYAI60oFwrIeg5D848fIwhJ3Gon1ydkZCA/eWE1KDb0Q/V7OgWuZq
rJGPWtGpJWezuUIelU4GoN0QLKhPnuhREpa3Bgtb1JvN72r0LMlVEq15GHSn3w1a
IRlIGSMkajtRO2l9ljfi0L0FghLBfdcMCoW0bsKp3eEdux3WX3AQs4+26jfZVd4L
E9uC5Si5YYdE3R4TSkjEYTVsVwDaSzzQdf3q6HqAfc62lD0fXFYYUMYnN0pHdH5b
S0W0cgxgtCs3yTzXiQIE
=DhyG
-----END PGP SIGNATURE-----
diff mbox

Patch

diff --git a/common/Kconfig b/common/Kconfig
index ecbf6cb..b7791bd 100644
--- a/common/Kconfig
+++ b/common/Kconfig
@@ -165,6 +165,12 @@  config CMD_BOOTM
 	help
 	  Boot an application image from the memory.
 
+config CMD_BOOTZ
+	bool "bootz"
+	select CMD_BOOTM
+	help
+	  Boot a Linux kernel zImage from the memory.
+
 config CMD_GO
 	bool "go"
 	default y