diff options
-rw-r--r-- | Makefile.inc | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/Makefile.inc b/Makefile.inc index 64cfc8694b..0098ab2b86 100644 --- a/Makefile.inc +++ b/Makefile.inc @@ -605,14 +605,6 @@ extract_nth=$(subst *,$(spc),$(patsubst -%-,%,$(word $(1), $(subst |,- -,-$(2)-) # multiple CBFSes in fmap regions, override it. regions-for-file ?= COREBOOT -# The last sequence of the cbfs-add-cmd-for-region allows for per-file CBFS -# options associated with a given region. The following example adds -# '-b 0x10000' to the cbfstool arguments when being added to the COREBOOT -# region. This allows options to specifically target certain CBFS regions. -# -# cbfs-files-y += file.bin -# file.bin-COREBOOT-cbfstool-opts := -b 0x10000 - ifeq ($(CONFIG_CBFS_AUTOGEN_ATTRIBUTES),y) cbfs-autogen-attributes=-g endif @@ -633,8 +625,7 @@ define cbfs-add-cmd-for-region -r $(2) \ $(if $(call extract_nth,6,$(1)),-a $(call extract_nth,6,$(file)), \ $(if $(call extract_nth,5,$(file)),-b $(call extract_nth,5,$(file)))) \ - $(call extract_nth,7,$(1)) \ - $($(call extract_nth,2,$(1))-$(2)-cbfstool-opts) + $(call extract_nth,7,$(1)) endef |