Paul Menzel (paulepanter@users.sourceforge.net) just uploaded a new patch set to gerrit, which you can find at https://review.coreboot.org/17792
-gerrit
commit 951512b2890753c1bc68e00c37e57a2fb2157106 Author: Paul Menzel paulepanter@users.sourceforge.net Date: Sun Dec 11 11:10:43 2016 +0100
Makefile.inc: Prefix config and revision with mode
Currently, it’s not possible to put the config file and revision file for the fallback and normal image into the same image, as the prefix are not part of the name.
Make that possible, by putting the configured prefix in front of them.
Change-Id: I9ee783bd1262be27539c3ba7bfde0e3464d012db Signed-off-by: Paul Menzel paulepanter@users.sourceforge.net --- Makefile.inc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/Makefile.inc b/Makefile.inc index a193158..2a940dd 100644 --- a/Makefile.inc +++ b/Makefile.inc @@ -952,11 +952,11 @@ cbfs-files-$(CONFIG_SEABIOS_VGA_COREBOOT) += vgaroms/seavgabios.bin vgaroms/seavgabios.bin-file := $(CONFIG_PAYLOAD_VGABIOS_FILE) vgaroms/seavgabios.bin-type := raw
-cbfs-files-$(CONFIG_INCLUDE_CONFIG_FILE) += config +cbfs-files-$(CONFIG_INCLUDE_CONFIG_FILE) += $(CONFIG_CBFS_PREFIX)/config config-file := $(DOTCONFIG):defconfig config-type := raw
-cbfs-files-$(CONFIG_INCLUDE_CONFIG_FILE) += revision +cbfs-files-$(CONFIG_INCLUDE_CONFIG_FILE) += $(CONFIG_CBFS_PREFIX)/revision revision-file := $(obj)/build.h revision-type := raw