From mboxrd@z Thu Jan 1 00:00:00 1970 From: Igor Grinberg Date: Thu, 24 Sep 2015 12:57:31 +0300 Subject: [U-Boot] [PATCH 04/10] Kconfig: add CONFIG_CMD_BOOTZ In-Reply-To: <1440600893-20542-5-git-send-email-grinberg@compulab.co.il> References: <1440600893-20542-1-git-send-email-grinberg@compulab.co.il> <1440600893-20542-5-git-send-email-grinberg@compulab.co.il> Message-ID: <5603C90B.9000809@compulab.co.il> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de 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 > Cc: Masahiro Yamada > Cc: Simon Glass > --- > 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 > -- Regards, Igor.