717ba74836
Currently, adding a payload to CBFS using the build system, the warning
below is shown.
W: Unknown type 'payload' ignored
Update payload type from "simple elf" to "simple_elf" and rename the
word "payload" to "simple_elf" in all Makefiles.
Fixes: 4f5bed52
(cbfs: Rename CBFS_TYPE_PAYLOAD to CBFS_TYPE_SELF)
Change-Id: Iccf6cc889b7ddd0c6ae04bda194fe5f9c00e495d
Signed-off-by: Paul Menzel <paulepanter@users.sourceforge.net>
Signed-off-by: Patrick Rudolph <patrick.rudolph@9elements.com>
Reviewed-on: https://review.coreboot.org/26240
Reviewed-by: Julius Werner <jwerner@chromium.org>
Reviewed-by: Nico Huber <nico.h@gmx.de>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
54 lines
1.8 KiB
Makefile
54 lines
1.8 KiB
Makefile
##
|
|
## This file is part of the coreboot project.
|
|
##
|
|
## Copyright (C) 2016 Google Inc.
|
|
##
|
|
## This program is free software; you can redistribute it and/or modify
|
|
## it under the terms of the GNU General Public License as published by
|
|
## the Free Software Foundation; version 2 of the License.
|
|
##
|
|
## This program is distributed in the hope that it will be useful,
|
|
## but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
## GNU General Public License for more details.
|
|
##
|
|
|
|
cbfs-files-$(CONFIG_COREINFO_SECONDARY_PAYLOAD) += img/coreinfo
|
|
img/coreinfo-file := payloads/coreinfo/build/coreinfo.elf
|
|
img/coreinfo-type := simple_elf
|
|
img/coreinfo-compression := $(CBFS_SECONDARY_PAYLOAD_COMPRESS_FLAG)
|
|
|
|
cbfs-files-$(CONFIG_NVRAMCUI_SECONDARY_PAYLOAD) += img/nvramcui
|
|
img/nvramcui-file := payloads/nvramcui/nvramcui.elf
|
|
img/nvramcui-type := simple_elf
|
|
img/nvramcui-compression := $(CBFS_SECONDARY_PAYLOAD_COMPRESS_FLAG)
|
|
|
|
PAYLOADS_LIST=\
|
|
payloads/coreinfo \
|
|
payloads/nvramcui \
|
|
payloads/libpayload \
|
|
payloads/external/depthcharge \
|
|
payloads/external/SeaBIOS \
|
|
payloads/external/U-Boot \
|
|
payloads/external/Memtest86Plus \
|
|
payloads/external/iPXE \
|
|
payloads/external/tint \
|
|
payloads/external/tianocore \
|
|
payloads/external/GRUB2 \
|
|
|
|
payloads/coreinfo/build/coreinfo.elf coreinfo:
|
|
$(MAKE) -C payloads/coreinfo defaultbuild
|
|
|
|
payloads/nvramcui/nvramcui.elf nvramcui:
|
|
$(MAKE) -C payloads/nvramcui
|
|
|
|
clean-payloads:
|
|
$(foreach payload, $(PAYLOADS_LIST), $(MAKE) -C $(payload) clean; )
|
|
|
|
distclean-payloads:
|
|
$(foreach payload, $(PAYLOADS_LIST), $(MAKE) -C $(payload) distclean; )
|
|
|
|
print-repo-info-payloads:
|
|
-$(foreach payload, $(PAYLOADS_LIST), $(MAKE) -C $(payload) print-repo-info 2>/dev/null; )
|
|
|
|
.PHONY: clean-payloads distclean-payloads print-repo-info-payloads nvramcui coreinfo
|