From c3eb3fe490daeb3746e5b1fe354ff1a19eb3e3a8 Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Fri, 8 Jul 2011 10:44:25 +0000 Subject: env: allow people to force envcrc building For people who want to manually extract the embedded environment so that it can be manually packed into the final u-boot image, add a config opt to force building of the envcrc tool. Signed-off-by: Mike Frysinger --- include/common.h | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'include') diff --git a/include/common.h b/include/common.h index 2c779ed..3113580 100644 --- a/include/common.h +++ b/include/common.h @@ -761,4 +761,9 @@ int cpu_release(int nr, int argc, char * const 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 +#endif + #endif /* __COMMON_H_ */ -- cgit v1.1