zboot.h 496 B

123456789101112131415161718192021222324
  1. #ifndef ZBOOT_H
  2. #define ZBOOT_H
  3. #include <asm/mach-types.h>
  4. #include <mach/zboot_macros.h>
  5. /**************************************************
  6. *
  7. * board specific settings
  8. *
  9. **************************************************/
  10. #ifdef CONFIG_MACH_AP4EVB
  11. #define MACH_TYPE MACH_TYPE_AP4EVB
  12. #include "mach/head-ap4evb.txt"
  13. #elif defined(CONFIG_MACH_MACKEREL)
  14. #define MACH_TYPE MACH_TYPE_MACKEREL
  15. #include "mach/head-mackerel.txt"
  16. #else
  17. #error "unsupported board."
  18. #endif
  19. #endif /* ZBOOT_H */