"make download" stuck still while downloading mkimage

Everytime I run make download to getting my "build-dir" ready the command stay still ~20 minutes at this step

make[2] -C tools/mkimage download

I checked network usage and is silent. This happen on every still active branches (the only one I use/test): lede-17.01, openwrt-18.06 and master.

1 Like

run make V=s --> make download V=s

I'll do ASAP (now I'm compiling with -j1 to spot some other unrelated errors).

Downloading again right now and it seems that on master the command make download will try to download u-boot-2018.03.tar.bz2 from these links:

  • http://mirror2.openwrt.org/sources/u-boot-2018.03.tar.bz2 return 404

  • ftp://ftp.denx.de/pub/u-boot/u-boot-2018.03.tar.bz2 it works manually from my browser but somehow the executed command (curl -f --connect-timeout 20 --retry 5 --location --insecure ftp://ftp.denx.de/pub/u-boot/u-boot-2018.03.tar.bz2) is stuck (of course waiting for the timeout)

  • Currently I'm waiting for the above command to finish (10 minutes stuck right now) I'll updated this post as soon the execution continue. In the meantime this is the current console output (which I'm also saving to file with tee):

    make[2]: Entering directory '/home/vento/buildop/tools/mkimage'
    mkdir -p /home/vento/buildop/dl
    SHELL= flock /home/vento/buildop/tmp/.u-boot-2018.03.tar.bz2.flock -c '         /home/vento/buildop/scripts/download.pl "/home/vento/buildop/dl" "u-boot-2018.03.tar.bz2" "7e7477534409d5368eb1371ffde6820f0f79780a1a1f676161c48442cb303dfd" "" "http://mirror2.openwrt.org/sources" "ftp://ftp.denx.de/pub/u-boot"    '
    + curl -f --connect-timeout 20 --retry 5 --location --insecure http://mirror2.openwrt.org/sources/u-boot-2018.03.tar.bz2
      % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                   Dload  Upload   Total   Spent    Left  Speed
      0     0    0     0    0     0      0      0 --:--:--  0:00:13 --:--:--     0
    curl: (22) The requested URL returned error: 404 Not Found
    Download failed.
    + curl -f --connect-timeout 20 --retry 5 --location --insecure ftp://ftp.denx.de/pub/u-boot/u-boot-2018.03.tar.bz2
      % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                     Dload  Upload   Total   Spent    Left  Speed
      0     0    0     0    0     0      0      0 --:--:--  0:11:40 --:--:--     0
    

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.