diff options
author | Gabor Juhos <juhosg@openwrt.org> | 2007-07-20 18:32:48 +0000 |
---|---|---|
committer | Gabor Juhos <juhosg@openwrt.org> | 2007-07-20 18:32:48 +0000 |
commit | d59422b6f36667f69f25944a385716dbc9e14bbc (patch) | |
tree | cc5718b1e87948fbfcd72ce5438aaca90a67d8f0 /target/linux/generic-2.6/patches | |
parent | b1f5fffa5db6547d498edb5223831f8d92e329af (diff) | |
download | upstream-d59422b6f36667f69f25944a385716dbc9e14bbc.tar.gz upstream-d59422b6f36667f69f25944a385716dbc9e14bbc.tar.bz2 upstream-d59422b6f36667f69f25944a385716dbc9e14bbc.zip |
rootfs_split: fix a typo, and fix compiler warnings
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@8082 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/generic-2.6/patches')
-rw-r--r-- | target/linux/generic-2.6/patches/060-rootfs_split.patch | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/target/linux/generic-2.6/patches/060-rootfs_split.patch b/target/linux/generic-2.6/patches/060-rootfs_split.patch index 262d3142d6..adafdaacba 100644 --- a/target/linux/generic-2.6/patches/060-rootfs_split.patch +++ b/target/linux/generic-2.6/patches/060-rootfs_split.patch @@ -285,7 +285,7 @@ Index: linux/drivers/mtd/mtdpart.c + if (dpart == NULL) + return 1; + -+ printk(KERN_INFO "mtd: \"%s\" created, ofs=%lX, len=%lX \n", ++ printk(KERN_INFO "mtd: partition \"%s\" created automatically, ofs=%X, len=%X \n", + ROOTFS_SPLIT_NAME, dpart->offset, dpart->size); + + ret = add_one_partition(master, dpart, index, NULL); @@ -457,7 +457,7 @@ Index: linux/drivers/mtd/mtdpart.c - offs += slave->mtd.erasesize; + for (i = 0, j = 0; i < nbparts; i++) { + part = (struct mtd_partition *) &parts[i]; -+ ret = add_one_partition(master, part, i, &slave); ++ ret = add_one_partition(master, part, j, &slave); + if (ret) + return ret; + j++; |