From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ian Campbell Date: Fri, 29 Aug 2014 21:07:32 +0100 Subject: [U-Boot] tools-only build broken Message-ID: <1409342852.21481.73.camel@hellion.org.uk> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de The tools-only target is currently broken: $ make CROSS_COMPILE=arm-linux-gnueabihf- tools-only CHK include/config/uboot.release /bin/sh: 1: cannot open include/config/auto.conf: No such file Makefile:1052: recipe for target 'include/config/uboot.release' failed make: *** [include/config/uboot.release] Error 2 This is because tools-only depends on $(version_h), depends on include/config/uboot.release, depends include/config/auto.conf. I think this is all due to the support for LOCALVERSION(_AUTO). I'm not sure how to reconcile this, since the version stuff fundamentally needs the .config. Perhaps sandbox could be used? Ian.