|
@@ -37,20 +37,21 @@ Signed-off-by: Felix Fietkau <[email protected]>
|
|
|
depends on m
|
|
depends on m
|
|
|
--- a/drivers/mtd/mtdpart.c
|
|
--- a/drivers/mtd/mtdpart.c
|
|
|
+++ b/drivers/mtd/mtdpart.c
|
|
+++ b/drivers/mtd/mtdpart.c
|
|
|
-@@ -29,10 +29,12 @@
|
|
|
|
|
|
|
+@@ -29,11 +29,13 @@
|
|
|
#include <linux/kmod.h>
|
|
#include <linux/kmod.h>
|
|
|
#include <linux/mtd/mtd.h>
|
|
#include <linux/mtd/mtd.h>
|
|
|
#include <linux/mtd/partitions.h>
|
|
#include <linux/mtd/partitions.h>
|
|
|
+#include <linux/magic.h>
|
|
+#include <linux/magic.h>
|
|
|
#include <linux/of.h>
|
|
#include <linux/of.h>
|
|
|
#include <linux/err.h>
|
|
#include <linux/err.h>
|
|
|
|
|
+ #include <linux/of.h>
|
|
|
|
|
|
|
|
#include "mtdcore.h"
|
|
#include "mtdcore.h"
|
|
|
+#include "mtdsplit/mtdsplit.h"
|
|
+#include "mtdsplit/mtdsplit.h"
|
|
|
|
|
|
|
|
/* Our partition linked list */
|
|
/* Our partition linked list */
|
|
|
static LIST_HEAD(mtd_partitions);
|
|
static LIST_HEAD(mtd_partitions);
|
|
|
-@@ -52,6 +54,8 @@ struct mtd_part {
|
|
|
|
|
|
|
+@@ -53,6 +55,8 @@ struct mtd_part {
|
|
|
struct list_head list;
|
|
struct list_head list;
|
|
|
};
|
|
};
|
|
|
|
|
|
|
@@ -59,7 +60,7 @@ Signed-off-by: Felix Fietkau <[email protected]>
|
|
|
/*
|
|
/*
|
|
|
* Given a pointer to the MTD object in the mtd_part structure, we can retrieve
|
|
* Given a pointer to the MTD object in the mtd_part structure, we can retrieve
|
|
|
* the pointer to that structure.
|
|
* the pointer to that structure.
|
|
|
-@@ -686,6 +690,7 @@ int mtd_add_partition(struct mtd_info *p
|
|
|
|
|
|
|
+@@ -687,6 +691,7 @@ int mtd_add_partition(struct mtd_info *p
|
|
|
mutex_unlock(&mtd_partitions_mutex);
|
|
mutex_unlock(&mtd_partitions_mutex);
|
|
|
|
|
|
|
|
add_mtd_device(&new->mtd);
|
|
add_mtd_device(&new->mtd);
|
|
@@ -67,7 +68,7 @@ Signed-off-by: Felix Fietkau <[email protected]>
|
|
|
|
|
|
|
|
mtd_add_partition_attrs(new);
|
|
mtd_add_partition_attrs(new);
|
|
|
|
|
|
|
|
-@@ -764,6 +769,35 @@ int mtd_del_partition(struct mtd_info *m
|
|
|
|
|
|
|
+@@ -765,6 +770,35 @@ int mtd_del_partition(struct mtd_info *m
|
|
|
}
|
|
}
|
|
|
EXPORT_SYMBOL_GPL(mtd_del_partition);
|
|
EXPORT_SYMBOL_GPL(mtd_del_partition);
|
|
|
|
|
|
|
@@ -103,7 +104,7 @@ Signed-off-by: Felix Fietkau <[email protected]>
|
|
|
/*
|
|
/*
|
|
|
* This function, given a master MTD object and a partition table, creates
|
|
* This function, given a master MTD object and a partition table, creates
|
|
|
* and registers slave MTD objects which are bound to the master according to
|
|
* and registers slave MTD objects which are bound to the master according to
|
|
|
-@@ -795,6 +829,7 @@ int add_mtd_partitions(struct mtd_info *
|
|
|
|
|
|
|
+@@ -796,6 +830,7 @@ int add_mtd_partitions(struct mtd_info *
|
|
|
mutex_unlock(&mtd_partitions_mutex);
|
|
mutex_unlock(&mtd_partitions_mutex);
|
|
|
|
|
|
|
|
add_mtd_device(&slave->mtd);
|
|
add_mtd_device(&slave->mtd);
|
|
@@ -113,7 +114,7 @@ Signed-off-by: Felix Fietkau <[email protected]>
|
|
|
mtd_parse_part(slave, parts[i].types);
|
|
mtd_parse_part(slave, parts[i].types);
|
|
|
--- a/include/linux/mtd/partitions.h
|
|
--- a/include/linux/mtd/partitions.h
|
|
|
+++ b/include/linux/mtd/partitions.h
|
|
+++ b/include/linux/mtd/partitions.h
|
|
|
-@@ -109,5 +109,7 @@ int mtd_add_partition(struct mtd_info *m
|
|
|
|
|
|
|
+@@ -110,5 +110,7 @@ int mtd_add_partition(struct mtd_info *m
|
|
|
long long offset, long long length);
|
|
long long offset, long long length);
|
|
|
int mtd_del_partition(struct mtd_info *master, int partno);
|
|
int mtd_del_partition(struct mtd_info *master, int partno);
|
|
|
uint64_t mtd_get_device_size(const struct mtd_info *mtd);
|
|
uint64_t mtd_get_device_size(const struct mtd_info *mtd);
|