2
0
forked from Ivasoft/openwrt

kernel: mtdsplit: modify rootfs helpers to provide partition type

Our mtdsplit parsers may want to create partition with name choice based
on partition file system (e.g. SquashFS vs. JFFS2). This patch allows
passing extra argument pointing to variable that will be set properly.

Signed-off-by: Rafał Miłecki <zajec5@gmail.com>

SVN-Revision: 48598
This commit is contained in:
Rafał Miłecki
2016-02-01 12:41:41 +00:00
parent 704473864e
commit e1491b341b
9 changed files with 42 additions and 26 deletions

View File

@@ -147,10 +147,8 @@ static int __mtdsplit_parse_uimage(struct mtd_info *master,
rf_part = 1;
/* find the roots after the uImage */
ret = mtd_find_rootfs_from(master,
uimage_offset + uimage_size,
master->size,
&rootfs_offset);
ret = mtd_find_rootfs_from(master, uimage_offset + uimage_size,
master->size, &rootfs_offset, NULL);
if (ret) {
pr_debug("no rootfs after uImage in \"%s\"\n",
master->name);
@@ -164,7 +162,7 @@ static int __mtdsplit_parse_uimage(struct mtd_info *master,
uimage_part = 1;
/* check rootfs presence at offset 0 */
ret = mtd_check_rootfs_magic(master, 0);
ret = mtd_check_rootfs_magic(master, 0, NULL);
if (ret) {
pr_debug("no rootfs before uImage in \"%s\"\n",
master->name);