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