intel/gma/Makefile.inc: Add a helper function to add VBT binaries
This adds a convenient helper function to add vbt binaries to cbfs. Change-Id: I80d9b3421f6e539879ad4802119fe81d7ea1e234 Signed-off-by: Arthur Heymans <arthur@aheymans.xyz> Reviewed-on: https://review.coreboot.org/c/30430 Reviewed-by: Tristan Corrick <tristan@corrick.kiwi> Reviewed-by: Patrick Rudolph <siro@das-labor.org> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:
parent
d3f01b21fa
commit
322f76dfbf
|
@ -21,10 +21,17 @@ endif
|
||||||
ramstage-$(CONFIG_INTEL_GMA_ACPI) += acpi.c
|
ramstage-$(CONFIG_INTEL_GMA_ACPI) += acpi.c
|
||||||
ramstage-$(CONFIG_INTEL_GMA_ACPI) += opregion.c
|
ramstage-$(CONFIG_INTEL_GMA_ACPI) += opregion.c
|
||||||
|
|
||||||
cbfs-files-$(CONFIG_INTEL_GMA_ADD_VBT) += vbt.bin
|
# add_vbt_to_cbfs, first argument is the filename in cbfs, the second one
|
||||||
vbt.bin-file := $(call strip_quotes,$(CONFIG_INTEL_GMA_VBT_FILE))
|
# is the filename in the coreboot tree.
|
||||||
vbt.bin-type := raw
|
add_vbt_to_cbfs= \
|
||||||
vbt.bin-compression := lzma
|
$(eval cbfs-files-y += $1) \
|
||||||
|
$(eval $1-file := $2) \
|
||||||
|
$(eval $1-type := raw) \
|
||||||
|
$(eval $1-compression := lzma)
|
||||||
|
|
||||||
|
ifeq ($(CONFIG_INTEL_GMA_ADD_VBT),y)
|
||||||
|
$(call add_vbt_to_cbfs, vbt.bin, $(call strip_quotes,$(CONFIG_INTEL_GMA_VBT_FILE)))
|
||||||
|
endif
|
||||||
|
|
||||||
ifeq ($(CONFIG_MAINBOARD_USE_LIBGFXINIT),y)
|
ifeq ($(CONFIG_MAINBOARD_USE_LIBGFXINIT),y)
|
||||||
|
|
||||||
|
|
|
@ -20,11 +20,5 @@ romstage-y += gpio.c
|
||||||
|
|
||||||
ramstage-$(CONFIG_MAINBOARD_USE_LIBGFXINIT) += gma-mainboard.ads
|
ramstage-$(CONFIG_MAINBOARD_USE_LIBGFXINIT) += gma-mainboard.ads
|
||||||
|
|
||||||
add_vbt_to_cbfs= \
|
|
||||||
$(eval cbfs-files-y += $1) \
|
|
||||||
$(eval $1-file := $2) \
|
|
||||||
$(eval $1-type := raw) \
|
|
||||||
$(eval $1-compression := lzma)
|
|
||||||
|
|
||||||
$(call add_vbt_to_cbfs, data_ccfl.vbt, data_ccfl.vbt)
|
$(call add_vbt_to_cbfs, data_ccfl.vbt, data_ccfl.vbt)
|
||||||
$(call add_vbt_to_cbfs, data_led.vbt, data_led.vbt)
|
$(call add_vbt_to_cbfs, data_led.vbt, data_led.vbt)
|
||||||
|
|
Loading…
Reference in New Issue