diff options
author | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2018-09-23 02:06:54 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2018-09-23 02:06:54 -0400 |
commit | ea092676b0d9c13f20a3bc02c5b0bf537c27346e (patch) | |
tree | 62dffcf80148d7e4c1f054a470d302eefbc2e292 | |
parent | 10dc890d4228cd17ddfd09ba9aaa9221627e29b2 (diff) | |
parent | 008d2f444222554289867e1686f1be1c1bcd0ef4 (diff) |
Merge branch 'efi-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip
Thomas writes:
"Make the EFI arm stub device tree loader default on to unbreak
existing EFI boot loaders which do not have DTB support."
* 'efi-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
efi/libstub/arm: default EFI_ARMSTUB_DTB_LOADER to y
-rw-r--r-- | drivers/firmware/efi/Kconfig | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/drivers/firmware/efi/Kconfig b/drivers/firmware/efi/Kconfig index d8e159feb573..89110dfc7127 100644 --- a/drivers/firmware/efi/Kconfig +++ b/drivers/firmware/efi/Kconfig | |||
@@ -90,14 +90,17 @@ config EFI_ARMSTUB | |||
90 | config EFI_ARMSTUB_DTB_LOADER | 90 | config EFI_ARMSTUB_DTB_LOADER |
91 | bool "Enable the DTB loader" | 91 | bool "Enable the DTB loader" |
92 | depends on EFI_ARMSTUB | 92 | depends on EFI_ARMSTUB |
93 | default y | ||
93 | help | 94 | help |
94 | Select this config option to add support for the dtb= command | 95 | Select this config option to add support for the dtb= command |
95 | line parameter, allowing a device tree blob to be loaded into | 96 | line parameter, allowing a device tree blob to be loaded into |
96 | memory from the EFI System Partition by the stub. | 97 | memory from the EFI System Partition by the stub. |
97 | 98 | ||
98 | The device tree is typically provided by the platform or by | 99 | If the device tree is provided by the platform or by |
99 | the bootloader, so this option is mostly for development | 100 | the bootloader this option may not be needed. |
100 | purposes only. | 101 | But, for various development reasons and to maintain existing |
102 | functionality for bootloaders that do not have such support | ||
103 | this option is necessary. | ||
101 | 104 | ||
102 | config EFI_BOOTLOADER_CONTROL | 105 | config EFI_BOOTLOADER_CONTROL |
103 | tristate "EFI Bootloader Control" | 106 | tristate "EFI Bootloader Control" |