config.h 583 B

123456789101112131415161718192021222324252627
  1. /*
  2. * LZMA compressed kernel loader for Atheros AR7XXX/AR9XXX based boards
  3. *
  4. * Copyright (C) 2011 Gabor Juhos <juhosg@openwrt.org>
  5. *
  6. * This program is free software; you can redistribute it and/or modify it
  7. * under the terms of the GNU General Public License version 2 as published
  8. * by the Free Software Foundation.
  9. *
  10. */
  11. #ifndef _CONFIG_H_
  12. #define _CONFIG_H_
  13. #ifndef CONFIG_FLASH_OFFS
  14. #define CONFIG_FLASH_OFFS 0
  15. #endif
  16. #ifndef CONFIG_FLASH_MAX
  17. #define CONFIG_FLASH_MAX 0
  18. #endif
  19. #ifndef CONFIG_FLASH_STEP
  20. #define CONFIG_FLASH_STEP 0x1000
  21. #endif
  22. #endif /* _CONFIG_H_ */