Advertisement
kp7299

bitbake curl

Apr 20th, 2022
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 33.90 KB | None | 0 0
  1. ubuntu@eef32f5d12dd:~/poky/curlptestbuild$ bitbake curl
  2. Loading cache: 100% |                                                                                                                 | ETA:  --:--:--
  3. Loaded 0 entries from dependency cache.
  4. Parsing recipes: 100% |################################################################################################################| Time: 0:00:05
  5. Parsing of 829 .bb files complete (0 cached, 829 parsed). 1472 targets, 62 skipped, 0 masked, 0 errors.
  6. NOTE: Resolving any missing task queue dependencies
  7.  
  8. Build Configuration:
  9. BB_VERSION           = "1.52.0"
  10. BUILD_SYS            = "x86_64-linux"
  11. NATIVELSBSTRING      = "ubuntu-18.04"
  12. TARGET_SYS           = "arm-poky-linux-gnueabi"
  13. MACHINE              = "qemuarm"
  14. DISTRO               = "poky"
  15. DISTRO_VERSION       = "3.4.3"
  16. TUNE_FEATURES        = "arm vfp cortexa15 neon thumb callconvention-hard"
  17. TARGET_FPU           = "hard"
  18. meta
  19. meta-poky
  20. meta-yocto-bsp       = "my-honister:580532cfd0c23e27a366c074e806fc0b6908b874"
  21.  
  22. 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.
  23. WARNING: To build your own uninative loader, please bitbake uninative-tarball and set UNINATIVE_TARBALL appropriately.
  24. Initialising tasks: 100% |#############################################################################################################| Time: 0:00:00
  25. Sstate summary: Wanted 182 Local 0 Network 0 Missed 182 Current 0 (0% match, 0% complete)
  26. NOTE: Executing Tasks
  27. 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
  28. 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
  29. 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
  30. 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
  31. ERROR: gettext-minimal-native-0.21-r0 do_unpack: Error executing a python function in exec_func_python() autogenerated:
  32.  
  33. The stack trace of python calls that resulted in this exception/failure was:
  34. File: 'exec_func_python() autogenerated', lineno: 2, function: <module>
  35.      0001:
  36.  *** 0002:base_do_unpack(d)
  37.      0003:
  38. File: '/home/ubuntu/poky/meta/classes/base.bbclass', lineno: 178, function: base_do_unpack
  39.      0174:        return
  40.      0175:
  41.      0176:    try:
  42.      0177:        fetcher = bb.fetch2.Fetch(src_uri, d)
  43.  *** 0178:        fetcher.unpack(d.getVar('WORKDIR'))
  44.      0179:    except bb.fetch2.BBFetchException as e:
  45.      0180:        bb.fatal(str(e))
  46.      0181:}
  47.      0182:
  48. File: '/home/ubuntu/poky/bitbake/lib/bb/fetch2/__init__.py', lineno: 1831, function: unpack
  49.      1827:
  50.      1828:            if ud.lockfile:
  51.      1829:                lf = bb.utils.lockfile(ud.lockfile)
  52.      1830:
  53.  *** 1831:            ud.method.unpack(ud, root, self.d)
  54.      1832:
  55.      1833:            if ud.lockfile:
  56.      1834:                bb.utils.unlockfile(lf)
  57.      1835:
  58. File: '/home/ubuntu/poky/bitbake/lib/bb/fetch2/__init__.py', lineno: 1555, function: unpack
  59.      1551:        path = data.getVar('PATH')
  60.      1552:        if path:
  61.      1553:            cmd = "PATH=\"%s\" %s" % (path, cmd)
  62.      1554:        bb.note("Unpacking %s to %s/" % (file, unpackdir))
  63.  *** 1555:        ret = subprocess.call(cmd, preexec_fn=subprocess_setup, shell=True, cwd=unpackdir)
  64.      1556:
  65.      1557:        if ret != 0:
  66.      1558:            raise UnpackError("Unpack command %s failed with return value %s" % (cmd, ret), urldata.url)
  67.      1559:
  68. File: '/usr/lib/python3.6/subprocess.py', lineno: 287, function: call
  69.      0283:    The arguments are the same as for the Popen constructor.  Example:
  70.      0284:
  71.      0285:    retcode = call(["ls", "-l"])
  72.      0286:    """
  73. *** 0287:    with Popen(*popenargs, **kwargs) as p:
  74.     0288:        try:
  75.     0289:            return p.wait(timeout=timeout)
  76.     0290:        except:
  77.     0291:            p.kill()
  78. File: '/usr/lib/python3.6/subprocess.py', lineno: 729, function: __init__
  79.     0725:                                startupinfo, creationflags, shell,
  80.     0726:                                p2cread, p2cwrite,
  81.     0727:                                c2pread, c2pwrite,
  82.     0728:                                errread, errwrite,
  83. *** 0729:                                restore_signals, start_new_session)
  84.     0730:        except:
  85.     0731:            # Cleanup if the child failed starting.
  86.     0732:            for f in filter(None, (self.stdin, self.stdout, self.stderr)):
  87.     0733:                try:
  88. File: '/usr/lib/python3.6/subprocess.py', lineno: 1364, function: _execute_child
  89.     1360:                    if errno_num != 0:
  90.     1361:                        err_msg = os.strerror(errno_num)
  91.     1362:                        if errno_num == errno.ENOENT:
  92.     1363:                            err_msg += ': ' + repr(err_filename)
  93. *** 1364:                    raise child_exception_type(errno_num, err_msg, err_filename)
  94.     1365:                raise child_exception_type(err_msg)
  95.     1366:
  96.     1367:
  97.     1368:        def _handle_exitstatus(self, sts, _WIFSIGNALED=os.WIFSIGNALED,
  98. 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'
  99.  
  100. ERROR: Logfile of failure stored in: home/ubuntu/curltest/tmp/work/x86_64-linux/gettext-minimal-native/0.21-r0/temp/log.do_unpack.1313
  101. ERROR: Task (/home/ubuntu/poky/meta/recipes-core/gettext/gettext-minimal-native_0.21.bb:do_unpack) failed with exit code '1'
  102. ERROR: texinfo-dummy-native-1.0-r0 do_unpack: Error executing a python function in exec_func_python() autogenerated:
  103.  
  104. The stack trace of python calls that resulted in this exception/failure was:
  105. File: 'exec_func_python() autogenerated', lineno: 2, function: <module>
  106.     0001:
  107. *** 0002:base_do_unpack(d)
  108.     0003:
  109. File: '/home/ubuntu/poky/meta/classes/base.bbclass', lineno: 178, function: base_do_unpack
  110.     0174:        return
  111.     0175:
  112.     0176:    try:
  113.     0177:        fetcher = bb.fetch2.Fetch(src_uri, d)
  114. *** 0178:        fetcher.unpack(d.getVar('WORKDIR'))
  115.     0179:    except bb.fetch2.BBFetchException as e:
  116.     0180:        bb.fatal(str(e))
  117.     0181:}
  118.     0182:
  119. File: '/home/ubuntu/poky/bitbake/lib/bb/fetch2/__init__.py', lineno: 1831, function: unpack
  120.     1827:
  121.     1828:            if ud.lockfile:
  122.     1829:                lf = bb.utils.lockfile(ud.lockfile)
  123.     1830:
  124. *** 1831:            ud.method.unpack(ud, root, self.d)
  125.     1832:
  126.     1833:            if ud.lockfile:
  127.     1834:                bb.utils.unlockfile(lf)
  128.     1835:
  129. File: '/home/ubuntu/poky/bitbake/lib/bb/fetch2/__init__.py', lineno: 1555, function: unpack
  130.     1551:        path = data.getVar('PATH')
  131.     1552:        if path:
  132.     1553:            cmd = "PATH=\"%s\" %s" % (path, cmd)
  133.     1554:        bb.note("Unpacking %s to %s/" % (file, unpackdir))
  134. *** 1555:        ret = subprocess.call(cmd, preexec_fn=subprocess_setup, shell=True, cwd=unpackdir)
  135.     1556:
  136.     1557:        if ret != 0:
  137.     1558:            raise UnpackError("Unpack command %s failed with return value %s" % (cmd, ret), urldata.url)
  138.     1559:
  139. File: '/usr/lib/python3.6/subprocess.py', lineno: 287, function: call
  140.     0283:    The arguments are the same as for the Popen constructor.  Example:
  141.     0284:
  142.     0285:    retcode = call(["ls", "-l"])
  143.     0286:    """
  144.  *** 0287:    with Popen(*popenargs, **kwargs) as p:
  145.      0288:        try:
  146.      0289:            return p.wait(timeout=timeout)
  147.      0290:        except:
  148.      0291:            p.kill()
  149. File: '/usr/lib/python3.6/subprocess.py', lineno: 729, function: __init__
  150.      0725:                                startupinfo, creationflags, shell,
  151.      0726:                                p2cread, p2cwrite,
  152.      0727:                                c2pread, c2pwrite,
  153.      0728:                                errread, errwrite,
  154.  *** 0729:                                restore_signals, start_new_session)
  155.      0730:        except:
  156.      0731:            # Cleanup if the child failed starting.
  157.      0732:            for f in filter(None, (self.stdin, self.stdout, self.stderr)):
  158.      0733:                try:
  159. File: '/usr/lib/python3.6/subprocess.py', lineno: 1364, function: _execute_child
  160.      1360:                    if errno_num != 0:
  161.      1361:                        err_msg = os.strerror(errno_num)
  162.      1362:                        if errno_num == errno.ENOENT:
  163.      1363:                            err_msg += ': ' + repr(err_filename)
  164.  *** 1364:                    raise child_exception_type(errno_num, err_msg, err_filename)
  165.      1365:                raise child_exception_type(err_msg)
  166.      1366:
  167.      1367:
  168.      1368:        def _handle_exitstatus(self, sts, _WIFSIGNALED=os.WIFSIGNALED,
  169. 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'
  170.  
  171. ERROR: Logfile of failure stored in: home/ubuntu/curltest/tmp/work/x86_64-linux/texinfo-dummy-native/1.0-r0/temp/log.do_unpack.1312
  172. ERROR: Task (/home/ubuntu/poky/meta/recipes-extended/texinfo-dummy-native/texinfo-dummy-native.bb:do_unpack) failed with exit code '1'
  173. 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
  174. WARNING: patch-native-2.7.6-r0 do_fetch: Failed to fetch URL https://ftp.gnu.org/gnu/patch/patch-2.7.6.tar.gz, attempting MIRRORS if available
  175. WARNING: flex-native-2.6.4-r0 do_fetch: Failed to fetch URL https://github.com/westes/flex/releases/download/v2.6.4/flex-2.6.4.tar.gz, attempting MIRRORS if available
  176. 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
  177. WARNING: gmp-native-6.2.1-r0 do_fetch: Failed to fetch URL https://gmplib.org/download/gmp/gmp-6.2.1.tar.bz2, attempting MIRRORS if available
  178. 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
  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.1296
  182. 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
  183. 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.
  184. ERROR: Logfile of failure stored in: home/ubuntu/curltest/tmp/work/x86_64-linux/m4-native/1.4.19-r0/temp/log.do_fetch.1300
  185. 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
  186. ERROR: Task (/home/ubuntu/poky/meta/recipes-devtools/quilt/quilt-native_0.66.bb:do_fetch) failed with exit code '1'
  187. ERROR: Task (/home/ubuntu/poky/meta/recipes-devtools/m4/m4-native_1.4.19.bb:do_fetch) failed with exit code '1'
  188. 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
  189. 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
  190. 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.
  191. ERROR: Logfile of failure stored in: home/ubuntu/curltest/tmp/work/x86_64-linux/libtool-native/2.4.6-r0/temp/log.do_fetch.1303
  192. ERROR: Task (/home/ubuntu/poky/meta/recipes-devtools/libtool/libtool-native_2.4.6.bb:do_fetch) failed with exit code '1'
  193. 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
  194. 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.
  195. ERROR: Logfile of failure stored in: home/ubuntu/curltest/tmp/work/x86_64-linux/autoconf-native/2.71-r0/temp/log.do_fetch.1301
  196. ERROR: Task (virtual:native:/home/ubuntu/poky/meta/recipes-devtools/autoconf/autoconf_2.71.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: Logfile of failure stored in: home/ubuntu/curltest/tmp/work/x86_64-linux/xz-native/5.2.5-r0/temp/log.do_fetch.1304
  200. WARNING: attr-native-2.5.1-r0 do_fetch: Failed to fetch URL https://download.savannah.gnu.org/releases/attr/attr-2.5.1.tar.gz, attempting MIRRORS if available
  201. WARNING: bison-native-3.7.6-r0 do_fetch: Failed to fetch URL https://ftp.gnu.org/gnu/bison/bison-3.7.6.tar.xz, attempting MIRRORS if available
  202. ERROR: Task (virtual:native:/home/ubuntu/poky/meta/recipes-extended/xz/xz_5.2.5.bb:do_fetch) failed with exit code '1'
  203. ERROR: flex-native-2.6.4-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/flex-native/2.6.4-r0/recipe-sysroot-native/usr/bin/x86_64-linux:home/ubuntu/curltest/tmp/work/x86_64-linux/flex-native/2.6.4-r0/recipe-sysroot-native/usr/bin:home/ubuntu/curltest/tmp/work/x86_64-linux/flex-native/2.6.4-r0/recipe-sysroot-native/usr/sbin:home/ubuntu/curltest/tmp/work/x86_64-linux/flex-native/2.6.4-r0/recipe-sysroot-native/usr/bin:home/ubuntu/curltest/tmp/work/x86_64-linux/flex-native/2.6.4-r0/recipe-sysroot-native/sbin:home/ubuntu/curltest/tmp/work/x86_64-linux/flex-native/2.6.4-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://github.com/westes/flex/releases/download/v2.6.4/flex-2.6.4.tar.gz' --progress=dot -v failed with exit code 127, no output
  204. ERROR: flex-native-2.6.4-r0 do_fetch: Fetcher failure for URL: 'https://github.com/westes/flex/releases/download/v2.6.4/flex-2.6.4.tar.gz'. Unable to fetch URL from any source.
  205. ERROR: Logfile of failure stored in: home/ubuntu/curltest/tmp/work/x86_64-linux/flex-native/2.6.4-r0/temp/log.do_fetch.1307
  206. ERROR: Task (virtual:native:/home/ubuntu/poky/meta/recipes-devtools/flex/flex_2.6.4.bb:do_fetch) failed with exit code '1'
  207. ERROR: gmp-native-6.2.1-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/gmp-native/6.2.1-r0/recipe-sysroot-native/usr/bin/x86_64-linux:home/ubuntu/curltest/tmp/work/x86_64-linux/gmp-native/6.2.1-r0/recipe-sysroot-native/usr/bin:home/ubuntu/curltest/tmp/work/x86_64-linux/gmp-native/6.2.1-r0/recipe-sysroot-native/usr/sbin:home/ubuntu/curltest/tmp/work/x86_64-linux/gmp-native/6.2.1-r0/recipe-sysroot-native/usr/bin:home/ubuntu/curltest/tmp/work/x86_64-linux/gmp-native/6.2.1-r0/recipe-sysroot-native/sbin:home/ubuntu/curltest/tmp/work/x86_64-linux/gmp-native/6.2.1-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://gmplib.org/download/gmp/gmp-6.2.1.tar.bz2' --progress=dot -v failed with exit code 127, no output
  208. ERROR: gmp-native-6.2.1-r0 do_fetch: Fetcher failure for URL: 'https://gmplib.org/download/gmp/gmp-6.2.1.tar.bz2'. Unable to fetch URL from any source.
  209. ERROR: Logfile of failure stored in: home/ubuntu/curltest/tmp/work/x86_64-linux/gmp-native/6.2.1-r0/temp/log.do_fetch.1308
  210. ERROR: Task (virtual:native:/home/ubuntu/poky/meta/recipes-support/gmp/gmp_6.2.1.bb:do_fetch) failed with exit code '1'
  211. 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
  212. 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.
  213. 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
  214. 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.
  215. ERROR: Logfile of failure stored in: home/ubuntu/curltest/tmp/work/x86_64-linux/zlib-native/1.2.11-r0/temp/log.do_fetch.1310
  216. ERROR: Logfile of failure stored in: home/ubuntu/curltest/tmp/work/x86_64-linux/automake-native/1.16.3-r0/temp/log.do_fetch.1302
  217. ERROR: Task (virtual:native:/home/ubuntu/poky/meta/recipes-devtools/automake/automake_1.16.3.bb:do_fetch) failed with exit code '1'
  218. ERROR: Task (virtual:native:/home/ubuntu/poky/meta/recipes-core/zlib/zlib_1.2.11.bb:do_fetch) failed with exit code '1'
  219. ERROR: patch-native-2.7.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/patch-native/2.7.6-r0/recipe-sysroot-native/usr/bin/x86_64-linux:home/ubuntu/curltest/tmp/work/x86_64-linux/patch-native/2.7.6-r0/recipe-sysroot-native/usr/bin:home/ubuntu/curltest/tmp/work/x86_64-linux/patch-native/2.7.6-r0/recipe-sysroot-native/usr/sbin:home/ubuntu/curltest/tmp/work/x86_64-linux/patch-native/2.7.6-r0/recipe-sysroot-native/usr/bin:home/ubuntu/curltest/tmp/work/x86_64-linux/patch-native/2.7.6-r0/recipe-sysroot-native/sbin:home/ubuntu/curltest/tmp/work/x86_64-linux/patch-native/2.7.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/patch/patch-2.7.6.tar.gz' --progress=dot -v failed with exit code 127, no output
  220. ERROR: patch-native-2.7.6-r0 do_fetch: Fetcher failure for URL: 'https://ftp.gnu.org/gnu/patch/patch-2.7.6.tar.gz'. Unable to fetch URL from any source.
  221. ERROR: Logfile of failure stored in: home/ubuntu/curltest/tmp/work/x86_64-linux/patch-native/2.7.6-r0/temp/log.do_fetch.1309
  222. 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
  223. 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.
  224. 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.1305
  225. ERROR: Task (virtual:native:/home/ubuntu/poky/meta/recipes-devtools/patch/patch_2.7.6.bb:do_fetch) failed with exit code '1'
  226. ERROR: Task (virtual:native:/home/ubuntu/poky/meta/recipes-devtools/pkgconfig/pkgconfig_git.bb:do_fetch) failed with exit code '1'
  227. 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
  228. 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.
  229. 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.1297
  230. ERROR: Task (virtual:native:/home/ubuntu/poky/meta/recipes-devtools/gnu-config/gnu-config_git.bb:do_fetch) failed with exit code '1'
  231. ERROR: attr-native-2.5.1-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/attr-native/2.5.1-r0/recipe-sysroot-native/usr/bin/x86_64-linux:home/ubuntu/curltest/tmp/work/x86_64-linux/attr-native/2.5.1-r0/recipe-sysroot-native/usr/bin:home/ubuntu/curltest/tmp/work/x86_64-linux/attr-native/2.5.1-r0/recipe-sysroot-native/usr/sbin:home/ubuntu/curltest/tmp/work/x86_64-linux/attr-native/2.5.1-r0/recipe-sysroot-native/usr/bin:home/ubuntu/curltest/tmp/work/x86_64-linux/attr-native/2.5.1-r0/recipe-sysroot-native/sbin:home/ubuntu/curltest/tmp/work/x86_64-linux/attr-native/2.5.1-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/attr/attr-2.5.1.tar.gz' --progress=dot -v failed with exit code 127, no output
  232. ERROR: attr-native-2.5.1-r0 do_fetch: Fetcher failure for URL: 'https://download.savannah.gnu.org/releases/attr/attr-2.5.1.tar.gz'. Unable to fetch URL from any source.
  233. ERROR: bison-native-3.7.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/bison-native/3.7.6-r0/recipe-sysroot-native/usr/bin/x86_64-linux:home/ubuntu/curltest/tmp/work/x86_64-linux/bison-native/3.7.6-r0/recipe-sysroot-native/usr/bin:home/ubuntu/curltest/tmp/work/x86_64-linux/bison-native/3.7.6-r0/recipe-sysroot-native/usr/sbin:home/ubuntu/curltest/tmp/work/x86_64-linux/bison-native/3.7.6-r0/recipe-sysroot-native/usr/bin:home/ubuntu/curltest/tmp/work/x86_64-linux/bison-native/3.7.6-r0/recipe-sysroot-native/sbin:home/ubuntu/curltest/tmp/work/x86_64-linux/bison-native/3.7.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/bison/bison-3.7.6.tar.xz' --progress=dot -v failed with exit code 127, no output
  234. ERROR: bison-native-3.7.6-r0 do_fetch: Fetcher failure for URL: 'https://ftp.gnu.org/gnu/bison/bison-3.7.6.tar.xz'. Unable to fetch URL from any source.
  235. ERROR: Logfile of failure stored in: home/ubuntu/curltest/tmp/work/x86_64-linux/attr-native/2.5.1-r0/temp/log.do_fetch.1306
  236. ERROR: Logfile of failure stored in: home/ubuntu/curltest/tmp/work/x86_64-linux/bison-native/3.7.6-r0/temp/log.do_fetch.1311
  237. ERROR: Task (virtual:native:/home/ubuntu/poky/meta/recipes-support/attr/attr_2.5.1.bb:do_fetch) failed with exit code '1'
  238. ERROR: Task (virtual:native:/home/ubuntu/poky/meta/recipes-devtools/bison/bison_3.7.6.bb:do_fetch) failed with exit code '1'
  239. NOTE: Tasks Summary: Attempted 18 tasks of which 0 didn't need to be rerun and 16 failed.
  240.  
  241. Summary: 16 tasks failed:
  242.  /home/ubuntu/poky/meta/recipes-core/gettext/gettext-minimal-native_0.21.bb:do_unpack
  243.  /home/ubuntu/poky/meta/recipes-extended/texinfo-dummy-native/texinfo-dummy-native.bb:do_unpack
  244.  /home/ubuntu/poky/meta/recipes-devtools/quilt/quilt-native_0.66.bb:do_fetch
  245.  /home/ubuntu/poky/meta/recipes-devtools/m4/m4-native_1.4.19.bb:do_fetch
  246.  /home/ubuntu/poky/meta/recipes-devtools/libtool/libtool-native_2.4.6.bb:do_fetch
  247.  virtual:native:/home/ubuntu/poky/meta/recipes-devtools/autoconf/autoconf_2.71.bb:do_fetch
  248.  virtual:native:/home/ubuntu/poky/meta/recipes-extended/xz/xz_5.2.5.bb:do_fetch
  249.  virtual:native:/home/ubuntu/poky/meta/recipes-devtools/flex/flex_2.6.4.bb:do_fetch
  250.  virtual:native:/home/ubuntu/poky/meta/recipes-support/gmp/gmp_6.2.1.bb:do_fetch
  251.  virtual:native:/home/ubuntu/poky/meta/recipes-devtools/automake/automake_1.16.3.bb:do_fetch
  252.  virtual:native:/home/ubuntu/poky/meta/recipes-core/zlib/zlib_1.2.11.bb:do_fetch
  253.  virtual:native:/home/ubuntu/poky/meta/recipes-devtools/patch/patch_2.7.6.bb:do_fetch
  254.  virtual:native:/home/ubuntu/poky/meta/recipes-devtools/pkgconfig/pkgconfig_git.bb:do_fetch
  255.  virtual:native:/home/ubuntu/poky/meta/recipes-devtools/gnu-config/gnu-config_git.bb:do_fetch
  256.  virtual:native:/home/ubuntu/poky/meta/recipes-support/attr/attr_2.5.1.bb:do_fetch
  257.  virtual:native:/home/ubuntu/poky/meta/recipes-devtools/bison/bison_3.7.6.bb:do_fetch
  258. Summary: There were 16 WARNING messages shown.
  259. Summary: There were 30 ERROR messages shown, returning a non-zero exit code.
  260.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement