Deploying EDK2
As the foundational system framework, EDK2 provides support for secure boot and firmware management.
- Install EDK2.
- View the edk2-aarch64 version of the openEuler 24.03 LTS SP2 source.
yum list | grep edk2-aarch64

- Install version 23 or later of edk2-aarch64.
yum install edk2-aarch64 -y
- View the edk2-aarch64 version of the openEuler 24.03 LTS SP2 source.
- After the installation is complete, view the edk2-aarch64 path.
rpm -ql edk2-aarch64

- Set the size of the QEMU_EFI.fd file to a multiplier of 64 MB.
fallocate -l $((64 * 1024 * 1024)) /usr/share/edk2/aarch64/QEMU_EFI.fd
Parent topic: Software Deployment