28 Jan, 2017
3 commits
-
Signed-off-by: Patrick Delaunay
Signed-off-by: Patrick Delaunay -
Signed-off-by: Patrick Delaunay
Signed-off-by: Patrick Delaunay -
Signed-off-by: Patrick Delaunay
Signed-off-by: Patrick Delaunay
04 Dec, 2016
2 commits
-
Currently, CMD_PXE is forcibly enabled in config_distro_defaults.h, so
that general purpose distributions can rely on it being defined. This
header is included, under conditions or not, by various archs or
famillies of archs / SoCs.However, it is very possible that boards based on those SoCs will not
have a physical ethernet connector at all, even if the have a MAC; for
example, the Nanopi Neo AIR (sunxi H3) does not. It is also possible
that network booting is absolutely not necessary for a device.However, it is not possible to disable the PXE command, as it is
forcibly enabled and is non-configurable.But it turns out we already have a config option to build a distro-ready
image, in the name of DISTRO_DEFAULTS.Move CMD_PXE out of the hard-coded config_distro_defaults.h into a
Kconfig option, that gets selected by DISTRO_DEFAULTS when it is set.Signed-off-by: "Yann E. MORIN"
Cc: Joe Hershberger
[trini: Make it select MENU, run moveconfig.py]
Signed-off-by: Tom Rini -
Also convert MENU while we're in here.
Signed-off-by: Tom Rini
20 Aug, 2016
1 commit
-
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
Signed-off-by: Tom Rini
10 Jun, 2016
1 commit
-
move CONFIG_BOOTDELAY into a Kconfig option. Used for this
purpose the moveconfig.py tool in tools.Signed-off-by: Heiko Schocher
Reviewed-by: Tom Rini
Acked-by: Viresh Kumar
Acked-by: Igor Grinberg
27 May, 2016
1 commit
-
We have a bunch of boards that define their vendor class identifier and
client archs in the board files or in the distro config. Move everything
to the generic Kconfig options.We're missing the distinction between i386 and x86_64, as I couldn't find
any config variable that would tell us the difference. Is that really important
to people? I guess not, so I left it out.Signed-off-by: Alexander Graf
Reviewed-by: Tom Rini
26 Apr, 2016
3 commits
-
Update the config.h and defconfig files for the commands that 8e3c036
converted over to KconfigSigned-off-by: Tom Rini
-
This syncs up the current cmd/Kconfig and include/configs/ files with the
only exception being CMD_NAND. Due to how we have used this historically
we need to take further care here when converting.Signed-off-by: Tom Rini
-
Move all cases of CONFIG_SYS_HUSH_PARSER out of the config.h files. Remove
all cases of CONFIG_SYS_PROMPT_HUSH_PS2 as everyone uses the default.Signed-off-by: Tom Rini
19 Apr, 2016
2 commits
-
When there is no $fdtfile variable set, we still have a good chance
that on 32bit arm the fdtfile really is just called $soc-$board.dtb.Enable the exports for $soc and $board in our distr defaults and make
use of them in the efi boot script.Reported-by: Andreas Faerber
Reported-by: Stephen Warren
Signed-off-by: Alexander Graf
Reviewed-by: Andreas Färber -
Now that we can properly boot EFI payloads from iso el torito
images, let's enable support for isos by default in the distro
header.Signed-off-by: Alexander Graf
15 Mar, 2016
1 commit
-
Move this option to Kconfig and tidy up existing boards.
Signed-off-by: Simon Glass
06 Feb, 2016
1 commit
-
Correct spelling of "U-Boot" shall be used in all written text
(documentation, comments in source files etc.).Signed-off-by: Bin Meng
Reviewed-by: Heiko Schocher
Reviewed-by: Simon Glass
Reviewed-by: Minkyu Kang
21 Oct, 2015
1 commit
-
Convert CONFIG_CMD_ELF to Kconfig and tidy up affected boards.
Signed-off-by: Bin Meng
13 Aug, 2015
1 commit
-
… default one. Use the board set value instead
Signed-off-by: Dennis Gilmore <dennis@ausil.us>
01 Jun, 2015
1 commit
-
This also selects CONFIG_NET for any CONFIG_CMD_NET board.
Remove the imx default for CONFIG_NET.
This moves the config that was defined by 60296a8 (commands: add more
command entries in Kconfig).Signed-off-by: Joe Hershberger
20 Apr, 2015
1 commit
-
Define default PXE client architecture identifiers for IA32 (0x0 aka
Intel x86PC) and Intel x86-64 (0x9 aka EFI x86-64).This prepares for usage for config_distro_defaults in the sandbox
architectureSigned-off-by: Sjoerd Simons
29 Mar, 2015
2 commits
-
Reuse the 32-bit ARM client architecture and identify ARMv8 specifically
by setting the BOOTP VCI string.Cc: Dennis Gilmore
Cc: Tom Rini
Signed-off-by: Thierry Reding -
The bootz command doesn't work with Linux kernel images on 64-bit ARM.
The replacement command with the same interface and functionality is
booti.Cc: Dennis Gilmore
Cc: Tom Rini
Signed-off-by: Thierry Reding
28 Oct, 2014
1 commit
-
Signed-off-by: Robert P. J. Day
05 Feb, 2014
2 commits
-
Signed-off-by: Tom Rini
-
describe a set of default features that distros can rely on being available.
having this common definition means that distros can easily support systems
implementing them.Signed-off-by: Dennis Gilmore