192886b1027d64df4449531dc2fc9e4a63ce7154
[openwrt/staging/rmilecki.git] / target / linux / generic / pending-4.14 / 435-mtd-add-routerbootpart-parser-config.patch
1 From 4437e01fb6bca63fccdba5d6c44888b0935885c2 Mon Sep 17 00:00:00 2001
2 From: =?UTF-8?q?Thibaut=20VAR=C3=88NE?= <hacks@slashdirt.org>
3 Date: Tue, 24 Mar 2020 11:45:07 +0100
4 Subject: [PATCH] generic: routerboot partition build bits (4.14)
5 MIME-Version: 1.0
6 Content-Type: text/plain; charset=UTF-8
7 Content-Transfer-Encoding: 8bit
8
9 This patch adds routerbootpart kernel build bits
10
11 Signed-off-by: Thibaut VARĂˆNE <hacks@slashdirt.org>
12 ---
13 drivers/mtd/parsers/Kconfig | 9 +++++++++
14 drivers/mtd/parsers/Makefile | 1 +
15 2 files changed, 10 insertions(+)
16
17 diff --git a/drivers/mtd/parsers/Kconfig b/drivers/mtd/parsers/Kconfig
18 index d206b3c..58cbdd6 100644
19 --- a/drivers/mtd/parsers/Kconfig
20 +++ b/drivers/mtd/parsers/Kconfig
21 @@ -6,3 +6,12 @@ config MTD_PARSER_TRX
22 may contain up to 3/4 partitions (depending on the version).
23 This driver will parse TRX header and report at least two partitions:
24 kernel and rootfs.
25 +
26 +config MTD_ROUTERBOOT_PARTS
27 + tristate "RouterBoot flash partition parser"
28 + depends on MTD && OF
29 + help
30 + MikroTik RouterBoot is implemented as a multi segment system on the
31 + flash, some of which are fixed and some of which are located at
32 + variable offsets. This parser handles both cases via properly
33 + formatted DTS.
34 diff --git a/drivers/mtd/parsers/Makefile b/drivers/mtd/parsers/Makefile
35 index 4d9024e..41d363a 100644
36 --- a/drivers/mtd/parsers/Makefile
37 +++ b/drivers/mtd/parsers/Makefile
38 @@ -1 +1,2 @@
39 obj-$(CONFIG_MTD_PARSER_TRX) += parser_trx.o
40 +obj-$(CONFIG_MTD_ROUTERBOOT_PARTS) += routerbootpart.o
41 --
42 2.11.0
43