linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [GIT PULL 0/1] EFI fix for v4.19-rc
@ 2018-09-18 21:36 Ard Biesheuvel
  2018-09-18 21:36 ` [PATCH 1/1] efi/libstub/arm: default EFI_ARMSTUB_DTB_LOADER to y Ard Biesheuvel
  2018-09-18 22:13 ` [GIT PULL 0/1] EFI fix for v4.19-rc Thomas Gleixner
  0 siblings, 2 replies; 3+ messages in thread
From: Ard Biesheuvel @ 2018-09-18 21:36 UTC (permalink / raw)
  To: linux-efi, Ingo Molnar, Thomas Gleixner
  Cc: Ard Biesheuvel, linux-kernel, Scott Branden

The following changes since commit 11da3a7f84f19c26da6f86af878298694ede0804:

  Linux 4.19-rc3 (2018-09-09 17:26:43 -0700)

are available in the Git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git efi-urgent

for you to fetch changes up to d310959365942b100f79b56bcce859968fe7ca9c:

  efi/libstub/arm: default EFI_ARMSTUB_DTB_LOADER to y (2018-09-12 16:41:41 +0200)

----------------------------------------------------------------
Apply a fix from Scott to make the ARM stub's DTB loader opt-out rather
than opt-in.

----------------------------------------------------------------
Scott Branden (1):
      efi/libstub/arm: default EFI_ARMSTUB_DTB_LOADER to y

 drivers/firmware/efi/Kconfig | 9 ++++++---
 1 file changed, 6 insertions(+), 3 deletions(-)

^ permalink raw reply	[flat|nested] 3+ messages in thread

* [PATCH 1/1] efi/libstub/arm: default EFI_ARMSTUB_DTB_LOADER to y
  2018-09-18 21:36 [GIT PULL 0/1] EFI fix for v4.19-rc Ard Biesheuvel
@ 2018-09-18 21:36 ` Ard Biesheuvel
  2018-09-18 22:13 ` [GIT PULL 0/1] EFI fix for v4.19-rc Thomas Gleixner
  1 sibling, 0 replies; 3+ messages in thread
From: Ard Biesheuvel @ 2018-09-18 21:36 UTC (permalink / raw)
  To: linux-efi, Ingo Molnar, Thomas Gleixner
  Cc: Scott Branden, Ard Biesheuvel, linux-kernel

From: Scott Branden <scott.branden@broadcom.com>

Default EFI_ARMSTUB_DTB_LOADER to y to allow the dtb= command
line parameter to function with efi loader.

Required for development purposes and to boot on existing bootloaders
that do not support devicetree provided by the firmware or by the
bootloader.

Fixes: 3d7ee348aa41 ("efi/libstub/arm: Add opt-in Kconfig option ...")
Signed-off-by: Scott Branden <scott.branden@broadcom.com>
Signed-off-by: Ard Biesheuvel <ard.biesheuvel@linaro.org>
---
 drivers/firmware/efi/Kconfig | 9 ++++++---
 1 file 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
 config EFI_ARMSTUB_DTB_LOADER
 	bool "Enable the DTB loader"
 	depends on EFI_ARMSTUB
+	default y
 	help
 	  Select this config option to add support for the dtb= command
 	  line parameter, allowing a device tree blob to be loaded into
 	  memory from the EFI System Partition by the stub.
 
-	  The device tree is typically provided by the platform or by
-	  the bootloader, so this option is mostly for development
-	  purposes only.
+	  If the device tree is provided by the platform or by
+	  the bootloader this option may not be needed.
+	  But, for various development reasons and to maintain existing
+	  functionality for bootloaders that do not have such support
+	  this option is necessary.
 
 config EFI_BOOTLOADER_CONTROL
 	tristate "EFI Bootloader Control"
-- 
2.17.1


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [GIT PULL 0/1] EFI fix for v4.19-rc
  2018-09-18 21:36 [GIT PULL 0/1] EFI fix for v4.19-rc Ard Biesheuvel
  2018-09-18 21:36 ` [PATCH 1/1] efi/libstub/arm: default EFI_ARMSTUB_DTB_LOADER to y Ard Biesheuvel
@ 2018-09-18 22:13 ` Thomas Gleixner
  1 sibling, 0 replies; 3+ messages in thread
From: Thomas Gleixner @ 2018-09-18 22:13 UTC (permalink / raw)
  To: Ard Biesheuvel; +Cc: linux-efi, Ingo Molnar, linux-kernel, Scott Branden

On Tue, 18 Sep 2018, Ard Biesheuvel wrote:

> The following changes since commit 11da3a7f84f19c26da6f86af878298694ede0804:
> 
>   Linux 4.19-rc3 (2018-09-09 17:26:43 -0700)
> 
> are available in the Git repository at:
> 
>   git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git efi-urgent
> 
> for you to fetch changes up to d310959365942b100f79b56bcce859968fe7ca9c:
> 
>   efi/libstub/arm: default EFI_ARMSTUB_DTB_LOADER to y (2018-09-12 16:41:41 +0200)
> 
> ----------------------------------------------------------------
> Apply a fix from Scott to make the ARM stub's DTB loader opt-out rather
> than opt-in.

Pulled. Thanks Ard!

	tglx

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2018-09-18 22:13 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-09-18 21:36 [GIT PULL 0/1] EFI fix for v4.19-rc Ard Biesheuvel
2018-09-18 21:36 ` [PATCH 1/1] efi/libstub/arm: default EFI_ARMSTUB_DTB_LOADER to y Ard Biesheuvel
2018-09-18 22:13 ` [GIT PULL 0/1] EFI fix for v4.19-rc Thomas Gleixner

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).