]> git.dujemihanovic.xyz Git - u-boot.git/commit
efi_loader: Add a test app
authorSimon Glass <sjg@chromium.org>
Thu, 7 Nov 2024 21:31:41 +0000 (14:31 -0700)
committerHeinrich Schuchardt <heinrich.schuchardt@canonical.com>
Sat, 9 Nov 2024 08:59:41 +0000 (09:59 +0100)
commit34d2faaef6cf14a0578f09f798b8bf36d28e84ad
tree4a1c98d1fd7041d9b743cc3630c2df578d6e3c2c
parentb1e9a8bba46f335a73b9bb0fda5fb8da382dbb15
efi_loader: Add a test app

Add a simple app to use for testing. This is intended to do whatever it
needs to for testing purposes. For now it just prints a message and
exits boot services.

There was a considerable amount of discussion about whether it is OK to
call exit-boot-services and then return to U-Boot. This is not normally
done in a real application, since exit-boot-services is used to
completely disconnect from U-Boot. For now, this part is skipped.

Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Heinrich Schuchardt <heinrich.schuchardt@canonical.com>
lib/efi_loader/Kconfig
lib/efi_loader/Makefile
lib/efi_loader/testapp.c [new file with mode: 0644]