From mboxrd@z Thu Jan 1 00:00:00 1970 From: Boris Brezillon Date: Thu, 29 Nov 2018 10:21:14 +0100 Subject: [U-Boot] [PATCH v2 01/24] Makefile: move MTD-related lines in coherent Makefiles In-Reply-To: <20181129101650.4a44d06a@xps13> References: <20181128230800.13292-1-miquel.raynal@bootlin.com> <20181128230800.13292-2-miquel.raynal@bootlin.com> <20181129004623.084c2d50@bbrezillon> <20181129101650.4a44d06a@xps13> Message-ID: <20181129102115.107844f8@bbrezillon> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de On Thu, 29 Nov 2018 10:16:50 +0100 Miquel Raynal wrote: > Hi Boris, > > Boris Brezillon wrote on Thu, 29 Nov 2018 > 00:46:23 +0100: > > > On Thu, 29 Nov 2018 00:07:37 +0100 > > Miquel Raynal wrote: > > > > > > > --- a/drivers/Makefile > > > +++ b/drivers/Makefile > > > @@ -6,7 +6,7 @@ obj-$(CONFIG_$(SPL_TPL_)DRIVERS_MISC_SUPPORT) += misc/ sysreset/ firmware/ > > > obj-$(CONFIG_$(SPL_TPL_)I2C_SUPPORT) += i2c/ > > > obj-$(CONFIG_$(SPL_TPL_)LED) += led/ > > > obj-$(CONFIG_$(SPL_TPL_)MMC_SUPPORT) += mmc/ > > > -obj-$(CONFIG_$(SPL_TPL_)NAND_SUPPORT) += mtd/nand/raw/ > > > +obj-$(CONFIG_$(SPL_TPL_)NAND_SUPPORT) += mtd/nand/ > > > > Can't we have > > += mtd/ > > > > instead? > > You are right the SPL Makefile lines needs to be improved as well. I > propose the following diff for that. This is much better. Thanks for addressing that. Boris