Files
u-boot/lib/efi_client/efi_dtb.S
Simon Glass 5f4327ec9f efi: Rename the lib/efi directory
This directory was created when U-Boot gained the ability to run as an
EFI app in 2015. Since then the EFI-loader feature has been added.

The code in lib/efi is not actually used by the loader, so the name is
confusing.

Rename the directory to efi_client to indicate that it includes files
just for U-Boot being a client of EFI, i.e. the EFI app and stub.

Signed-off-by: Simon Glass <sjg@chromium.org>
2025-05-28 08:02:11 +01:00

7 lines
137 B
ArmAsm

/* SPDX-License-Identifier: GPL-2.0+ */
#ifdef CONFIG_OF_SEPARATE
.section .embedded_dtb, "a"
.globl __dtb
__dtb: .fill 1024*1024
#endif