U-Boot Archive on lore.kernel.org
 help / color / mirror / Atom feed
From: Michal Simek <michal.simek@xilinx.com>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH 2/3] cmd: booti: move CONFIG_CMD_BOOTI to Kconfig
Date: Mon, 25 Jul 2016 15:42:04 +0200	[thread overview]
Message-ID: <1ad31273-5900-ae7b-cf04-ba6fc1e15263@xilinx.com> (raw)
In-Reply-To: <1469451968-26992-3-git-send-email-yamada.masahiro@socionext.com>

On 25.7.2016 15:06, Masahiro Yamada wrote:
> This command is used to boot ARM64 Linux.
> 
> I made DISTRO_DEFAULTS select this option for ARM64 to respect
> include/config_distro_defaults.h.
> 
> Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
> ---
> 
>  Kconfig                                          | 1 +
>  cmd/Kconfig                                      | 6 ++++++
>  configs/dragonboard410c_defconfig                | 1 +
>  configs/e2220-1170_defconfig                     | 1 +
>  configs/hikey_defconfig                          | 1 +
>  configs/odroid-c2_defconfig                      | 1 +
>  configs/p2371-0000_defconfig                     | 1 +
>  configs/p2371-2180_defconfig                     | 1 +
>  configs/p2571_defconfig                          | 1 +
>  configs/p2771-0000-a02_defconfig                 | 1 +
>  configs/p2771-0000-b00_defconfig                 | 1 +
>  configs/rpi_3_defconfig                          | 1 +
>  configs/s32v234evb_defconfig                     | 1 +
>  configs/uniphier_ld11_defconfig                  | 1 +
>  configs/uniphier_ld20_defconfig                  | 1 +
>  configs/vexpress_aemv8a_dram_defconfig           | 1 +
>  configs/vexpress_aemv8a_juno_defconfig           | 1 +
>  configs/vexpress_aemv8a_semi_defconfig           | 1 +
>  configs/xilinx_zynqmp_ep_defconfig               | 1 +
>  configs/xilinx_zynqmp_zc1751_xm015_dc1_defconfig | 1 +
>  configs/xilinx_zynqmp_zc1751_xm016_dc2_defconfig | 1 +
>  configs/xilinx_zynqmp_zc1751_xm018_dc4_defconfig | 1 +
>  configs/xilinx_zynqmp_zc1751_xm019_dc5_defconfig | 1 +
>  configs/xilinx_zynqmp_zcu102_defconfig           | 1 +
>  configs/xilinx_zynqmp_zcu102_revB_defconfig      | 1 +
>  include/config_distro_defaults.h                 | 3 ---
>  include/configs/uniphier.h                       | 1 -
>  include/configs/vexpress_aemv8a.h                | 1 -
>  include/configs/xilinx_zynqmp.h                  | 1 -
>  29 files changed, 30 insertions(+), 6 deletions(-)
> 
> diff --git a/Kconfig b/Kconfig
> index 0d6afd2..335efcd 100644
> --- a/Kconfig
> +++ b/Kconfig
> @@ -59,6 +59,7 @@ config DISTRO_DEFAULTS
>  	default n
>  	select CMD_BOOTM
>  	select CMD_BOOTZ
> +	select CMD_BOOTI if ARM64
>  	select CMD_DHCP
>  	select CMD_EXT2
>  	select CMD_EXT4
> diff --git a/cmd/Kconfig b/cmd/Kconfig
> index 171114d..f7c609d 100644
> --- a/cmd/Kconfig
> +++ b/cmd/Kconfig
> @@ -166,6 +166,12 @@ config CMD_BOOTZ
>  	help
>  	  Boot the Linux zImage
>  
> +config CMD_BOOTI
> +	bool "booti"
> +	depends on CMD_BOOTM && ARM64
> +	help
> +	  Boot the Linux Image for ARM64

I would even add here default y which can shorten defconfigs and you can
disable it if you don't want it.
What do you think?

Thanks,
Michal

  reply	other threads:[~2016-07-25 13:42 UTC|newest]

Thread overview: 16+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-07-25 13:06 [U-Boot] [PATCH 0/3] Some Kconfig move/fixups Masahiro Yamada
2016-07-25 13:06 ` [U-Boot] [PATCH 1/3] cmd: bootz: make CMD_BOOTZ depend on CMD_BOOTM Masahiro Yamada
2016-07-25 13:17   ` Robert P. J. Day
2016-07-26  4:15     ` Masahiro Yamada
2016-07-25 13:06 ` [U-Boot] [PATCH 2/3] cmd: booti: move CONFIG_CMD_BOOTI to Kconfig Masahiro Yamada
2016-07-25 13:42   ` Michal Simek [this message]
2016-07-25 14:15     ` Ryan Harkin
2016-07-31 16:27     ` Masahiro Yamada
2016-07-31 17:23       ` Tom Rini
2016-07-25 13:06 ` [U-Boot] [PATCH 3/3] arm64: thunderx_88xx_defconfig: remove unneeded CONFIG_SYS_EXTRA_OPTIONS Masahiro Yamada
2016-07-25 14:56   ` Tom Rini
2016-07-26  2:33   ` [U-Boot] [U-Boot, " Tom Rini
2016-07-25 14:55 ` [U-Boot] [PATCH 0/3] Some Kconfig move/fixups Tom Rini
2016-07-31 16:24   ` Masahiro Yamada
2016-07-31 17:21     ` Tom Rini
2016-08-01  2:26       ` Masahiro Yamada

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1ad31273-5900-ae7b-cf04-ba6fc1e15263@xilinx.com \
    --to=michal.simek@xilinx.com \
    --cc=u-boot@lists.denx.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox