diff options
author | 2023-10-10 14:33:42 +0000 | |
---|---|---|
committer | 2023-10-10 14:33:42 +0000 | |
commit | af1a266670d040d2f4083ff309d732d648afba2a (patch) | |
tree | 2fc46203448ddcc6f81546d379abfaeb323575e9 /roms/u-boot/board/efi/efi-x86_app | |
parent | e02cda008591317b1625707ff8e115a4841aa889 (diff) |
Change-Id: Iaf8d18082d3991dec7c0ebbea540f092188eb4ec
Diffstat (limited to 'roms/u-boot/board/efi/efi-x86_app')
-rw-r--r-- | roms/u-boot/board/efi/efi-x86_app/Kconfig | 15 | ||||
-rw-r--r-- | roms/u-boot/board/efi/efi-x86_app/MAINTAINERS | 6 | ||||
-rw-r--r-- | roms/u-boot/board/efi/efi-x86_app/Makefile | 5 | ||||
-rw-r--r-- | roms/u-boot/board/efi/efi-x86_app/app.c | 6 |
4 files changed, 32 insertions, 0 deletions
diff --git a/roms/u-boot/board/efi/efi-x86_app/Kconfig b/roms/u-boot/board/efi/efi-x86_app/Kconfig new file mode 100644 index 000000000..ae87bf34d --- /dev/null +++ b/roms/u-boot/board/efi/efi-x86_app/Kconfig @@ -0,0 +1,15 @@ +if TARGET_EFI_APP + +config SYS_BOARD + default "efi-x86_app" + +config SYS_VENDOR + default "efi" + +config SYS_SOC + default "efi" + +config SYS_CONFIG_NAME + default "efi-x86_app" + +endif diff --git a/roms/u-boot/board/efi/efi-x86_app/MAINTAINERS b/roms/u-boot/board/efi/efi-x86_app/MAINTAINERS new file mode 100644 index 000000000..fb8a6b1c2 --- /dev/null +++ b/roms/u-boot/board/efi/efi-x86_app/MAINTAINERS @@ -0,0 +1,6 @@ +EFI-X86_APP BOARD +M: Simon Glass <sjg@chromium.org> +S: Maintained +F: board/efi/efi-x86_app/ +F: include/configs/efi-x86_app.h +F: configs/efi-x86_app_defconfig diff --git a/roms/u-boot/board/efi/efi-x86_app/Makefile b/roms/u-boot/board/efi/efi-x86_app/Makefile new file mode 100644 index 000000000..cb48d1ccc --- /dev/null +++ b/roms/u-boot/board/efi/efi-x86_app/Makefile @@ -0,0 +1,5 @@ +# SPDX-License-Identifier: GPL-2.0+ +# +# Copyright (c) 2015 Google, Inc + +obj-y += app.o diff --git a/roms/u-boot/board/efi/efi-x86_app/app.c b/roms/u-boot/board/efi/efi-x86_app/app.c new file mode 100644 index 000000000..da3445bb1 --- /dev/null +++ b/roms/u-boot/board/efi/efi-x86_app/app.c @@ -0,0 +1,6 @@ +// SPDX-License-Identifier: GPL-2.0+ +/* + * Copyright (C) 2015 Google, Inc + */ + +#include <common.h> |