#include "libfstools/libfstools.h"
#include "libfstools/volume.h"
-static int
-handle_rmdir(const char *dir)
-{
- struct dirent *dt;
- struct stat st;
- DIR *d;
- int fd;
-
- d = opendir(dir);
- if (!d)
- return -1;
-
- fd = dirfd(d);
-
- while ((dt = readdir(d)) != NULL) {
- if (fstatat(fd, dt->d_name, &st, AT_SYMLINK_NOFOLLOW) || S_ISDIR(st.st_mode))
- continue;
-
- unlinkat(fd, dt->d_name, 0);
- }
-
- closedir(d);
- rmdir(dir);
-
- return 0;
-}
-
static int
ask_user(int argc, char **argv)
{
mp = find_mount_point(v->blk, 1);
if (mp) {
ULOG_INFO("%s is mounted as %s, only erasing files\n", v->blk, mp);
- foreachdir(mp, handle_rmdir);
+ overlay_delete(mp, false);
mount(mp, "/", NULL, MS_REMOUNT, 0);
} else {
ULOG_INFO("%s is not mounted, erasing it\n", v->blk);
extern int handle_whiteout(const char *dir);
extern void foreachdir(const char *dir, int (*cb)(const char*));
+extern void overlay_delete(const char *dir, bool keep_sysupgrade);
+
#endif
#define SWITCH_JFFS2 "/tmp/.switch_jffs2"
+static bool keep_sysupgrade;
+
+static int
+handle_rmdir(const char *dir)
+{
+ struct dirent *dt;
+ struct stat st;
+ DIR *d;
+ int fd;
+
+ d = opendir(dir);
+ if (!d)
+ return -1;
+
+ fd = dirfd(d);
+
+ while ((dt = readdir(d)) != NULL) {
+ if (fstatat(fd, dt->d_name, &st, AT_SYMLINK_NOFOLLOW) || S_ISDIR(st.st_mode))
+ continue;
+
+ if (keep_sysupgrade && !strcmp(dt->d_name, "sysupgrade.tgz"))
+ continue;
+
+ unlinkat(fd, dt->d_name, 0);
+ }
+
+ closedir(d);
+ rmdir(dir);
+
+ return 0;
+}
+
void
foreachdir(const char *dir, int (*cb)(const char*))
{
cb(dir);
}
+void
+overlay_delete(const char *dir, bool _keep_sysupgrade)
+{
+ keep_sysupgrade = _keep_sysupgrade;
+ foreachdir(dir, handle_rmdir);
+}
+
static int
overlay_mount(struct volume *v, char *fs)
{