2010-12-01 14:45:00 +08:00
|
|
|
#ifndef ZBOOT_H
|
|
|
|
#define ZBOOT_H
|
|
|
|
|
2010-12-01 14:40:16 +08:00
|
|
|
#include <asm/mach-types.h>
|
|
|
|
#include <mach/zboot_macros.h>
|
|
|
|
|
2010-12-01 14:45:00 +08:00
|
|
|
/**************************************************
|
|
|
|
*
|
|
|
|
* board specific settings
|
|
|
|
*
|
|
|
|
**************************************************/
|
|
|
|
|
2010-12-01 14:40:16 +08:00
|
|
|
#ifdef CONFIG_MACH_AP4EVB
|
|
|
|
#define MACH_TYPE MACH_TYPE_AP4EVB
|
|
|
|
#include "mach/head-ap4evb.txt"
|
|
|
|
#else
|
2010-12-01 14:45:00 +08:00
|
|
|
#error "unsupported board."
|
2010-12-01 14:40:16 +08:00
|
|
|
#endif
|
2010-12-01 14:45:00 +08:00
|
|
|
|
|
|
|
#endif /* ZBOOT_H */
|