Add initial support for a CBFS module for coreinfo.
[coreboot.git] / payloads / coreinfo / coreinfo.c
index befe988c2d68d312ed774e2961e303855b0cc8d9..846cf77c1852aca008fbc69024b7b2eac8a3369a 100644 (file)
@@ -32,6 +32,7 @@ extern struct coreinfo_module nvram_module;
 extern struct coreinfo_module bootlog_module;
 extern struct coreinfo_module ramdump_module;
 extern struct coreinfo_module lar_module;
+extern struct coreinfo_module cbfs_module;
 
 struct coreinfo_module *system_modules[] = {
 #ifdef CONFIG_MODULE_CPUINFO
@@ -59,7 +60,10 @@ struct coreinfo_module *firmware_modules[] = {
        &bootlog_module,
 #endif
 #ifdef CONFIG_MODULE_LAR
-       &lar_module
+       &lar_module,
+#endif
+#ifdef CONFIG_MODULE_CBFS
+       &cbfs_module,
 #endif
 };