scripts/gen_image_generic.sh: move from x86/image
[openwrt/openwrt.git] / scripts / download.pl
index 7eb7c7ebce311adb9a78728abb7fc4e7495ab4b9..5c9397b93259958f6dcf534d412846566a7c137c 100755 (executable)
@@ -139,6 +139,7 @@ sub download
                };
        } else {
                my @cmd = download_cmd("$mirror/$url_filename");
+               print STDERR "+ ".join(" ",@cmd)."\n";
                open(FETCH_FD, '-|', @cmd) or die "Cannot launch curl or wget.\n";
                $hash_cmd and do {
                        open MD5SUM, "| $hash_cmd > '$target/$filename.hash'" or die "Cannot launch $hash_cmd.\n";
@@ -166,7 +167,7 @@ sub download
                $sum = $1;
 
                if ($sum ne $file_hash) {
-                       print STDERR "MD5 sum of the downloaded file does not match (file: $sum, requested: $file_hash) - deleting download.\n";
+                       print STDERR "Hash of the downloaded file does not match (file: $sum, requested: $file_hash) - deleting download.\n";
                        cleanup();
                        return;
                }