diff options
| author | Sam Protsenko <[email protected]> | 2025-07-09 17:29:25 -0500 |
|---|---|---|
| committer | Minkyu Kang <[email protected]> | 2025-07-25 10:17:21 +0900 |
| commit | fd76fdc34efd5709bb2cd47e3d099e2cffcb2192 (patch) | |
| tree | 2ae59ccbfe1ce65b794001f3d7ce5c52eee5c410 /configs | |
| parent | 9472bc2b504603716fe79360e917a1b2aaf456ae (diff) | |
board: samsung: e850-96: Enable EFI Capsule Update mechanism
Make it possible to update E850-96 firmware binaries using EFI Capsule
Update mechanism. For example, to update the U-Boot binary, the capsule
file can be generated like this:
$ ./tools/mkeficapsule --index 4 \
--guid 629578c3-ffb3-4a89-ac0c-611840727779 \
u-boot.bin capsule4.bin
The resulting 'capsule4.bin' should be copied to ESP partition (in
/boot/efi/EFI/UpdateCapsule/ directory). Then after reboot U-Boot will
update the 'bootloader' area in eMMC Boot Partition A (boot0) and remove
the capsule file, by EFI boot manager executed as a part of Standard
Boot:
Applying capsule capsule4.bin succeeded.
Reboot after firmware update.
The kernel will also expose the ESRT table information via SysFS in
/sys/firmware/efi/esrt/entries.
Signed-off-by: Sam Protsenko <[email protected]>
Signed-off-by: Minkyu Kang <[email protected]>
Diffstat (limited to 'configs')
| -rw-r--r-- | configs/e850-96_defconfig | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/configs/e850-96_defconfig b/configs/e850-96_defconfig index 96e91959f16..e334efd4d5f 100644 --- a/configs/e850-96_defconfig +++ b/configs/e850-96_defconfig @@ -15,6 +15,9 @@ CONFIG_SYS_LOAD_ADDR=0x80000000 CONFIG_ENV_OFFSET_REDUND=0x10000 # CONFIG_PSCI_RESET is not set CONFIG_EFI_SET_TIME=y +CONFIG_EFI_RUNTIME_UPDATE_CAPSULE=y +CONFIG_EFI_CAPSULE_ON_DISK=y +CONFIG_EFI_CAPSULE_FIRMWARE_RAW=y CONFIG_BOOTSTD_FULL=y CONFIG_DEFAULT_FDT_FILE="exynos850-e850-96.dtb" # CONFIG_DISPLAY_CPUINFO is not set |
