From mboxrd@z Thu Jan 1 00:00:00 1970 From: Boris Brezillon Date: Thu, 27 Sep 2018 08:10:05 +0200 Subject: [U-Boot] [PATCH v9 0/7] SPI-NAND support (third batch) In-Reply-To: <20180926150739.15316-1-miquel.raynal@bootlin.com> References: <20180926150739.15316-1-miquel.raynal@bootlin.com> Message-ID: <20180927081005.089a2737@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 Wed, 26 Sep 2018 17:07:32 +0200 Miquel Raynal wrote: > > Miquel Raynal (7): > mtd: uclass: add probe function > mtd: mtdpart: add a generic mtdparts-like parser > mtd: mtdpart: search for an equivalent MTD name with the mtdids > mtd: mtdpart: implement proper partition handling > cmd: mtd: add 'mtd' command > cmd: ubi: clean the partition handling > cmd: mtdparts: describe as legacy > The whole series is Reviewed-by: Boris Brezillon > cmd/Kconfig | 18 +- > cmd/Makefile | 1 + > cmd/mtd.c | 471 +++++++++++++++++++++++ > cmd/ubi.c | 96 ++--- > drivers/mtd/Makefile | 2 +- > drivers/mtd/mtd-uclass.c | 16 + > drivers/mtd/mtd_uboot.c | 154 +++++++- > drivers/mtd/mtdcore.c | 2 + > drivers/mtd/mtdpart.c | 683 +++++++++++++++++++++------------ > include/linux/mtd/mtd.h | 31 ++ > include/linux/mtd/partitions.h | 7 +- > include/mtd.h | 3 + > 12 files changed, 1169 insertions(+), 315 deletions(-) > create mode 100644 cmd/mtd.c >