diff options
author | Rafał Miłecki <rafal@milecki.pl> | 2017-06-21 08:26:47 +0200 |
---|---|---|
committer | Brian Norris <computersforpeace@gmail.com> | 2017-06-22 13:13:10 -0700 |
commit | 99352afe8f169c95b294b6b9a8d0e18cd9e3c2a0 (patch) | |
tree | 12f31ac62e7a309bccabb2e3d424d5ecf5f7cc11 /drivers/mtd/Makefile | |
parent | 1a0915be192606fee64830b9c5d70b7ed59426b6 (diff) | |
download | blackbird-op-linux-99352afe8f169c95b294b6b9a8d0e18cd9e3c2a0.tar.gz blackbird-op-linux-99352afe8f169c95b294b6b9a8d0e18cd9e3c2a0.zip |
mtd: extract TRX parser out of bcm47xxpart into a separated module
This makes TRX parsing code reusable with other platforms and parsers.
Please note this patch doesn't really change anything in the existing
code, just moves it. There is still some place for improvement (e.g.
working on non-hacky method of checking rootfs format) but it's not
really a subject of this change.
Signed-off-by: Rafał Miłecki <rafal@milecki.pl>
Signed-off-by: Brian Norris <computersforpeace@gmail.com>
Diffstat (limited to 'drivers/mtd/Makefile')
-rw-r--r-- | drivers/mtd/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/mtd/Makefile b/drivers/mtd/Makefile index 99bb9a1f6e16..151d60df303a 100644 --- a/drivers/mtd/Makefile +++ b/drivers/mtd/Makefile @@ -13,6 +13,7 @@ obj-$(CONFIG_MTD_AFS_PARTS) += afs.o obj-$(CONFIG_MTD_AR7_PARTS) += ar7part.o obj-$(CONFIG_MTD_BCM63XX_PARTS) += bcm63xxpart.o obj-$(CONFIG_MTD_BCM47XX_PARTS) += bcm47xxpart.o +obj-y += parsers/ # 'Users' - code which presents functionality to userspace. obj-$(CONFIG_MTD_BLKDEVS) += mtd_blkdevs.o |