zboot.h 362 B

12345678910111213141516171819
  1. #ifndef ZBOOT_H
  2. #define ZBOOT_H
  3. #include <mach/zboot_macros.h>
  4. /**************************************************
  5. *
  6. * board specific settings
  7. *
  8. **************************************************/
  9. #ifdef CONFIG_MACH_MACKEREL
  10. #define MEMORY_START 0x40000000
  11. #include "mach/head-mackerel.txt"
  12. #else
  13. #error "unsupported board."
  14. #endif
  15. #endif /* ZBOOT_H */