diff options
author | Koen Vandeputte <koen.vandeputte@ncentric.com> | 2018-09-17 11:52:06 +0200 |
---|---|---|
committer | Koen Vandeputte <koen.vandeputte@ncentric.com> | 2018-09-17 15:47:44 +0200 |
commit | 0cda4af005f22f3e9a18a1760d8482be1a45e02a (patch) | |
tree | 35eef68571fbc0af7a152bd59f47fb07f1999b39 /target/linux/generic/pending-4.14/497-mtd-mtdconcat-add-dt-driver-for-concat-devices.patch | |
parent | 784d7f0251cfd01e12f55776bf858198ff606e3c (diff) | |
download | upstream-0cda4af005f22f3e9a18a1760d8482be1a45e02a.tar.gz upstream-0cda4af005f22f3e9a18a1760d8482be1a45e02a.tar.bz2 upstream-0cda4af005f22f3e9a18a1760d8482be1a45e02a.zip |
kernel: bump 4.14 to 4.14.70
Refreshed all patches.
Added new patch:
- 192-Revert-ubifs-xattr-Don-t-operate-on-deleted-inodes.patch
This fixes a bug introduced in upstream 4.14.68 which caused targets using
ubifs to produce file-system errors on boot, rendering them useless.
Compile-tested on: cns3xxx, imx6, x86_64
Runtime-tested on: cns3xxx, imx6, x86_64
Signed-off-by: Koen Vandeputte <koen.vandeputte@ncentric.com>
Diffstat (limited to 'target/linux/generic/pending-4.14/497-mtd-mtdconcat-add-dt-driver-for-concat-devices.patch')
-rw-r--r-- | target/linux/generic/pending-4.14/497-mtd-mtdconcat-add-dt-driver-for-concat-devices.patch | 20 |
1 files changed, 2 insertions, 18 deletions
diff --git a/target/linux/generic/pending-4.14/497-mtd-mtdconcat-add-dt-driver-for-concat-devices.patch b/target/linux/generic/pending-4.14/497-mtd-mtdconcat-add-dt-driver-for-concat-devices.patch index 0c5ac5b8f8..94acc883f3 100644 --- a/target/linux/generic/pending-4.14/497-mtd-mtdconcat-add-dt-driver-for-concat-devices.patch +++ b/target/linux/generic/pending-4.14/497-mtd-mtdconcat-add-dt-driver-for-concat-devices.patch @@ -41,31 +41,24 @@ Signed-off-by: Bernhard Frauendienst <kernel@nospam.obeliks.de> create mode 100644 drivers/mtd/composite/Makefile create mode 100644 drivers/mtd/composite/virt_concat.c -diff --git a/drivers/mtd/Kconfig b/drivers/mtd/Kconfig -index 5a2d71729b9a..de18bc568e3e 100644 --- a/drivers/mtd/Kconfig +++ b/drivers/mtd/Kconfig -@@ -342,4 +342,6 @@ source "drivers/mtd/spi-nor/Kconfig" +@@ -377,4 +377,6 @@ source "drivers/mtd/spi-nor/Kconfig" source "drivers/mtd/ubi/Kconfig" +source "drivers/mtd/composite/Kconfig" + endif # MTD -diff --git a/drivers/mtd/Makefile b/drivers/mtd/Makefile -index d6f8f625e1ff..a6c5f134c35d 100644 --- a/drivers/mtd/Makefile +++ b/drivers/mtd/Makefile -@@ -36,3 +36,6 @@ obj-y += chips/ lpddr/ maps/ devices/ nand/ onenand/ tests/ +@@ -39,3 +39,6 @@ obj-y += chips/ lpddr/ maps/ devices/ n obj-$(CONFIG_MTD_SPI_NOR) += spi-nor/ obj-$(CONFIG_MTD_UBI) += ubi/ + +# Composite drivers must be loaded last +obj-y += composite/ -diff --git a/drivers/mtd/composite/Kconfig b/drivers/mtd/composite/Kconfig -new file mode 100644 -index 000000000000..0490fc0284bb --- /dev/null +++ b/drivers/mtd/composite/Kconfig @@ -0,0 +1,12 @@ @@ -81,9 +74,6 @@ index 000000000000..0490fc0284bb + used as one device with partitions spanning across device boundaries. + +endmenu -diff --git a/drivers/mtd/composite/Makefile b/drivers/mtd/composite/Makefile -new file mode 100644 -index 000000000000..8421a0a30606 --- /dev/null +++ b/drivers/mtd/composite/Makefile @@ -0,0 +1,6 @@ @@ -93,9 +83,6 @@ index 000000000000..8421a0a30606 +# + +obj-$(CONFIG_MTD_VIRT_CONCAT) += virt_concat.o -diff --git a/drivers/mtd/composite/virt_concat.c b/drivers/mtd/composite/virt_concat.c -new file mode 100644 -index 000000000000..bfd432188c35 --- /dev/null +++ b/drivers/mtd/composite/virt_concat.c @@ -0,0 +1,128 @@ @@ -227,6 +214,3 @@ index 000000000000..bfd432188c35 +MODULE_LICENSE("GPL v2"); +MODULE_AUTHOR("Bernhard Frauendienst <kernel@nospam.obeliks.de>"); +MODULE_DESCRIPTION("Virtual concat MTD device driver"); --- -2.18.0 - |