[coreboot-gerrit] Patch set updated for coreboot: a1466e4 util/cbmem: Workaround for IS_ENABLED()

Kyösti Mälkki (kyosti.malkki@gmail.com) gerrit at coreboot.org
Fri Jun 20 07:26:47 CEST 2014


Kyösti Mälkki (kyosti.malkki at gmail.com) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/6066

-gerrit

commit a1466e45035c982b203d3cfc6b6ac4501788890b
Author: Kyösti Mälkki <kyosti.malkki at gmail.com>
Date:   Wed Jun 18 00:43:35 2014 +0300

    util/cbmem: Workaround for IS_ENABLED()
    
    Our include files reference CONFIG_xxx declarations, which we should
    ignore for utility build.
    
    We cannot include kconfig.h to get IS_ENABLED() as that file
    would require build/config.h and we do not want to enforce a build
    of the firmware to be able to build the utility.
    
    Since we do not include build/config.h each occurence of CONFIG_xxx
    in the included header files is undefined and will be treated as
    disabled.
    
    Change-Id: I74f1627fc3f294410db8ce486ab553dac9e967f4
    Signed-off-by: Kyösti Mälkki <kyosti.malkki at gmail.com>
---
 util/cbmem/cbmem.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/util/cbmem/cbmem.c b/util/cbmem/cbmem.c
index 9ad1214..fabede3 100644
--- a/util/cbmem/cbmem.c
+++ b/util/cbmem/cbmem.c
@@ -36,6 +36,7 @@
 
 #define ARRAY_SIZE(a) (sizeof(a) / sizeof((a)[0]))
 #define MAP_BYTES (1024*1024)
+#define IS_ENABLED(x) (defined (x) && (x))
 
 #include "boot/coreboot_tables.h"
 



More information about the coreboot-gerrit mailing list