1#ifndef ZBOOT_H
2#define ZBOOT_H
3
4#include <mach/zboot_macros.h>
5
6/**************************************************
7 *
8 *		board specific settings
9 *
10 **************************************************/
11
12#ifdef CONFIG_MACH_KZM9G
13#define MEMORY_START	0x43000000
14#include "mach/head-kzm9g.txt"
15#else
16#error "unsupported board."
17#endif
18
19#endif /* ZBOOT_H */
20