]> git.kernelconcepts.de Git - karo-tx-uboot.git/blobdiff - include/common.h
env: only build env_embedded and envcrc when needed
[karo-tx-uboot.git] / include / common.h
index f7c93bf5a6d427d97108a73146c22482fe285633..7df9afab2b5c7b463068dc09f8386adabf719531 100644 (file)
@@ -719,4 +719,9 @@ int cpu_release(int nr, int argc, char *argv[]);
 #define ALIGN(x,a)             __ALIGN_MASK((x),(typeof(x))(a)-1)
 #define __ALIGN_MASK(x,mask)   (((x)+(mask))&~(mask))
 
+/* Pull in stuff for the build system */
+#ifdef DO_DEPS_ONLY
+# include <environment.h>
+#endif
+
 #endif /* __COMMON_H_ */