aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/generic-2.6/patches-2.6.26/850-jffs2_erase_progress_indicator.patch
diff options
context:
space:
mode:
authorImre Kaloz <kaloz@openwrt.org>2008-06-02 08:22:56 +0000
committerImre Kaloz <kaloz@openwrt.org>2008-06-02 08:22:56 +0000
commit7cce2d8fc39a7bbcdcf8755ad331409b0a103103 (patch)
treec5089f65708dd1656748c8079574e68096d53242 /target/linux/generic-2.6/patches-2.6.26/850-jffs2_erase_progress_indicator.patch
parent40720b6d2027e49c59718c3650c93bc6771a38b3 (diff)
downloadupstream-7cce2d8fc39a7bbcdcf8755ad331409b0a103103.tar.gz
upstream-7cce2d8fc39a7bbcdcf8755ad331409b0a103103.tar.bz2
upstream-7cce2d8fc39a7bbcdcf8755ad331409b0a103103.zip
add generic 2.6.26 patches/files
SVN-Revision: 11323
Diffstat (limited to 'target/linux/generic-2.6/patches-2.6.26/850-jffs2_erase_progress_indicator.patch')
-rw-r--r--target/linux/generic-2.6/patches-2.6.26/850-jffs2_erase_progress_indicator.patch23
1 files changed, 23 insertions, 0 deletions
diff --git a/target/linux/generic-2.6/patches-2.6.26/850-jffs2_erase_progress_indicator.patch b/target/linux/generic-2.6/patches-2.6.26/850-jffs2_erase_progress_indicator.patch
new file mode 100644
index 0000000000..2d4eafd1f4
--- /dev/null
+++ b/target/linux/generic-2.6/patches-2.6.26/850-jffs2_erase_progress_indicator.patch
@@ -0,0 +1,23 @@
+--- a/fs/jffs2/erase.c
++++ b/fs/jffs2/erase.c
+@@ -35,6 +35,8 @@
+ {
+ int ret;
+ uint32_t bad_offset;
++ static char s[]="|/-\\", *p=s;
++
+ #ifdef __ECOS
+ ret = jffs2_flash_erase(c, jeb);
+ if (!ret) {
+@@ -47,6 +49,11 @@
+
+ D1(printk(KERN_DEBUG "jffs2_erase_block(): erase block %#08x (range %#08x-%#08x)\n",
+ jeb->offset, jeb->offset, jeb->offset + c->sector_size));
++
++ printk("%c\b", *p);
++ if (*++p==0)
++ p=s;
++
+ instr = kmalloc(sizeof(struct erase_info) + sizeof(struct erase_priv_struct), GFP_KERNEL);
+ if (!instr) {
+ printk(KERN_WARNING "kmalloc for struct erase_info in jffs2_erase_block failed. Refiling block for later\n");