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