ath9k: fix passing MAC time to mac80211
[openwrt.git] / package / mtd / src / mtd.c
index d14b196..a7d4c1b 100644 (file)
 #include <sys/stat.h>
 #include <sys/reboot.h>
 #include <linux/reboot.h>
-#include "mtd-api.h"
+#include <mtd/mtd-user.h>
 #include "fis.h"
 #include "mtd.h"
 
+#ifndef MTDREFRESH
+#define MTDREFRESH     _IO('M', 50)
+#endif
+
 #define MAX_ARGS 8
 #define JFFS2_DEFAULT_DIR      "" /* directory name without /, empty means root dir */
 
@@ -409,6 +413,9 @@ resume:
                                /* got an EOF marker - this is the place to add some jffs2 data */
                                skip = mtd_replace_jffs2(mtd, fd, e, jffs2file);
 
+                               /* don't add it again */
+                               jffs2file = NULL;
+
                                w += skip;
                                e += skip;
                                skip -= buflen;
@@ -597,8 +604,8 @@ int main (int argc, char **argv)
                                jffs2dir = optarg;
                                break;
                        case 'o':
-                           if (!mtd_fixtrx) {
-                                   fprintf(stderr, "-o: Only for brcm47xx\n");
+                               if (!mtd_fixtrx) {
+                                       fprintf(stderr, "-o: is not available on this platform\n");
                                        usage();
                                }
                                errno = 0;
This page took 0.025061 seconds and 4 git commands to generate.