aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/x86/patches-3.10/012-export_erase_write.patch
diff options
context:
space:
mode:
authorGabor Juhos <juhosg@openwrt.org>2013-09-02 07:36:40 +0000
committerGabor Juhos <juhosg@openwrt.org>2013-09-02 07:36:40 +0000
commit11b1887c531015a6e928ed748f72a684c382910c (patch)
treea344b55b6bfc0d5c3ac8e57df5da284d3efd69d2 /target/linux/x86/patches-3.10/012-export_erase_write.patch
parent0a85c59040d6e053199962fe9127cc0d2d8febc3 (diff)
downloadupstream-11b1887c531015a6e928ed748f72a684c382910c.tar.gz
upstream-11b1887c531015a6e928ed748f72a684c382910c.tar.bz2
upstream-11b1887c531015a6e928ed748f72a684c382910c.zip
x86: add support for 3.10
Add kernel configuration and patches for Linux 3.10. Taken from the 'alix2: update to LINUX_VERSION 3.10.9' patch: http://patchwork.openwrt.org/patch/3971/. Russell says in the original patch: "Initial whack at updating alix2 to a current kernel. It builds and runs without problems so far. I copied target/linux/config-3.8, target/linux/x86/alix2/config-3.8, and target/linux/patches-3.8 to their 3.10 equivalents and tweaked until it built. The patches required no changes." The current patch contains additional configuration tweaks, and the kernel patches were refreshed. Signed-off-by: Russell Senior <russell@personaltelco.net> Signed-off-by: Gabor Juhos <juhosg@openwrt.org> SVN-Revision: 37867
Diffstat (limited to 'target/linux/x86/patches-3.10/012-export_erase_write.patch')
-rw-r--r--target/linux/x86/patches-3.10/012-export_erase_write.patch23
1 files changed, 23 insertions, 0 deletions
diff --git a/target/linux/x86/patches-3.10/012-export_erase_write.patch b/target/linux/x86/patches-3.10/012-export_erase_write.patch
new file mode 100644
index 0000000000..14c275d986
--- /dev/null
+++ b/target/linux/x86/patches-3.10/012-export_erase_write.patch
@@ -0,0 +1,23 @@
+--- a/drivers/mtd/mtdblock.c
++++ b/drivers/mtd/mtdblock.c
+@@ -62,7 +62,7 @@ static void erase_callback(struct erase_
+ wake_up(wait_q);
+ }
+
+-static int erase_write (struct mtd_info *mtd, unsigned long pos,
++int erase_write (struct mtd_info *mtd, unsigned long pos,
+ int len, const char *buf)
+ {
+ struct erase_info erase;
+--- a/include/linux/mtd/mtd.h
++++ b/include/linux/mtd/mtd.h
+@@ -391,6 +391,9 @@ extern void register_mtd_user (struct mt
+ extern int unregister_mtd_user (struct mtd_notifier *old);
+ void *mtd_kmalloc_up_to(const struct mtd_info *mtd, size_t *size);
+
++int erase_write (struct mtd_info *mtd, unsigned long pos,
++ int len, const char *buf);
++
+ void mtd_erase_callback(struct erase_info *instr);
+
+ static inline int mtd_is_bitflip(int err) {