Merge branch 'next'
authorTom Rini <trini@konsulko.com>
Mon, 7 Apr 2025 22:40:02 +0000 (16:40 -0600)
committerTom Rini <trini@konsulko.com>
Tue, 8 Apr 2025 17:43:23 +0000 (11:43 -0600)
Note that this undoes the changes of commit cf6d4535cc4c ("x86:
emulation: Disable bloblist for now") as that was intended only for the
release due to time.

15 files changed:
1  2 
MAINTAINERS
Makefile
board/starfive/visionfive2/spl.c
cmd/Kconfig
cmd/net-lwip.c
configs/sama5d27_giantboard_defconfig
configs/sama5d27_som1_ek_mmc1_defconfig
configs/sama5d27_som1_ek_mmc_defconfig
configs/sama5d27_som1_ek_qspiflash_defconfig
configs/sama5d27_wlsom1_ek_mmc_defconfig
configs/sama5d27_wlsom1_ek_qspiflash_defconfig
drivers/misc/qfw_acpi.c
include/net-common.h
lib/efi_loader/efi_boottime.c
net/lwip/net-lwip.c

diff --cc MAINTAINERS
Simple merge
diff --cc Makefile
Simple merge
Simple merge
diff --cc cmd/Kconfig
@@@ -2168,6 -2184,30 +2177,28 @@@ config WGET_HTTP
        help
          Enable TLS over http for wget.
  
 -endif  # if CMD_NET
 -
+ config WGET_CACERT
+       bool "wget cacert"
+       depends on CMD_WGET
+       depends on WGET_HTTPS
+       help
+         Adds the "cacert" sub-command to wget to provide root certificates
+         to the HTTPS engine. Must be in DER format.
+ config WGET_BUILTIN_CACERT
+       bool "Built-in CA certificates"
+       depends on WGET_HTTPS
+       select BUILD_BIN2C
+ config WGET_BUILTIN_CACERT_PATH
+       string "Path to root certificates"
+       depends on WGET_BUILTIN_CACERT
+       default "cacert.crt"
+       help
+         Set this to the path to a DER-encoded X509 file containing
+         Certification Authority certificates, a.k.a. root certificates, for
+         the purpose of authenticating HTTPS connections.
  config CMD_PXE
        bool "pxe"
        select PXE_UTILS
diff --cc cmd/net-lwip.c
Simple merge
Simple merge
Simple merge
Simple merge
@@@ -2234,10 -2231,6 +2232,8 @@@ static efi_status_t EFIAPI efi_exit_boo
  
        if (!efi_st_keep_devices) {
                bootm_disable_interrupts();
-               if (IS_ENABLED(CONFIG_USB_DEVICE))
-                       udc_disconnect();
 +              if (IS_ENABLED(CONFIG_DM_ETH))
 +                      eth_halt();
                board_quiesce_devices();
                dm_remove_devices_active();
        }
Simple merge