Advertisement
kp7299

bitbake curl-native

Apr 20th, 2022
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 28.72 KB | None | 0 0
  1. ubuntu@eef32f5d12dd:~/poky$ bitbake curl-native
  2. Loading cache: 100% |##################################################################################################################| Time: 0:00:00
  3. Loaded 1472 entries from dependency cache.
  4. NOTE: Resolving any missing task queue dependencies
  5.  
  6. Build Configuration:
  7. BB_VERSION           = "1.52.0"
  8. BUILD_SYS            = "x86_64-linux"
  9. NATIVELSBSTRING      = "ubuntu-18.04"
  10. TARGET_SYS           = "arm-poky-linux-gnueabi"
  11. MACHINE              = "qemuarm"
  12. DISTRO               = "poky"
  13. DISTRO_VERSION       = "3.4.3"
  14. TUNE_FEATURES        = "arm vfp cortexa15 neon thumb callconvention-hard"
  15. TARGET_FPU           = "hard"
  16. meta
  17. meta-poky
  18. meta-yocto-bsp       = "my-honister:580532cfd0c23e27a366c074e806fc0b6908b874"
  19.  
  20. WARNING: Disabling uninative as unable to install uninative tarball: Command 'mkdir -p home/ubuntu/curltest/tmp/sysroots-uninative; cd home/ubuntu/curltest/tmp/sysroots-uninative; tar -xJf home/ubuntu/curltest/downloads/uninative//e8047a5748e6f266165da141eb6d08b23674f30e477b0e5505b6403d50fbc4b2/x86_64-nativesdk-libc-3.5.tar.xz; home/ubuntu/curltest/tmp/sysroots-uninative/relocate_sdk.py   home/ubuntu/curltest/tmp/sysroots-uninative/x86_64-linux   home/ubuntu/curltest/tmp/sysroots-uninative/x86_64-linux/lib/ld-linux-x86-64.so.2   home/ubuntu/curltest/tmp/sysroots-uninative/x86_64-linux/lib/ld-linux-x86-64.so.2   home/ubuntu/curltest/tmp/sysroots-uninative/x86_64-linux//usr/bin/patchelf-uninative   home/ubuntu/curltest/tmp/sysroots-uninative/x86_64-linux/lib/libc*.so*' returned non-zero exit status 127.
  21. WARNING: To build your own uninative loader, please bitbake uninative-tarball and set UNINATIVE_TARBALL appropriately.
  22. Initialising tasks: 100% |#############################################################################################################| Time: 0:00:00
  23. Sstate summary: Wanted 27 Local 0 Network 0 Missed 27 Current 0 (0% match, 0% complete)
  24. NOTE: Executing Tasks
  25. ERROR: texinfo-dummy-native-1.0-r0 do_unpack: Error executing a python function in exec_func_python() autogenerated:
  26.  
  27. The stack trace of python calls that resulted in this exception/failure was:
  28. File: 'exec_func_python() autogenerated', lineno: 2, function: <module>
  29.      0001:
  30.  *** 0002:base_do_unpack(d)
  31.      0003:
  32. File: '/home/ubuntu/poky/meta/classes/base.bbclass', lineno: 178, function: base_do_unpack
  33.      0174:        return
  34.      0175:
  35.      0176:    try:
  36.      0177:        fetcher = bb.fetch2.Fetch(src_uri, d)
  37.  *** 0178:        fetcher.unpack(d.getVar('WORKDIR'))
  38.      0179:    except bb.fetch2.BBFetchException as e:
  39.      0180:        bb.fatal(str(e))
  40.      0181:}
  41.      0182:
  42. File: '/home/ubuntu/poky/bitbake/lib/bb/fetch2/__init__.py', lineno: 1831, function: unpack
  43.      1827:
  44.      1828:            if ud.lockfile:
  45.      1829:                lf = bb.utils.lockfile(ud.lockfile)
  46.      1830:
  47.  *** 1831:            ud.method.unpack(ud, root, self.d)
  48.      1832:
  49.      1833:            if ud.lockfile:
  50.      1834:                bb.utils.unlockfile(lf)
  51.      1835:
  52. File: '/home/ubuntu/poky/bitbake/lib/bb/fetch2/__init__.py', lineno: 1555, function: unpack
  53.      1551:        path = data.getVar('PATH')
  54.      1552:        if path:
  55.      1553:            cmd = "PATH=\"%s\" %s" % (path, cmd)
  56.      1554:        bb.note("Unpacking %s to %s/" % (file, unpackdir))
  57.  *** 1555:        ret = subprocess.call(cmd, preexec_fn=subprocess_setup, shell=True, cwd=unpackdir)
  58.      1556:
  59.      1557:        if ret != 0:
  60.      1558:            raise UnpackError("Unpack command %s failed with return value %s" % (cmd, ret), urldata.url)
  61.      1559:
  62. File: '/usr/lib/python3.6/subprocess.py', lineno: 287, function: call
  63.      0283:    The arguments are the same as for the Popen constructor.  Example:
  64.      0284:
  65.      0285:    retcode = call(["ls", "-l"])
  66.      0286:    """
  67. *** 0287:    with Popen(*popenargs, **kwargs) as p:
  68.     0288:        try:
  69.     0289:            return p.wait(timeout=timeout)
  70.     0290:        except:
  71.     0291:            p.kill()
  72. File: '/usr/lib/python3.6/subprocess.py', lineno: 729, function: __init__
  73.     0725:                                startupinfo, creationflags, shell,
  74.     0726:                                p2cread, p2cwrite,
  75.     0727:                                c2pread, c2pwrite,
  76.     0728:                                errread, errwrite,
  77. *** 0729:                                restore_signals, start_new_session)
  78.     0730:        except:
  79.     0731:            # Cleanup if the child failed starting.
  80.     0732:            for f in filter(None, (self.stdin, self.stdout, self.stderr)):
  81.     0733:                try:
  82. File: '/usr/lib/python3.6/subprocess.py', lineno: 1364, function: _execute_child
  83.     1360:                    if errno_num != 0:
  84.     1361:                        err_msg = os.strerror(errno_num)
  85.     1362:                        if errno_num == errno.ENOENT:
  86.     1363:                            err_msg += ': ' + repr(err_filename)
  87. *** 1364:                    raise child_exception_type(errno_num, err_msg, err_filename)
  88.     1365:                raise child_exception_type(err_msg)
  89.     1366:
  90.     1367:
  91.     1368:        def _handle_exitstatus(self, sts, _WIFSIGNALED=os.WIFSIGNALED,
  92. Exception: FileNotFoundError: [Errno 2] No such file or directory: 'home/ubuntu/curltest/tmp/work/x86_64-linux/texinfo-dummy-native/1.0-r0': 'home/ubuntu/curltest/tmp/work/x86_64-linux/texinfo-dummy-native/1.0-r0'
  93.  
  94. ERROR: Logfile of failure stored in: home/ubuntu/curltest/tmp/work/x86_64-linux/texinfo-dummy-native/1.0-r0/temp/log.do_unpack.711
  95. ERROR: Task (/home/ubuntu/poky/meta/recipes-extended/texinfo-dummy-native/texinfo-dummy-native.bb:do_unpack) failed with exit code '1'
  96. ERROR: gettext-minimal-native-0.21-r0 do_unpack: Error executing a python function in exec_func_python() autogenerated:
  97.  
  98. The stack trace of python calls that resulted in this exception/failure was:
  99. File: 'exec_func_python() autogenerated', lineno: 2, function: <module>
  100.     0001:
  101. *** 0002:base_do_unpack(d)
  102.     0003:
  103. File: '/home/ubuntu/poky/meta/classes/base.bbclass', lineno: 178, function: base_do_unpack
  104.     0174:        return
  105.     0175:
  106.     0176:    try:
  107.     0177:        fetcher = bb.fetch2.Fetch(src_uri, d)
  108. *** 0178:        fetcher.unpack(d.getVar('WORKDIR'))
  109.     0179:    except bb.fetch2.BBFetchException as e:
  110.     0180:        bb.fatal(str(e))
  111.     0181:}
  112.     0182:
  113. File: '/home/ubuntu/poky/bitbake/lib/bb/fetch2/__init__.py', lineno: 1831, function: unpack
  114.     1827:
  115.     1828:            if ud.lockfile:
  116.     1829:                lf = bb.utils.lockfile(ud.lockfile)
  117.     1830:
  118. *** 1831:            ud.method.unpack(ud, root, self.d)
  119.     1832:
  120.     1833:            if ud.lockfile:
  121.     1834:                bb.utils.unlockfile(lf)
  122.     1835:
  123. File: '/home/ubuntu/poky/bitbake/lib/bb/fetch2/__init__.py', lineno: 1555, function: unpack
  124.     1551:        path = data.getVar('PATH')
  125.     1552:        if path:
  126.     1553:            cmd = "PATH=\"%s\" %s" % (path, cmd)
  127.     1554:        bb.note("Unpacking %s to %s/" % (file, unpackdir))
  128. *** 1555:        ret = subprocess.call(cmd, preexec_fn=subprocess_setup, shell=True, cwd=unpackdir)
  129.     1556:
  130.     1557:        if ret != 0:
  131.     1558:            raise UnpackError("Unpack command %s failed with return value %s" % (cmd, ret), urldata.url)
  132.     1559:
  133. File: '/usr/lib/python3.6/subprocess.py', lineno: 287, function: call
  134.     0283:    The arguments are the same as for the Popen constructor.  Example:
  135.     0284:
  136.     0285:    retcode = call(["ls", "-l"])
  137.     0286:    """
  138.  *** 0287:    with Popen(*popenargs, **kwargs) as p:
  139.      0288:        try:
  140.      0289:            return p.wait(timeout=timeout)
  141.      0290:        except:
  142.      0291:            p.kill()
  143. File: '/usr/lib/python3.6/subprocess.py', lineno: 729, function: __init__
  144.      0725:                                startupinfo, creationflags, shell,
  145.      0726:                                p2cread, p2cwrite,
  146.      0727:                                c2pread, c2pwrite,
  147.      0728:                                errread, errwrite,
  148.  *** 0729:                                restore_signals, start_new_session)
  149.      0730:        except:
  150.      0731:            # Cleanup if the child failed starting.
  151.      0732:            for f in filter(None, (self.stdin, self.stdout, self.stderr)):
  152.      0733:                try:
  153. File: '/usr/lib/python3.6/subprocess.py', lineno: 1364, function: _execute_child
  154.      1360:                    if errno_num != 0:
  155.      1361:                        err_msg = os.strerror(errno_num)
  156.      1362:                        if errno_num == errno.ENOENT:
  157.      1363:                            err_msg += ': ' + repr(err_filename)
  158.  *** 1364:                    raise child_exception_type(errno_num, err_msg, err_filename)
  159.      1365:                raise child_exception_type(err_msg)
  160.      1366:
  161.      1367:
  162.      1368:        def _handle_exitstatus(self, sts, _WIFSIGNALED=os.WIFSIGNALED,
  163. Exception: FileNotFoundError: [Errno 2] No such file or directory: 'home/ubuntu/curltest/tmp/work/x86_64-linux/gettext-minimal-native/0.21-r0': 'home/ubuntu/curltest/tmp/work/x86_64-linux/gettext-minimal-native/0.21-r0'
  164.  
  165. ERROR: Logfile of failure stored in: home/ubuntu/curltest/tmp/work/x86_64-linux/gettext-minimal-native/0.21-r0/temp/log.do_unpack.713
  166. ERROR: Task (/home/ubuntu/poky/meta/recipes-core/gettext/gettext-minimal-native_0.21.bb:do_unpack) failed with exit code '1'
  167. WARNING: quilt-native-0.66-r0 do_fetch: Failed to fetch URL https://download.savannah.gnu.org/releases/quilt/quilt-0.66.tar.gz, attempting MIRRORS if available
  168. WARNING: m4-native-1.4.19-r0 do_fetch: Failed to fetch URL https://ftp.gnu.org/gnu/m4/m4-1.4.19.tar.gz, attempting MIRRORS if available
  169. WARNING: libtool-native-2.4.6-r0 do_fetch: Failed to fetch URL https://ftp.gnu.org/gnu/libtool/libtool-2.4.6.tar.gz, attempting MIRRORS if available
  170. WARNING: gnu-config-native-20210722+gitAUTOINC+805517123c-r0 do_fetch: Failed to fetch URL git://git.savannah.gnu.org/git/config.git;protocol=https;branch=master, attempting MIRRORS if available
  171. WARNING: autoconf-native-2.71-r0 do_fetch: Failed to fetch URL https://ftp.gnu.org/gnu/autoconf/autoconf-2.71.tar.gz, attempting MIRRORS if available
  172. WARNING: automake-native-1.16.3-r0 do_fetch: Failed to fetch URL https://ftp.gnu.org/gnu/automake/automake-1.16.3.tar.gz, attempting MIRRORS if available
  173. WARNING: zlib-native-1.2.11-r0 do_fetch: Failed to fetch URL https://downloads.sourceforge.net/libpng/zlib/1.2.11/zlib-1.2.11.tar.xz, attempting MIRRORS if available
  174. ERROR: m4-native-1.4.19-r0 do_fetch: Fetcher failure: Fetch command export PSEUDO_DISABLED=1; export PATH="/home/ubuntu/poky/scripts/native-intercept:/home/ubuntu/poky/scripts:home/ubuntu/curltest/tmp/work/x86_64-linux/m4-native/1.4.19-r0/recipe-sysroot-native/usr/bin/x86_64-linux:home/ubuntu/curltest/tmp/work/x86_64-linux/m4-native/1.4.19-r0/recipe-sysroot-native/usr/bin:home/ubuntu/curltest/tmp/work/x86_64-linux/m4-native/1.4.19-r0/recipe-sysroot-native/usr/sbin:home/ubuntu/curltest/tmp/work/x86_64-linux/m4-native/1.4.19-r0/recipe-sysroot-native/usr/bin:home/ubuntu/curltest/tmp/work/x86_64-linux/m4-native/1.4.19-r0/recipe-sysroot-native/sbin:home/ubuntu/curltest/tmp/work/x86_64-linux/m4-native/1.4.19-r0/recipe-sysroot-native/bin:/home/ubuntu/poky/bitbake/bin:home/ubuntu/curltest/tmp/hosttools"; export HOME="/home/ubuntu"; /usr/bin/env wget -t 2 -T 30 --passive-ftp -P home/ubuntu/curltest/downloads 'https://ftp.gnu.org/gnu/m4/m4-1.4.19.tar.gz' --progress=dot -v failed with exit code 127, no output
  175. ERROR: m4-native-1.4.19-r0 do_fetch: Fetcher failure for URL: 'https://ftp.gnu.org/gnu/m4/m4-1.4.19.tar.gz'. Unable to fetch URL from any source.
  176. ERROR: Logfile of failure stored in: home/ubuntu/curltest/tmp/work/x86_64-linux/m4-native/1.4.19-r0/temp/log.do_fetch.712
  177. WARNING: xz-native-5.2.5-r0 do_fetch: Failed to fetch URL https://tukaani.org/xz/xz-5.2.5.tar.gz, attempting MIRRORS if available
  178. ERROR: Task (/home/ubuntu/poky/meta/recipes-devtools/m4/m4-native_1.4.19.bb:do_fetch) failed with exit code '1'
  179. ERROR: quilt-native-0.66-r0 do_fetch: Fetcher failure: Fetch command export PSEUDO_DISABLED=1; export PATH="/home/ubuntu/poky/scripts/native-intercept:/home/ubuntu/poky/scripts:home/ubuntu/curltest/tmp/work/x86_64-linux/quilt-native/0.66-r0/recipe-sysroot-native/usr/bin/x86_64-linux:home/ubuntu/curltest/tmp/work/x86_64-linux/quilt-native/0.66-r0/recipe-sysroot-native/usr/bin:home/ubuntu/curltest/tmp/work/x86_64-linux/quilt-native/0.66-r0/recipe-sysroot-native/usr/sbin:home/ubuntu/curltest/tmp/work/x86_64-linux/quilt-native/0.66-r0/recipe-sysroot-native/usr/bin:home/ubuntu/curltest/tmp/work/x86_64-linux/quilt-native/0.66-r0/recipe-sysroot-native/sbin:home/ubuntu/curltest/tmp/work/x86_64-linux/quilt-native/0.66-r0/recipe-sysroot-native/bin:/home/ubuntu/poky/bitbake/bin:home/ubuntu/curltest/tmp/hosttools"; export HOME="/home/ubuntu"; /usr/bin/env wget -t 2 -T 30 --passive-ftp -P home/ubuntu/curltest/downloads 'https://download.savannah.gnu.org/releases/quilt/quilt-0.66.tar.gz' --progress=dot -v failed with exit code 127, no output
  180. ERROR: quilt-native-0.66-r0 do_fetch: Fetcher failure for URL: 'https://download.savannah.gnu.org/releases/quilt/quilt-0.66.tar.gz'. Unable to fetch URL from any source.
  181. ERROR: Logfile of failure stored in: home/ubuntu/curltest/tmp/work/x86_64-linux/quilt-native/0.66-r0/temp/log.do_fetch.709
  182. WARNING: pkgconfig-native-0.29.2+gitAUTOINC+edf8e6f0ea-r0 do_fetch: Failed to fetch URL git://gitlab.freedesktop.org/pkg-config/pkg-config.git;branch=master;protocol=https, attempting MIRRORS if available
  183. WARNING: openssl-native-1.1.1l-r0 do_fetch: Failed to fetch URL http://www.openssl.org/source/openssl-1.1.1l.tar.gz, attempting MIRRORS if available
  184. ERROR: Task (/home/ubuntu/poky/meta/recipes-devtools/quilt/quilt-native_0.66.bb:do_fetch) failed with exit code '1'
  185. ERROR: libtool-native-2.4.6-r0 do_fetch: Fetcher failure: Fetch command export PSEUDO_DISABLED=1; export PATH="/home/ubuntu/poky/scripts/native-intercept:/home/ubuntu/poky/scripts:home/ubuntu/curltest/tmp/work/x86_64-linux/libtool-native/2.4.6-r0/recipe-sysroot-native/usr/bin/x86_64-linux:home/ubuntu/curltest/tmp/work/x86_64-linux/libtool-native/2.4.6-r0/recipe-sysroot-native/usr/bin:home/ubuntu/curltest/tmp/work/x86_64-linux/libtool-native/2.4.6-r0/recipe-sysroot-native/usr/sbin:home/ubuntu/curltest/tmp/work/x86_64-linux/libtool-native/2.4.6-r0/recipe-sysroot-native/usr/bin:home/ubuntu/curltest/tmp/work/x86_64-linux/libtool-native/2.4.6-r0/recipe-sysroot-native/sbin:home/ubuntu/curltest/tmp/work/x86_64-linux/libtool-native/2.4.6-r0/recipe-sysroot-native/bin:/home/ubuntu/poky/bitbake/bin:home/ubuntu/curltest/tmp/hosttools"; export HOME="/home/ubuntu"; /usr/bin/env wget -t 2 -T 30 --passive-ftp -P home/ubuntu/curltest/downloads 'https://ftp.gnu.org/gnu/libtool/libtool-2.4.6.tar.gz' --progress=dot -v failed with exit code 127, no output
  186. ERROR: libtool-native-2.4.6-r0 do_fetch: Fetcher failure for URL: 'https://ftp.gnu.org/gnu/libtool/libtool-2.4.6.tar.gz'. Unable to fetch URL from any source.
  187. ERROR: Logfile of failure stored in: home/ubuntu/curltest/tmp/work/x86_64-linux/libtool-native/2.4.6-r0/temp/log.do_fetch.716
  188. WARNING: curl-native-7.78.0-r0 do_fetch: Failed to fetch URL https://curl.haxx.se/download/curl-7.78.0.tar.bz2, attempting MIRRORS if available
  189. ERROR: Task (/home/ubuntu/poky/meta/recipes-devtools/libtool/libtool-native_2.4.6.bb:do_fetch) failed with exit code '1'
  190. ERROR: openssl-native-1.1.1l-r0 do_fetch: Fetcher failure: Fetch command export PSEUDO_DISABLED=1; export PATH="/home/ubuntu/poky/scripts/native-intercept:/home/ubuntu/poky/scripts:home/ubuntu/curltest/tmp/work/x86_64-linux/openssl-native/1.1.1l-r0/recipe-sysroot-native/usr/bin/x86_64-linux:home/ubuntu/curltest/tmp/work/x86_64-linux/openssl-native/1.1.1l-r0/recipe-sysroot-native/usr/bin:home/ubuntu/curltest/tmp/work/x86_64-linux/openssl-native/1.1.1l-r0/recipe-sysroot-native/usr/sbin:home/ubuntu/curltest/tmp/work/x86_64-linux/openssl-native/1.1.1l-r0/recipe-sysroot-native/usr/bin:home/ubuntu/curltest/tmp/work/x86_64-linux/openssl-native/1.1.1l-r0/recipe-sysroot-native/sbin:home/ubuntu/curltest/tmp/work/x86_64-linux/openssl-native/1.1.1l-r0/recipe-sysroot-native/bin:/home/ubuntu/poky/bitbake/bin:home/ubuntu/curltest/tmp/hosttools"; export HOME="/home/ubuntu"; /usr/bin/env wget -t 2 -T 30 --passive-ftp -P home/ubuntu/curltest/downloads 'http://www.openssl.org/source/openssl-1.1.1l.tar.gz' --progress=dot -v failed with exit code 127, no output
  191. ERROR: openssl-native-1.1.1l-r0 do_fetch: Fetcher failure for URL: 'http://www.openssl.org/source/openssl-1.1.1l.tar.gz'. Unable to fetch URL from any source.
  192. ERROR: zlib-native-1.2.11-r0 do_fetch: Fetcher failure: Fetch command export PSEUDO_DISABLED=1; export PATH="/home/ubuntu/poky/scripts/native-intercept:/home/ubuntu/poky/scripts:home/ubuntu/curltest/tmp/work/x86_64-linux/zlib-native/1.2.11-r0/recipe-sysroot-native/usr/bin/x86_64-linux:home/ubuntu/curltest/tmp/work/x86_64-linux/zlib-native/1.2.11-r0/recipe-sysroot-native/usr/bin:home/ubuntu/curltest/tmp/work/x86_64-linux/zlib-native/1.2.11-r0/recipe-sysroot-native/usr/sbin:home/ubuntu/curltest/tmp/work/x86_64-linux/zlib-native/1.2.11-r0/recipe-sysroot-native/usr/bin:home/ubuntu/curltest/tmp/work/x86_64-linux/zlib-native/1.2.11-r0/recipe-sysroot-native/sbin:home/ubuntu/curltest/tmp/work/x86_64-linux/zlib-native/1.2.11-r0/recipe-sysroot-native/bin:/home/ubuntu/poky/bitbake/bin:home/ubuntu/curltest/tmp/hosttools"; export HOME="/home/ubuntu"; /usr/bin/env wget -t 2 -T 30 --passive-ftp -P home/ubuntu/curltest/downloads 'https://downloads.sourceforge.net/libpng/zlib/1.2.11/zlib-1.2.11.tar.xz' --progress=dot -v failed with exit code 127, no output
  193. ERROR: zlib-native-1.2.11-r0 do_fetch: Fetcher failure for URL: 'https://downloads.sourceforge.net/libpng/zlib/1.2.11/zlib-1.2.11.tar.xz'. Unable to fetch URL from any source.
  194. ERROR: Logfile of failure stored in: home/ubuntu/curltest/tmp/work/x86_64-linux/openssl-native/1.1.1l-r0/temp/log.do_fetch.719
  195. ERROR: Logfile of failure stored in: home/ubuntu/curltest/tmp/work/x86_64-linux/zlib-native/1.2.11-r0/temp/log.do_fetch.720
  196. ERROR: Task (virtual:native:/home/ubuntu/poky/meta/recipes-connectivity/openssl/openssl_1.1.1l.bb:do_fetch) failed with exit code '1'
  197. ERROR: xz-native-5.2.5-r0 do_fetch: Fetcher failure: Fetch command export PSEUDO_DISABLED=1; export PATH="/home/ubuntu/poky/scripts/native-intercept:/home/ubuntu/poky/scripts:home/ubuntu/curltest/tmp/work/x86_64-linux/xz-native/5.2.5-r0/recipe-sysroot-native/usr/bin/x86_64-linux:home/ubuntu/curltest/tmp/work/x86_64-linux/xz-native/5.2.5-r0/recipe-sysroot-native/usr/bin:home/ubuntu/curltest/tmp/work/x86_64-linux/xz-native/5.2.5-r0/recipe-sysroot-native/usr/sbin:home/ubuntu/curltest/tmp/work/x86_64-linux/xz-native/5.2.5-r0/recipe-sysroot-native/usr/bin:home/ubuntu/curltest/tmp/work/x86_64-linux/xz-native/5.2.5-r0/recipe-sysroot-native/sbin:home/ubuntu/curltest/tmp/work/x86_64-linux/xz-native/5.2.5-r0/recipe-sysroot-native/bin:/home/ubuntu/poky/bitbake/bin:home/ubuntu/curltest/tmp/hosttools"; export HOME="/home/ubuntu"; /usr/bin/env wget -t 2 -T 30 --passive-ftp -P home/ubuntu/curltest/downloads 'https://tukaani.org/xz/xz-5.2.5.tar.gz' --progress=dot -v failed with exit code 127, no output
  198. ERROR: xz-native-5.2.5-r0 do_fetch: Fetcher failure for URL: 'https://tukaani.org/xz/xz-5.2.5.tar.gz'. Unable to fetch URL from any source.
  199. ERROR: Task (virtual:native:/home/ubuntu/poky/meta/recipes-core/zlib/zlib_1.2.11.bb:do_fetch) failed with exit code '1'
  200. ERROR: Logfile of failure stored in: home/ubuntu/curltest/tmp/work/x86_64-linux/xz-native/5.2.5-r0/temp/log.do_fetch.717
  201. ERROR: automake-native-1.16.3-r0 do_fetch: Fetcher failure: Fetch command export PSEUDO_DISABLED=1; export PATH="/home/ubuntu/poky/scripts/native-intercept:/home/ubuntu/poky/scripts:home/ubuntu/curltest/tmp/work/x86_64-linux/automake-native/1.16.3-r0/recipe-sysroot-native/usr/bin/x86_64-linux:home/ubuntu/curltest/tmp/work/x86_64-linux/automake-native/1.16.3-r0/recipe-sysroot-native/usr/bin:home/ubuntu/curltest/tmp/work/x86_64-linux/automake-native/1.16.3-r0/recipe-sysroot-native/usr/sbin:home/ubuntu/curltest/tmp/work/x86_64-linux/automake-native/1.16.3-r0/recipe-sysroot-native/usr/bin:home/ubuntu/curltest/tmp/work/x86_64-linux/automake-native/1.16.3-r0/recipe-sysroot-native/sbin:home/ubuntu/curltest/tmp/work/x86_64-linux/automake-native/1.16.3-r0/recipe-sysroot-native/bin:/home/ubuntu/poky/bitbake/bin:home/ubuntu/curltest/tmp/hosttools"; export HOME="/home/ubuntu"; /usr/bin/env wget -t 2 -T 30 --passive-ftp -P home/ubuntu/curltest/downloads 'https://ftp.gnu.org/gnu/automake/automake-1.16.3.tar.gz' --progress=dot -v failed with exit code 127, no output
  202. ERROR: automake-native-1.16.3-r0 do_fetch: Fetcher failure for URL: 'https://ftp.gnu.org/gnu/automake/automake-1.16.3.tar.gz'. Unable to fetch URL from any source.
  203. ERROR: Task (virtual:native:/home/ubuntu/poky/meta/recipes-extended/xz/xz_5.2.5.bb:do_fetch) failed with exit code '1'
  204. ERROR: gnu-config-native-20210722+gitAUTOINC+805517123c-r0 do_fetch: Fetcher failure: Fetch command export PSEUDO_DISABLED=1; export PATH="/home/ubuntu/poky/scripts/native-intercept:/home/ubuntu/poky/scripts:home/ubuntu/curltest/tmp/work/x86_64-linux/gnu-config-native/20210722+gitAUTOINC+805517123c-r0/recipe-sysroot-native/usr/bin/x86_64-linux:home/ubuntu/curltest/tmp/work/x86_64-linux/gnu-config-native/20210722+gitAUTOINC+805517123c-r0/recipe-sysroot-native/usr/bin:home/ubuntu/curltest/tmp/work/x86_64-linux/gnu-config-native/20210722+gitAUTOINC+805517123c-r0/recipe-sysroot-native/usr/sbin:home/ubuntu/curltest/tmp/work/x86_64-linux/gnu-config-native/20210722+gitAUTOINC+805517123c-r0/recipe-sysroot-native/usr/bin:home/ubuntu/curltest/tmp/work/x86_64-linux/gnu-config-native/20210722+gitAUTOINC+805517123c-r0/recipe-sysroot-native/sbin:home/ubuntu/curltest/tmp/work/x86_64-linux/gnu-config-native/20210722+gitAUTOINC+805517123c-r0/recipe-sysroot-native/bin:/home/ubuntu/poky/bitbake/bin:home/ubuntu/curltest/tmp/hosttools"; export HOME="/home/ubuntu"; LANG=C git -c core.fsyncobjectfiles=0 -c gc.autoDetach=false clone --bare --mirror https://git.savannah.gnu.org/git/config.git home/ubuntu/curltest/downloads/git2/git.savannah.gnu.org.git.config.git --progress failed with exit code 127, no output
  205. ERROR: gnu-config-native-20210722+gitAUTOINC+805517123c-r0 do_fetch: Fetcher failure for URL: 'git://git.savannah.gnu.org/git/config.git;protocol=https;branch=master'. Unable to fetch URL from any source.
  206. ERROR: Logfile of failure stored in: home/ubuntu/curltest/tmp/work/x86_64-linux/automake-native/1.16.3-r0/temp/log.do_fetch.715
  207. ERROR: autoconf-native-2.71-r0 do_fetch: Fetcher failure: Fetch command export PSEUDO_DISABLED=1; export PATH="/home/ubuntu/poky/scripts/native-intercept:/home/ubuntu/poky/scripts:home/ubuntu/curltest/tmp/work/x86_64-linux/autoconf-native/2.71-r0/recipe-sysroot-native/usr/bin/x86_64-linux:home/ubuntu/curltest/tmp/work/x86_64-linux/autoconf-native/2.71-r0/recipe-sysroot-native/usr/bin:home/ubuntu/curltest/tmp/work/x86_64-linux/autoconf-native/2.71-r0/recipe-sysroot-native/usr/sbin:home/ubuntu/curltest/tmp/work/x86_64-linux/autoconf-native/2.71-r0/recipe-sysroot-native/usr/bin:home/ubuntu/curltest/tmp/work/x86_64-linux/autoconf-native/2.71-r0/recipe-sysroot-native/sbin:home/ubuntu/curltest/tmp/work/x86_64-linux/autoconf-native/2.71-r0/recipe-sysroot-native/bin:/home/ubuntu/poky/bitbake/bin:home/ubuntu/curltest/tmp/hosttools"; export HOME="/home/ubuntu"; /usr/bin/env wget -t 2 -T 30 --passive-ftp -P home/ubuntu/curltest/downloads 'https://ftp.gnu.org/gnu/autoconf/autoconf-2.71.tar.gz' --progress=dot -v failed with exit code 127, no output
  208. ERROR: autoconf-native-2.71-r0 do_fetch: Fetcher failure for URL: 'https://ftp.gnu.org/gnu/autoconf/autoconf-2.71.tar.gz'. Unable to fetch URL from any source.
  209. ERROR: Logfile of failure stored in: home/ubuntu/curltest/tmp/work/x86_64-linux/gnu-config-native/20210722+gitAUTOINC+805517123c-r0/temp/log.do_fetch.710
  210. ERROR: Logfile of failure stored in: home/ubuntu/curltest/tmp/work/x86_64-linux/autoconf-native/2.71-r0/temp/log.do_fetch.714
  211. ERROR: Task (virtual:native:/home/ubuntu/poky/meta/recipes-devtools/automake/automake_1.16.3.bb:do_fetch) failed with exit code '1'
  212. ERROR: Task (virtual:native:/home/ubuntu/poky/meta/recipes-devtools/autoconf/autoconf_2.71.bb:do_fetch) failed with exit code '1'
  213. ERROR: Task (virtual:native:/home/ubuntu/poky/meta/recipes-devtools/gnu-config/gnu-config_git.bb:do_fetch) failed with exit code '1'
  214. ERROR: curl-native-7.78.0-r0 do_fetch: Fetcher failure: Fetch command export PSEUDO_DISABLED=1; export PATH="/home/ubuntu/poky/scripts/native-intercept:/home/ubuntu/poky/scripts:home/ubuntu/curltest/tmp/work/x86_64-linux/curl-native/7.78.0-r0/recipe-sysroot-native/usr/bin/x86_64-linux:home/ubuntu/curltest/tmp/work/x86_64-linux/curl-native/7.78.0-r0/recipe-sysroot-native/usr/bin:home/ubuntu/curltest/tmp/work/x86_64-linux/curl-native/7.78.0-r0/recipe-sysroot-native/usr/sbin:home/ubuntu/curltest/tmp/work/x86_64-linux/curl-native/7.78.0-r0/recipe-sysroot-native/usr/bin:home/ubuntu/curltest/tmp/work/x86_64-linux/curl-native/7.78.0-r0/recipe-sysroot-native/sbin:home/ubuntu/curltest/tmp/work/x86_64-linux/curl-native/7.78.0-r0/recipe-sysroot-native/bin:/home/ubuntu/poky/bitbake/bin:home/ubuntu/curltest/tmp/hosttools"; export HOME="/home/ubuntu"; /usr/bin/env wget -t 2 -T 30 --passive-ftp -P home/ubuntu/curltest/downloads 'https://curl.haxx.se/download/curl-7.78.0.tar.bz2' --progress=dot -v failed with exit code 127, no output
  215. ERROR: pkgconfig-native-0.29.2+gitAUTOINC+edf8e6f0ea-r0 do_fetch: Fetcher failure: Fetch command export PSEUDO_DISABLED=1; export PATH="/home/ubuntu/poky/scripts/native-intercept:/home/ubuntu/poky/scripts:home/ubuntu/curltest/tmp/work/x86_64-linux/pkgconfig-native/0.29.2+gitAUTOINC+edf8e6f0ea-r0/recipe-sysroot-native/usr/bin/x86_64-linux:home/ubuntu/curltest/tmp/work/x86_64-linux/pkgconfig-native/0.29.2+gitAUTOINC+edf8e6f0ea-r0/recipe-sysroot-native/usr/bin:home/ubuntu/curltest/tmp/work/x86_64-linux/pkgconfig-native/0.29.2+gitAUTOINC+edf8e6f0ea-r0/recipe-sysroot-native/usr/sbin:home/ubuntu/curltest/tmp/work/x86_64-linux/pkgconfig-native/0.29.2+gitAUTOINC+edf8e6f0ea-r0/recipe-sysroot-native/usr/bin:home/ubuntu/curltest/tmp/work/x86_64-linux/pkgconfig-native/0.29.2+gitAUTOINC+edf8e6f0ea-r0/recipe-sysroot-native/sbin:home/ubuntu/curltest/tmp/work/x86_64-linux/pkgconfig-native/0.29.2+gitAUTOINC+edf8e6f0ea-r0/recipe-sysroot-native/bin:/home/ubuntu/poky/bitbake/bin:home/ubuntu/curltest/tmp/hosttools"; export HOME="/home/ubuntu"; LANG=C git -c core.fsyncobjectfiles=0 -c gc.autoDetach=false clone --bare --mirror https://gitlab.freedesktop.org/pkg-config/pkg-config.git home/ubuntu/curltest/downloads/git2/gitlab.freedesktop.org.pkg-config.pkg-config.git --progress failed with exit code 127, no output
  216. ERROR: curl-native-7.78.0-r0 do_fetch: Fetcher failure for URL: 'https://curl.haxx.se/download/curl-7.78.0.tar.bz2'. Unable to fetch URL from any source.
  217. ERROR: pkgconfig-native-0.29.2+gitAUTOINC+edf8e6f0ea-r0 do_fetch: Fetcher failure for URL: 'git://gitlab.freedesktop.org/pkg-config/pkg-config.git;branch=master;protocol=https'. Unable to fetch URL from any source.
  218. ERROR: Logfile of failure stored in: home/ubuntu/curltest/tmp/work/x86_64-linux/pkgconfig-native/0.29.2+gitAUTOINC+edf8e6f0ea-r0/temp/log.do_fetch.718
  219. ERROR: Logfile of failure stored in: home/ubuntu/curltest/tmp/work/x86_64-linux/curl-native/7.78.0-r0/temp/log.do_fetch.721
  220. ERROR: Task (virtual:native:/home/ubuntu/poky/meta/recipes-devtools/pkgconfig/pkgconfig_git.bb:do_fetch) failed with exit code '1'
  221. ERROR: Task (virtual:native:/home/ubuntu/poky/meta/recipes-support/curl/curl_7.78.0.bb:do_fetch) failed with exit code '1'
  222. NOTE: Tasks Summary: Attempted 17 tasks of which 4 didn't need to be rerun and 13 failed.
  223.  
  224. Summary: 13 tasks failed:
  225.  /home/ubuntu/poky/meta/recipes-extended/texinfo-dummy-native/texinfo-dummy-native.bb:do_unpack
  226.  /home/ubuntu/poky/meta/recipes-core/gettext/gettext-minimal-native_0.21.bb:do_unpack
  227.  /home/ubuntu/poky/meta/recipes-devtools/m4/m4-native_1.4.19.bb:do_fetch
  228.  /home/ubuntu/poky/meta/recipes-devtools/quilt/quilt-native_0.66.bb:do_fetch
  229.  /home/ubuntu/poky/meta/recipes-devtools/libtool/libtool-native_2.4.6.bb:do_fetch
  230.  virtual:native:/home/ubuntu/poky/meta/recipes-connectivity/openssl/openssl_1.1.1l.bb:do_fetch
  231.  virtual:native:/home/ubuntu/poky/meta/recipes-core/zlib/zlib_1.2.11.bb:do_fetch
  232.  virtual:native:/home/ubuntu/poky/meta/recipes-extended/xz/xz_5.2.5.bb:do_fetch
  233.  virtual:native:/home/ubuntu/poky/meta/recipes-devtools/automake/automake_1.16.3.bb:do_fetch
  234.  virtual:native:/home/ubuntu/poky/meta/recipes-devtools/autoconf/autoconf_2.71.bb:do_fetch
  235.  virtual:native:/home/ubuntu/poky/meta/recipes-devtools/gnu-config/gnu-config_git.bb:do_fetch
  236.  virtual:native:/home/ubuntu/poky/meta/recipes-devtools/pkgconfig/pkgconfig_git.bb:do_fetch
  237.  virtual:native:/home/ubuntu/poky/meta/recipes-support/curl/curl_7.78.0.bb:do_fetch
  238. Summary: There were 13 WARNING messages shown.
  239. Summary: There were 24 ERROR messages shown, returning a non-zero exit code.
  240.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement