Re: [U-Boot] [PATCH 1/1] efi_loader: default EFI_LOADER=n on ARM11

2019-11-24 Thread Matthias Brugger


On 20/11/2019 19:04, Heinrich Schuchardt wrote:
> Some of the ARM11 boards have tight limits on the size of U-Boots. Hence
> use EFI_LOADER=n as default on ARM11.
> 
> Set EFI_LOADER=y for the Raspberry Pi and Raspberry Pi Zero as these boards
> have sufficient storage on the SD card.
> 
> Suggested-by: Tom Rini 
> Signed-off-by: Heinrich Schuchardt 

For RPi configs:

Acked-by: Matthias Brugger 

> ---
>  configs/rpi_0_w_defconfig | 1 +
>  configs/rpi_defconfig | 1 +
>  lib/efi_loader/Kconfig| 2 +-
>  3 files changed, 3 insertions(+), 1 deletion(-)
> 
> diff --git a/configs/rpi_0_w_defconfig b/configs/rpi_0_w_defconfig
> index fe5a7763a6..6614adfc9b 100644
> --- a/configs/rpi_0_w_defconfig
> +++ b/configs/rpi_0_w_defconfig
> @@ -41,3 +41,4 @@ CONFIG_SYS_WHITE_ON_BLACK=y
>  CONFIG_CONSOLE_SCROLL_LINES=10
>  CONFIG_PHYS_TO_BUS=y
>  CONFIG_OF_LIBFDT_OVERLAY=y
> +CONFIG_EFI_LOADER=y
> diff --git a/configs/rpi_defconfig b/configs/rpi_defconfig
> index 2c04b3334e..fa4d9c0b04 100644
> --- a/configs/rpi_defconfig
> +++ b/configs/rpi_defconfig
> @@ -41,3 +41,4 @@ CONFIG_SYS_WHITE_ON_BLACK=y
>  CONFIG_CONSOLE_SCROLL_LINES=10
>  CONFIG_PHYS_TO_BUS=y
>  CONFIG_OF_LIBFDT_OVERLAY=y
> +CONFIG_EFI_LOADER=y
> diff --git a/lib/efi_loader/Kconfig b/lib/efi_loader/Kconfig
> index 7984d6f42d..91411ad124 100644
> --- a/lib/efi_loader/Kconfig
> +++ b/lib/efi_loader/Kconfig
> @@ -10,7 +10,7 @@ config EFI_LOADER
>   depends on !EFI_STUB || !X86_64 || EFI_STUB_64BIT
>   # We need EFI_STUB_32BIT to be set on x86_32 with EFI_STUB
>   depends on !EFI_STUB || !X86 || X86_64 || EFI_STUB_32BIT
> - default y
> + default y if !ARM || SYS_CPU = armv7 || SYS_CPU = armv8
>   select LIB_UUID
>   select HAVE_BLOCK_DEVICE
>   select REGEX
> --
> 2.24.0
> 
___
U-Boot mailing list
U-Boot@lists.denx.de
https://lists.denx.de/listinfo/u-boot


Re: [U-Boot] [PATCH 1/1] efi_loader: default EFI_LOADER=n on ARM11

2019-11-22 Thread Linus Walleij
On Wed, Nov 20, 2019 at 7:04 PM Heinrich Schuchardt  wrote:

> Some of the ARM11 boards have tight limits on the size of U-Boots. Hence
> use EFI_LOADER=n as default on ARM11.
>
> Set EFI_LOADER=y for the Raspberry Pi and Raspberry Pi Zero as these boards
> have sufficient storage on the SD card.
>
> Suggested-by: Tom Rini 
> Signed-off-by: Heinrich Schuchardt 

Reviewed-by: Linus Walleij 

Yours,
Linus Walleij
___
U-Boot mailing list
U-Boot@lists.denx.de
https://lists.denx.de/listinfo/u-boot


Re: [U-Boot] [PATCH 1/1] efi_loader: default EFI_LOADER=n on ARM11

2019-11-20 Thread Tom Rini
On Wed, Nov 20, 2019 at 07:04:15PM +0100, Heinrich Schuchardt wrote:

> Some of the ARM11 boards have tight limits on the size of U-Boots. Hence
> use EFI_LOADER=n as default on ARM11.
> 
> Set EFI_LOADER=y for the Raspberry Pi and Raspberry Pi Zero as these boards
> have sufficient storage on the SD card.
> 
> Suggested-by: Tom Rini 
> Signed-off-by: Heinrich Schuchardt 

Reviewed-by: Tom Rini 

-- 
Tom


signature.asc
Description: PGP signature
___
U-Boot mailing list
U-Boot@lists.denx.de
https://lists.denx.de/listinfo/u-boot


[U-Boot] [PATCH 1/1] efi_loader: default EFI_LOADER=n on ARM11

2019-11-20 Thread Heinrich Schuchardt
Some of the ARM11 boards have tight limits on the size of U-Boots. Hence
use EFI_LOADER=n as default on ARM11.

Set EFI_LOADER=y for the Raspberry Pi and Raspberry Pi Zero as these boards
have sufficient storage on the SD card.

Suggested-by: Tom Rini 
Signed-off-by: Heinrich Schuchardt 
---
 configs/rpi_0_w_defconfig | 1 +
 configs/rpi_defconfig | 1 +
 lib/efi_loader/Kconfig| 2 +-
 3 files changed, 3 insertions(+), 1 deletion(-)

diff --git a/configs/rpi_0_w_defconfig b/configs/rpi_0_w_defconfig
index fe5a7763a6..6614adfc9b 100644
--- a/configs/rpi_0_w_defconfig
+++ b/configs/rpi_0_w_defconfig
@@ -41,3 +41,4 @@ CONFIG_SYS_WHITE_ON_BLACK=y
 CONFIG_CONSOLE_SCROLL_LINES=10
 CONFIG_PHYS_TO_BUS=y
 CONFIG_OF_LIBFDT_OVERLAY=y
+CONFIG_EFI_LOADER=y
diff --git a/configs/rpi_defconfig b/configs/rpi_defconfig
index 2c04b3334e..fa4d9c0b04 100644
--- a/configs/rpi_defconfig
+++ b/configs/rpi_defconfig
@@ -41,3 +41,4 @@ CONFIG_SYS_WHITE_ON_BLACK=y
 CONFIG_CONSOLE_SCROLL_LINES=10
 CONFIG_PHYS_TO_BUS=y
 CONFIG_OF_LIBFDT_OVERLAY=y
+CONFIG_EFI_LOADER=y
diff --git a/lib/efi_loader/Kconfig b/lib/efi_loader/Kconfig
index 7984d6f42d..91411ad124 100644
--- a/lib/efi_loader/Kconfig
+++ b/lib/efi_loader/Kconfig
@@ -10,7 +10,7 @@ config EFI_LOADER
depends on !EFI_STUB || !X86_64 || EFI_STUB_64BIT
# We need EFI_STUB_32BIT to be set on x86_32 with EFI_STUB
depends on !EFI_STUB || !X86 || X86_64 || EFI_STUB_32BIT
-   default y
+   default y if !ARM || SYS_CPU = armv7 || SYS_CPU = armv8
select LIB_UUID
select HAVE_BLOCK_DEVICE
select REGEX
--
2.24.0

___
U-Boot mailing list
U-Boot@lists.denx.de
https://lists.denx.de/listinfo/u-boot