blob: 6d6a205bcf90091aec506b6cae8d0af2c2d09767 [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 Hormaneb6908a22010-12-09 00:47:15 +000016#elif CONFIG_MACH_MACKEREL
17#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 */