From mboxrd@z Thu Jan 1 00:00:00 1970 From: Masahiro Yamada Date: Thu, 14 May 2015 22:04:05 +0900 Subject: [U-Boot] [PATCH v3 01/10] moveconfig: Actually build autoconf.mk In-Reply-To: <1431556137-8426-1-git-send-email-joe.hershberger@ni.com> References: <1431364998-2905-1-git-send-email-joe.hershberger@ni.com> <1431556137-8426-1-git-send-email-joe.hershberger@ni.com> Message-ID: List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de 2015-05-14 7:28 GMT+09:00 Joe Hershberger : > The existing target won't actually build the needed .mk file that is > expected by the rest of the script. It seems that silentoldconfig does > not actually cause this to be built any longer. > > Signed-off-by: Joe Hershberger > --- > This patch is based on: > "Don't apply: tools: add a tool to move automatically CONFIGs from headers to defconfigs" > from the list. > > Also dropped the patch that adds an arc cross-tool mapping. > > Changes in v3: None > Changes in v2: None > > tools/moveconfig.py | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/tools/moveconfig.py b/tools/moveconfig.py > index cb7f7ea..30dc4f6 100755 > --- a/tools/moveconfig.py > +++ b/tools/moveconfig.py > @@ -301,7 +301,7 @@ class Slot: > cmd = list(self.make_cmd) > if cross_compile: > cmd.append('CROSS_COMPILE=%s' % cross_compile) > - cmd.append('silentoldconfig') > + cmd.append('include/autoconf.mk') > self.ps = subprocess.Popen(cmd, stdout=self.devnull) > self.state = STATE_SILENTOLDCONFIG > return False Yup, the 'Don't apply' version is not working since I removed scripts/multiconfig.sh. I had locally modified this tool though I tweaked a bit differently. -- Best Regards Masahiro Yamada