From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751941AbcGRMu3 (ORCPT ); Mon, 18 Jul 2016 08:50:29 -0400 Received: from mout.kundenserver.de ([212.227.126.135]:61241 "EHLO mout.kundenserver.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751870AbcGRMu0 (ORCPT ); Mon, 18 Jul 2016 08:50:26 -0400 From: Arnd Bergmann To: Fengguang Wu Cc: linux-kernel@vger.kernel.org, linux-arm-kernel@lists.infradead.org, Thierry Reding , devicetree@vger.kernel.org, linux-kbuild Subject: Re: running "make dtbs" for test builds Date: Mon, 18 Jul 2016 14:49:52 +0200 Message-ID: <1887216.FoLArqn3oq@wuerfel> User-Agent: KMail/5.1.3 (Linux/4.4.0-28-generic; KDE/5.18.0; x86_64; ; ) In-Reply-To: <20160718122947.GA29820@wfg-t540p.sh.intel.com> References: <8924490.SntxSU2FOC@wuerfel> <20160718122947.GA29820@wfg-t540p.sh.intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" X-Provags-ID: V03:K0:aVoIpLKeKjH6AIKtyH8/Sz6BkdkZilLEPV2pDGdFQNZ1KDzBTU1 ZC5fqS4whtKNOUGXe9dOWVxzN1F5yABAfQOPbUF6Q2AIGwCWESfVhpD/uwjElze007QjAA8 X1kgT6TIUAiBJsY4HXssNuYqoHON42MmPDOpZbUyuAK6tEscFFwY0SVf8QfBSgO+0BjT2Gx jToqOn8IBWpr7gIcgGirw== X-UI-Out-Filterresults: notjunk:1;V01:K0:7NJQNuUmF28=:FHjJ5xqNDv9TSoSdFrxkMY agddK+D/gOO5TTvQwU2ElK/85LtM0ti0JfoiQN5cUVADLIn3tf5BMCwCLw44xebENYxuZ3ipe h3IP9zMJyLgQa2hwful8kNhLTbS7xEO+IgS/SDkN9T1qAkenNRX+CN2RZe6F9oSG8s1snl6Dr dXoxPHMfJ1It0lIsbrL5Bl7/+uC+nyiuJSJuvx0TgCbnjX3m5/YaThYagZLvNVn7rYD9apQOw LbNX6928tpBrM1zKn87BSsGKcEgEUWJ/P62TMenyczZk5evxFZQvn0ZxEM35gfblPkGSypsm+ JXzS0bgO82OAmqWuVCKbTp5yZrKExQ+s8YxH4qQZobRRav2Mstc+FHvOlVjY6xmwABsXii2Oj NfnIoqp1mrMi/KSzFRr+TGOcXfCcXdg8WZ/ZNGX4dbkS8ro3RHVcLeiki8LwtMZJ4kdNxCJrM qQdxe51zyI3lHap/ynUo0ohic5wJ0+c8T3qT++gatYUFjYiQ5NWrfxufeBCSywATsL2Lk3AkT a7+MnQKzhb88z3Hq2v08a/z+7YSN7dWWSf96G4hW0n+jSdS7UlboF3kTPsCNFb9s2sX6ND9ac UfsxN5PQ/aCSL3C5z7HoVYgp8aVzPCRihJKcgpVnZvlCLhBt6Kubcg65mPPKaNAPlujAkfX5j NSaLon0tEQHC5Pic58PyerTy/B3n9q/A5MCPkL/2hkyplSiE2qVxPVJZbtIRcYrdfzr4j3AxH cLmCpaN04ffxBkSO Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Monday, July 18, 2016 8:29:47 PM CEST Fengguang Wu wrote: > >- setting CONFIG_OF_ALL_DTBS will catch all files, not just the > > ones that are built by default for the set of configurations you > > have. It's possible to simply override this on the command line, > > using "make CONFIG_OF_ALL_DTBS=y", it doesn't actually have to > > be part of the configuration. The result is independent of the > > actual configuration, so it should be enough to do this once > > per architecture and source revision. > > > >Is this something you can add? > > Do you mean to simply change the main "make" command line to > > make ARCH=xxx CONFIG_OF_ALL_DTBS=y > > Which looks safe even for ARCHs that do not support it. > > The arch/.../Makefile that actually use it are: > > arch/arc/boot/dts/Makefile > arch/arm/boot/dts/Makefile > arch/arm64/boot/dts/Makefile > arch/h8300/boot/dts/Makefile > arch/metag/boot/dts/Makefile > arch/mips/boot/dts/Makefile > arch/xtensa/boot/dts/Makefile > Sounds good, thanks! Arnd