u-boot-2011.03-drop-configh.patch 905 B

123456789101112131415161718192021222324252627
  1. "make tools-all" should allow building tools such as mkimage and the new
  2. imximage without any config, but imximage.c currently fails to build
  3. with:
  4. imximage.h:27:20: error: config.h: No such file or directory
  5. config.h is not needed in imximage.h nor in imximage.c, and imximage.h
  6. is only included from imximage.c, so drop this include to fix the build.
  7. Signed-off-by: Lo?c Minier <loic.minier@linaro.org>
  8. ---
  9. tools/imximage.h | 2 --
  10. 1 files changed, 0 insertions(+), 2 deletions(-)
  11. diff --git a/tools/imximage.h b/tools/imximage.h
  12. index 38ca6be..d126a46 100644
  13. --- a/tools/imximage.h
  14. +++ b/tools/imximage.h
  15. @@ -24,8 +24,6 @@
  16. #ifndef _IMXIMAGE_H_
  17. #define _IMXIMAGE_H_
  18. -#include <config.h>
  19. -
  20. #define MAX_HW_CFG_SIZE_V2 121 /* Max number of registers imx can set for v2 */
  21. #define MAX_HW_CFG_SIZE_V1 60 /* Max number of registers imx can set for v1 */
  22. #define APP_CODE_BARKER 0xB1
  23. -- 1.7.2.3