This compiles, but it's not tested yet. Change-Id: I2f73a814649aa36c39af3e77cefd8a968671f5c0 Signed-off-by: Stefan Reinauer <reinauer@google.com> Reviewed-on: http://review.coreboot.org/2035 Tested-by: build bot (Jenkins) Reviewed-by: Ronald G. Minnich <rminnich@gmail.com>
		
			
				
	
	
		
			17 lines
		
	
	
		
			388 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			388 B
		
	
	
	
		
			C
		
	
	
	
	
	
#include <arch/types.h>
 | 
						|
 | 
						|
/* FIXME: workaround for coreboot/libpayload Kconfig differences */
 | 
						|
#ifndef CONFIG_ARCH_ARMV7
 | 
						|
#define CONFIG_ARCH_ARMV7 0
 | 
						|
#endif
 | 
						|
#ifndef CONFIG_ARCH_POWERPC
 | 
						|
#define CONFIG_ARCH_POWERPC 0
 | 
						|
#endif
 | 
						|
#ifndef CONFIG_ARCH_X86
 | 
						|
#define CONFIG_ARCH_X86 0
 | 
						|
#endif
 | 
						|
 | 
						|
#include "cbfs_core.h"
 | 
						|
void setup_cbfs_from_ram(void* start, uint32_t size);
 | 
						|
void setup_cbfs_from_flash(void);
 |