82 lines
2 KiB
Diff
82 lines
2 KiB
Diff
From 7eabab2fda12b7a4417e5c7f29a507dfa9e7fffd Mon Sep 17 00:00:00 2001
|
|
From: Peter Robinson <pbrobinson@gmail.com>
|
|
Date: Sun, 3 May 2026 09:24:34 +0100
|
|
Subject: [PATCH] enable https boot by default
|
|
|
|
Signed-off-by: Peter Robinson <pbrobinson@gmail.com>
|
|
---
|
|
cmd/Kconfig | 1 +
|
|
lib/efi_loader/Kconfig | 1 +
|
|
lib/mbedtls/Kconfig | 3 ++-
|
|
net/Kconfig | 3 ++-
|
|
4 files changed, 6 insertions(+), 2 deletions(-)
|
|
|
|
diff --git a/cmd/Kconfig b/cmd/Kconfig
|
|
index c71c6824a19..8ff14adffe1 100644
|
|
--- a/cmd/Kconfig
|
|
+++ b/cmd/Kconfig
|
|
@@ -2289,6 +2289,7 @@ config CMD_WGET
|
|
|
|
config WGET_HTTPS
|
|
bool "wget https"
|
|
+ default y
|
|
depends on CMD_WGET
|
|
depends on PROT_TCP_LWIP
|
|
depends on MBEDTLS_LIB
|
|
diff --git a/lib/efi_loader/Kconfig b/lib/efi_loader/Kconfig
|
|
index 4cb13ae7c8a..20733429962 100644
|
|
--- a/lib/efi_loader/Kconfig
|
|
+++ b/lib/efi_loader/Kconfig
|
|
@@ -609,6 +609,7 @@ config EFI_BOOTMGR
|
|
|
|
config EFI_HTTP_BOOT
|
|
bool "EFI HTTP Boot support"
|
|
+ default y
|
|
depends on NET
|
|
depends on CMDLINE
|
|
select CMD_NET
|
|
diff --git a/lib/mbedtls/Kconfig b/lib/mbedtls/Kconfig
|
|
index 789721ee6cd..7a241c2bc26 100644
|
|
--- a/lib/mbedtls/Kconfig
|
|
+++ b/lib/mbedtls/Kconfig
|
|
@@ -2,7 +2,7 @@
|
|
|
|
choice
|
|
prompt "Crypto libraries (U-Boot Proper)"
|
|
- default LEGACY_HASHING_AND_CRYPTO
|
|
+ default MBEDTLS_LIB
|
|
help
|
|
Select crypto libraries.
|
|
LEGACY_HASHING_AND_CRYPTO for legacy crypto libraries,
|
|
@@ -15,6 +15,7 @@ config LEGACY_HASHING_AND_CRYPTO
|
|
|
|
config MBEDTLS_LIB
|
|
bool "MbedTLS libraries"
|
|
+ default y
|
|
select MBEDTLS_LIB_X509
|
|
endchoice
|
|
|
|
diff --git a/net/Kconfig b/net/Kconfig
|
|
index e712a0dd2ac..3158d37dff7 100644
|
|
--- a/net/Kconfig
|
|
+++ b/net/Kconfig
|
|
@@ -16,7 +16,7 @@ if NET
|
|
|
|
choice
|
|
prompt "Networking stack"
|
|
- default NET_LEGACY
|
|
+ default NET_LWIP
|
|
|
|
config NET_LEGACY
|
|
bool "Legacy U-Boot networking stack"
|
|
@@ -27,6 +27,7 @@ config NET_LEGACY
|
|
|
|
config NET_LWIP
|
|
bool "Use lwIP for networking stack"
|
|
+ default y
|
|
select NETDEVICES
|
|
help
|
|
Include networking support based on the lwIP (lightweight IP)
|
|
--
|
|
2.54.0
|
|
|