Re: [U-Boot] [PATCH v6 20/31] mtd: declare MTD_PARTITIONS symbol in Kconfig

2018-09-03 Thread Miquel Raynal
Hi Jagan, Jagan Teki wrote on Mon, 3 Sep 2018 13:17:13 +0530: > On Thu, Aug 16, 2018 at 9:00 PM, Miquel Raynal > wrote: > > UBI selects MTD_PARTITIONS which is the symbol to compile > > drivers/mtd/mtdpart.c. Unfortunately, the symbol was not defined in > > Kconfig and this worked only with

Re: [U-Boot] [PATCH v6 20/31] mtd: declare MTD_PARTITIONS symbol in Kconfig

2018-09-03 Thread Miquel Raynal
Hi Jagan, Jagan Teki wrote on Mon, 3 Sep 2018 13:17:13 +0530: > On Thu, Aug 16, 2018 at 9:00 PM, Miquel Raynal > wrote: > > UBI selects MTD_PARTITIONS which is the symbol to compile > > drivers/mtd/mtdpart.c. Unfortunately, the symbol was not defined in > > Kconfig and this worked only with

Re: [U-Boot] [PATCH v6 20/31] mtd: declare MTD_PARTITIONS symbol in Kconfig

2018-09-03 Thread Jagan Teki
On Thu, Aug 16, 2018 at 9:00 PM, Miquel Raynal wrote: > UBI selects MTD_PARTITIONS which is the symbol to compile > drivers/mtd/mtdpart.c. Unfortunately, the symbol was not defined in > Kconfig and this worked only with board files defining it. Fix this by > adding a boolean in Kconfig so boards

Re: [U-Boot] [PATCH v6 20/31] mtd: declare MTD_PARTITIONS symbol in Kconfig

2018-08-16 Thread Boris Brezillon
On Thu, 16 Aug 2018 17:30:18 +0200 Miquel Raynal wrote: > UBI selects MTD_PARTITIONS which is the symbol to compile > drivers/mtd/mtdpart.c. Unfortunately, the symbol was not defined in > Kconfig and this worked only with board files defining it. Fix this by > adding a boolean in Kconfig so

[U-Boot] [PATCH v6 20/31] mtd: declare MTD_PARTITIONS symbol in Kconfig

2018-08-16 Thread Miquel Raynal
UBI selects MTD_PARTITIONS which is the symbol to compile drivers/mtd/mtdpart.c. Unfortunately, the symbol was not defined in Kconfig and this worked only with board files defining it. Fix this by adding a boolean in Kconfig so boards defined by defconfig files only will work as expected.