diff -Naur busybox-1.20.2/coreutils/mv.c busybox-1.20.2-magellan/coreutils/mv.c --- busybox-1.20.2/coreutils/mv.c 2012-07-02 16:08:25.000000000 +0200 +++ busybox-1.20.2-magellan/coreutils/mv.c 2012-07-18 15:05:13.494982797 +0200 @@ -58,7 +58,8 @@ * If more than one of -f, -i, -n is specified , only the final one * takes effect (it unsets previous options). */ opt_complementary = "-2:f-in:i-fn:n-fi"; - flags = getopt32(argv, "fin"); + /* -v (verbose) is ignored */ + flags = getopt32(argv, "finv"); argc -= optind; argv += optind; last = argv[argc - 1];