diff options
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> |