diff options
author | David Hendricks <dhendricks@fb.com> | 2018-08-08 19:16:55 -0700 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2018-08-10 09:05:04 +0000 |
commit | fb03dd604300204a35cea2752a5c5a0d17c6d147 (patch) | |
tree | f2ae4e29aca9e2e15e24653971cd494a89f3d730 /payloads/external/LinuxBoot/Kconfig | |
parent | fc19ab5f3465d8f8a861f7492634d0afe847f56d (diff) |
linuxboot: remove curley brace expansion from u-root commands
Curley brace expansion is a bash-ism, so we can't use it for the
u-root command list.
This unfortunately also breaks the current Kconfig option since the
list needs to be separated by space instead of commas.
Change-Id: I429a52c1673e29b7180ee6f53deaa7a551a1a9b3
Signed-off-by: David Hendricks <dhendricks@fb.com>
Reviewed-on: https://review.coreboot.org/27967
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Philipp Deppenwiese <zaolin.daisuki@gmail.com>
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Diffstat (limited to 'payloads/external/LinuxBoot/Kconfig')
-rw-r--r-- | payloads/external/LinuxBoot/Kconfig | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/payloads/external/LinuxBoot/Kconfig b/payloads/external/LinuxBoot/Kconfig index 14ee8951a4..7a40645535 100644 --- a/payloads/external/LinuxBoot/Kconfig +++ b/payloads/external/LinuxBoot/Kconfig @@ -118,8 +118,8 @@ config LINUXBOOT_UROOT_COMMANDS string "Select u-root commands" default "" help - Comma separated list of additional modules to include. Otherwise all modules - of u-root are included. + List of additional modules to include, separated by space. Otherwise + all modules of u-root are included. config LINUXBOOT_UROOT_FILES string "Add files to u-root base" |