summaryrefslogtreecommitdiff
path: root/src/mainboard/facebook
diff options
context:
space:
mode:
authorWim Vervoorn <wvervoorn@eltan.com>2019-11-13 17:01:33 +0100
committerPatrick Georgi <pgeorgi@google.com>2019-11-15 10:55:15 +0000
commit628beff58c622fd6741601273bf79507513b2f0a (patch)
treec1e68d5502f87aad9a24cc7049f986cb9c86cf19 /src/mainboard/facebook
parent0bb4f0c766649758abd6f8faaaadf868fcb01917 (diff)
downloadcoreboot-628beff58c622fd6741601273bf79507513b2f0a.tar.xz
mb/facebook/fbg1701: Stagenames now use CONFIG_CBFS_PREFIX
Change from hardcoded "fallback/*" to using CONFIG_CBFS_PREFIX. BUG=N/A TEST=tested on fbg1701 Change-Id: Ie728d01ebb93edd88516e91528ecaaa3f139b7a9 Signed-off-by: Wim Vervoorn <wvervoorn@eltan.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/36819 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Patrick Georgi <pgeorgi@google.com> Reviewed-by: Frans Hendriks <fhendriks@eltan.com>
Diffstat (limited to 'src/mainboard/facebook')
-rw-r--r--src/mainboard/facebook/fbg1701/onboard.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mainboard/facebook/fbg1701/onboard.h b/src/mainboard/facebook/fbg1701/onboard.h
index cb784daf69..c22a63a04a 100644
--- a/src/mainboard/facebook/fbg1701/onboard.h
+++ b/src/mainboard/facebook/fbg1701/onboard.h
@@ -27,10 +27,10 @@
/* Define the items to be measured or verified */
#define FSP (const char *)"fsp.bin"
#define CMOS_LAYOUT (const char *)"cmos_layout.bin"
-#define RAMSTAGE (const char *)"fallback/ramstage"
-#define ROMSTAGE (const char *)"fallback/romstage"
-#define PAYLOAD (const char *)"fallback/payload"
-#define POSTCAR (const char *)"fallback/postcar"
+#define RAMSTAGE (const char *)CONFIG_CBFS_PREFIX"/ramstage"
+#define ROMSTAGE (const char *)CONFIG_CBFS_PREFIX"/romstage"
+#define PAYLOAD (const char *)CONFIG_CBFS_PREFIX"/payload"
+#define POSTCAR (const char *)CONFIG_CBFS_PREFIX"/postcar"
#define OP_ROM_VBT (const char *)"vbt.bin"
#define MICROCODE (const char *)"cpu_microcode_blob.bin"