zboot.h 427 B

123456789101112131415161718192021
  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_MACKEREL
  11. #define MACH_TYPE MACH_TYPE_MACKEREL
  12. #define MEMORY_START 0x40000000
  13. #include "mach/head-mackerel.txt"
  14. #else
  15. #error "unsupported board."
  16. #endif
  17. #endif /* ZBOOT_H */