mirror of
https://github.com/linuxboot/heads.git
synced 2024-12-20 13:33:10 +00:00
23 lines
577 B
Plaintext
23 lines
577 B
Plaintext
# This is only needed for building NERF firmware
|
|
# coreboot systems do not require this tree
|
|
modules-$(CONFIG_EDK2) += edk2
|
|
|
|
edk2_branch := UDK2017
|
|
edk2_version := git
|
|
edk2_repo := --branch $(edk2_branch) --depth 1 https://github.com/tianocore/edk2
|
|
edk2_dir := edk2-$(edk2_branch)
|
|
|
|
# we don't build with our cross compiler since there isn't a host versus
|
|
# target difference in their makefiles.
|
|
#edk2_depends := musl-cross
|
|
|
|
edk2_configure := \
|
|
$(MAKE) \
|
|
-C BaseTools \
|
|
&& pwd \
|
|
&& cp ../../config/edk2.config ./Conf/target.txt \
|
|
&& . ./edksetup.sh
|
|
|
|
edk2_target := \
|
|
all
|