blob: 9320aff0a20f7521518291a101e6ff5710424ce8 [file] [log] [blame]
Kuninori Morimoto9a4af112010-12-01 07:45:00 +01001#ifndef ZBOOT_H
2#define ZBOOT_H
3
Kuninori Morimoto3d09fbc2010-12-01 07:40:16 +01004#include <asm/mach-types.h>
5#include <mach/zboot_macros.h>
6
Kuninori Morimoto9a4af112010-12-01 07:45:00 +01007/**************************************************
8 *
9 * board specific settings
10 *
11 **************************************************/
12
Kuninori Morimoto3d09fbc2010-12-01 07:40:16 +010013#ifdef CONFIG_MACH_AP4EVB
14#define MACH_TYPE MACH_TYPE_AP4EVB
15#include "mach/head-ap4evb.txt"
Simon Horman4a0f0812011-04-04 06:45:21 +000016#elif defined(CONFIG_MACH_MACKEREL)
Simon Hormaneb6908a22010-12-09 00:47:15 +000017#define MACH_TYPE MACH_TYPE_MACKEREL
18#include "mach/head-mackerel.txt"
Kuninori Morimoto3d09fbc2010-12-01 07:40:16 +010019#else
Kuninori Morimoto9a4af112010-12-01 07:45:00 +010020#error "unsupported board."
Kuninori Morimoto3d09fbc2010-12-01 07:40:16 +010021#endif
Kuninori Morimoto9a4af112010-12-01 07:45:00 +010022
23#endif /* ZBOOT_H */