diff -ur busybox-1.7.4.orig/libbb/simplify_path.c busybox-1.7.4/libbb/simplify_path.c --- busybox-1.7.4.orig/libbb/simplify_path.c 2007-09-03 06:48:42.000000000 -0500 +++ busybox-1.7.4/libbb/simplify_path.c 2008-11-13 14:58:24.000000000 -0600 @@ -13,6 +13,8 @@ { char *s, *start, *p; + printf("bb_simplify_path(): path='%s'\n", path); + if (path[0] == '/') start = xstrdup(path); else { diff -ur busybox-1.7.4.orig/util-linux/mount.c busybox-1.7.4/util-linux/mount.c --- busybox-1.7.4.orig/util-linux/mount.c 2007-09-03 06:48:56.000000000 -0500 +++ busybox-1.7.4/util-linux/mount.c 2008-11-13 15:29:59.000000000 -0600 @@ -1541,6 +1541,13 @@ SKIP_DESKTOP(const int nonroot = 0;) USE_DESKTOP( int nonroot = (getuid() != 0);) + // Dump the commandline args + printf("'mount' called with the following args:\n"); + int z = 0; + for(z=0;z #include "libbb.h" -#define OPTION_STRING "flDnravdt:" +#define OPTION_STRING "flDnravdt:i" #define OPT_FORCE 1 #define OPT_LAZY 2 #define OPT_DONTFREELOOP 4