mirror of
https://github.com/coolsnowwolf/lede.git
synced 2025-07-20 08:26:59 +08:00
20 lines
778 B
Diff
20 lines
778 B
Diff
![]() |
--- a/drivers/mtd/parsers/Kconfig
|
||
|
+++ b/drivers/mtd/parsers/Kconfig
|
||
|
@@ -185,3 +185,9 @@ config MTD_ROUTERBOOT_PARTS
|
||
|
flash, some of which are fixed and some of which are located at
|
||
|
variable offsets. This parser handles both cases via properly
|
||
|
formatted DTS.
|
||
|
+
|
||
|
+config MTD_SERCOMM_PARTS
|
||
|
+ tristate "SERCOMM partitioning information support"
|
||
|
+ depends on MTD_OF_PARTS
|
||
|
+ help
|
||
|
+ This provides partition table parser for SERCOMM partition map
|
||
|
--- a/drivers/mtd/parsers/Makefile
|
||
|
+++ b/drivers/mtd/parsers/Makefile
|
||
|
@@ -11,3 +11,4 @@ obj-$(CONFIG_MTD_PARSER_TRX) += parser_
|
||
|
obj-$(CONFIG_MTD_SHARPSL_PARTS) += sharpslpart.o
|
||
|
obj-$(CONFIG_MTD_REDBOOT_PARTS) += redboot.o
|
||
|
obj-$(CONFIG_MTD_ROUTERBOOT_PARTS) += routerbootpart.o
|
||
|
+obj-$(CONFIG_MTD_SERCOMM_PARTS) += scpart.o
|