20 lines
362 B
C
20 lines
362 B
C
#ifndef ZBOOT_H
|
|
#define ZBOOT_H
|
|
|
|
#include <mach/zboot_macros.h>
|
|
|
|
/**************************************************
|
|
*
|
|
* board specific settings
|
|
*
|
|
**************************************************/
|
|
|
|
#ifdef CONFIG_MACH_MACKEREL
|
|
#define MEMORY_START 0x40000000
|
|
#include "mach/head-mackerel.txt"
|
|
#else
|
|
#error "unsupported board."
|
|
#endif
|
|
|
|
#endif /* ZBOOT_H */
|