sz_api.c:124:44: warning: conversion to 'size_t' {aka 'long unsigned int'} from 'long int' may change the sign of the result [-Wsign-conversion] 124 | hidden->image_in = (char *) malloc(image_size); | ^~~~~~~~~~ sz_api.c:131:66: warning: conversion from 'long int' to 'double' may change value [-Wconversion] 131 | image_size = (long)(strm->image_pixels * bytes_per_pixel * 1.75); | ^ sz_api.c:132:45: warning: conversion to 'size_t' {aka 'long unsigned int'} from 'long int' may change the sign of the result [-Wsign-conversion] 132 | hidden->image_out = (char *) malloc(image_size); | ^~~~~~~~~~ sz_api.c:141:48: warning: conversion to 'size_t' {aka 'long unsigned int'} from 'long int' may change the sign of the result [-Wsign-conversion] 141 | memcpy(hidden->next_in, strm->next_in, size_in); | ^~~~~~~ sz_api.c:146:27: warning: conversion from 'long int' to 'unsigned int' may change value [-Wconversion] 146 | strm->avail_in -= size_in; | ^~~~~~~ sz_api.c:147:24: warning: conversion to 'long unsigned int' from 'long int' may change the sign of the result [-Wsign-conversion] 147 | strm->total_in += size_in; | ^~ sz_api.c:154:24: warning: conversion from 'long int' to 'int' may change value [-Wconversion] 154 | return output_bytes; | ^~~~~~~~~~~~ sz_api.c:169:50: warning: conversion to 'size_t' {aka 'long unsigned int'} from 'long int' may change the sign of the result [-Wsign-conversion] 169 | memcpy(strm->next_out, hidden->next_out, size_out); | ^~~~~~~~ sz_api.c:174:28: warning: conversion from 'long int' to 'unsigned int' may change value [-Wconversion] 174 | strm->avail_out -= size_out; | ^~~~~~~~ sz_api.c:175:25: warning: conversion to 'long unsigned int' from 'long int' may change the sign of the result [-Wsign-conversion] 175 | strm->total_out += size_out; | ^~ sz_api.c: In function 'SZ_Decompress': sz_api.c:270:66: warning: conversion from 'long int' to 'double' may change value [-Wconversion] 270 | image_size = (long)(strm->image_pixels * bytes_per_pixel * 1.75); | ^ sz_api.c:271:44: warning: conversion to 'size_t' {aka 'long unsigned int'} from 'long int' may change the sign of the result [-Wsign-conversion] 271 | hidden->image_in = (char *) malloc(image_size); | ^~~~~~~~~~ sz_api.c:278:66: warning: conversion from 'long int' to 'double' may change value [-Wconversion] 278 | image_size = (long)(strm->image_pixels * bytes_per_pixel * 1.0); | ^ sz_api.c:279:45: warning: conversion to 'size_t' {aka 'long unsigned int'} from 'long int' may change the sign of the result [-Wsign-conversion] 279 | hidden->image_out = (char *) malloc(image_size); | ^~~~~~~~~~ sz_api.c:288:48: warning: conversion to 'size_t' {aka 'long unsigned int'} from 'long int' may change the sign of the result [-Wsign-conversion] 288 | memcpy(hidden->next_in, strm->next_in, size_in); | ^~~~~~~ sz_api.c:293:27: warning: conversion from 'long int' to 'unsigned int' may change value [-Wconversion] 293 | strm->avail_in -= size_in; | ^~~~~~~ sz_api.c:294:24: warning: conversion to 'long unsigned int' from 'long int' may change the sign of the result [-Wsign-conversion] 294 | strm->total_in += size_in; | ^~ sz_api.c:302:24: warning: conversion from 'long int' to 'int' may change value [-Wconversion] 302 | return output_bytes; | ^~~~~~~~~~~~ sz_api.c:313:50: warning: conversion to 'size_t' {aka 'long unsigned int'} from 'long int' may change the sign of the result [-Wsign-conversion] 313 | memcpy(strm->next_out, hidden->next_out, size_out); | ^~~~~~~~ sz_api.c:318:28: warning: conversion from 'long int' to 'unsigned int' may change value [-Wconversion] 318 | strm->avail_out -= size_out; | ^~~~~~~~ sz_api.c:319:25: warning: conversion to 'long unsigned int' from 'long int' may change the sign of the result [-Wsign-conversion] 319 | strm->total_out += size_out; | ^~ sz_api.c: In function 'SZ_BufftoBuffCompress': sz_api.c:396:24: warning: conversion to 'size_t' {aka 'long unsigned int'} from 'int' may change the sign of the result [-Wsign-conversion] 396 | pixels = (sourceLen+bytes_per_pixel-1)/bytes_per_pixel; | ^ sz_api.c:396:43: warning: conversion to 'size_t' {aka 'long unsigned int'} from 'int' may change the sign of the result [-Wsign-conversion] 396 | pixels = (sourceLen+bytes_per_pixel-1)/bytes_per_pixel; | ^ sz_api.c:396:14: warning: conversion to 'long int' from 'size_t' {aka 'long unsigned int'} may change the sign of the result [-Wsign-conversion] 396 | pixels = (sourceLen+bytes_per_pixel-1)/bytes_per_pixel; | ^ sz_api.c:397:33: warning: conversion from 'size_t' {aka 'long unsigned int'} to 'double' may change value [-Wconversion] 397 | out_size = (long)(sourceLen * 2.00); | ^ sz_api.c:399:18: warning: comparison of integer expressions of different signedness: 'size_t' {aka 'long unsigned int'} and 'long int' [-Wsign-compare] 399 | if (*destLen >= out_size) | ^~ sz_api.c:403:37: warning: conversion to 'size_t' {aka 'long unsigned int'} from 'long int' may change the sign of the result [-Wsign-conversion] 403 | image_out = (char *) malloc(out_size); | ^~~~~~~~ sz_api.c:414:16: warning: conversion from 'long int' to 'int' may change value [-Wconversion] 414 | return output_bytes; | ^~~~~~~~~~~~ sz_api.c:418:18: warning: comparison of integer expressions of different signedness: 'size_t' {aka 'long unsigned int'} and 'long int' [-Wsign-compare] 418 | if (*destLen >= output_bytes) | ^~ sz_api.c:419:20: warning: conversion to 'size_t' {aka 'long unsigned int'} from 'long int' may change the sign of the result [-Wsign-conversion] 419 | *destLen = output_bytes; | ^~~~~~~~~~~~ sz_api.c: In function 'SZ_BufftoBuffDecompress': sz_api.c:454:22: warning: conversion to 'size_t' {aka 'long unsigned int'} from 'int' may change the sign of the result [-Wsign-conversion] 454 | pixels = *destLen/bytes_per_pixel; | ^ sz_api.c:454:14: warning: conversion to 'long int' from 'size_t' {aka 'long unsigned int'} may change the sign of the result [-Wsign-conversion] 454 | pixels = *destLen/bytes_per_pixel; | ^ sz_api.c:456:136: warning: conversion to 'long int' from 'size_t' {aka 'long unsigned int'} may change the sign of the result [-Wsign-conversion] 456 | output_bytes = szip_uncompress_memory(sz->options_mask, sz->bits_per_pixel, sz->pixels_per_block, sz->pixels_per_scanline, source, sourceLen, dest, pixels); | ^~~~~~~~~ sz_api.c:458:16: warning: conversion from 'long int' to 'int' may change value [-Wconversion] 458 | return output_bytes; | ^~~~~~~~~~~~ sz_api.c:464:20: warning: conversion to 'size_t' {aka 'long unsigned int'} from 'long int' may change the sign of the result [-Wsign-conversion] 464 | *destLen = output_bytes; | ^~~~~~~~~~~~ /bin/bash ../libtool --tag=CC --mode=compile /tmp/instance-10/output-1/host/bin/mips64-buildroot-linux-gnu-gcc -DHAVE_CONFIG_H -I. -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -O3 -g0 -D_FORTIFY_SOURCE=1 -ansi -pedantic -Wall -W -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Wsign-compare -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -O -fomit-frame-pointer -finline-functions -c -o encoding.lo encoding.c libtool: compile: /tmp/instance-10/output-1/host/bin/mips64-buildroot-linux-gnu-gcc -DHAVE_CONFIG_H -I. -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -O3 -g0 -D_FORTIFY_SOURCE=1 -ansi -pedantic -Wall -W -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Wsign-compare -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -O -fomit-frame-pointer -finline-functions -c encoding.c -fPIC -DPIC -o .libs/encoding.o encoding.c:16:30: warning: initialization discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers] 16 | char * szip_encoder_status = "SZIP ENCODER ENABLED"; | ^~~~~~~~~~~~~~~~~~~~~~ /bin/bash ../libtool --tag=CC --mode=link /tmp/instance-10/output-1/host/bin/mips64-buildroot-linux-gnu-gcc -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -O3 -g0 -D_FORTIFY_SOURCE=1 -ansi -pedantic -Wall -W -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Wsign-compare -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -O -fomit-frame-pointer -finline-functions -version-info 2:0:0 -o libsz.la -rpath /usr/lib rice.lo sz_api.lo encoding.lo -lm libtool: link: /tmp/instance-10/output-1/host/bin/mips64-buildroot-linux-gnu-gcc -shared -fPIC -DPIC .libs/rice.o .libs/sz_api.o .libs/encoding.o -lm -O3 -g0 -O -Wl,-soname -Wl,libsz.so.2 -o .libs/libsz.so.2.0.0 libtool: link: (cd ".libs" && rm -f "libsz.so.2" && ln -s "libsz.so.2.0.0" "libsz.so.2") libtool: link: (cd ".libs" && rm -f "libsz.so" && ln -s "libsz.so.2.0.0" "libsz.so") libtool: link: ( cd ".libs" && rm -f "libsz.la" && ln -s "../libsz.la" "libsz.la" ) make[3]: Leaving directory '/tmp/instance-10/output-1/build/szip-2.1.1/src' make[2]: Leaving directory '/tmp/instance-10/output-1/build/szip-2.1.1/src' Making all in test make[2]: Entering directory '/tmp/instance-10/output-1/build/szip-2.1.1/test' make[2]: Nothing to be done for 'all'. make[2]: Leaving directory '/tmp/instance-10/output-1/build/szip-2.1.1/test' make[2]: Entering directory '/tmp/instance-10/output-1/build/szip-2.1.1' make[2]: Nothing to be done for 'all-am'. make[2]: Leaving directory '/tmp/instance-10/output-1/build/szip-2.1.1' make[1]: Leaving directory '/tmp/instance-10/output-1/build/szip-2.1.1' >>> szip 2.1.1 Installing to staging directory PATH="/tmp/instance-10/output-1/host/bin:/tmp/instance-10/output-1/host/sbin:/home/autobuild/make:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" /home/autobuild/make/make -j1 DESTDIR=/tmp/instance-10/output-1/host/mips64-buildroot-linux-gnu/sysroot install -C /tmp/instance-10/output-1/build/szip-2.1.1/ make[1]: Entering directory '/tmp/instance-10/output-1/build/szip-2.1.1' Making install in src make[2]: Entering directory '/tmp/instance-10/output-1/build/szip-2.1.1/src' make[3]: Entering directory '/tmp/instance-10/output-1/build/szip-2.1.1/src' /usr/bin/mkdir -p '/tmp/instance-10/output-1/host/mips64-buildroot-linux-gnu/sysroot/usr/lib' /bin/bash ../libtool --mode=install /usr/bin/install -c libsz.la '/tmp/instance-10/output-1/host/mips64-buildroot-linux-gnu/sysroot/usr/lib' libtool: install: /usr/bin/install -c .libs/libsz.so.2.0.0 /tmp/instance-10/output-1/host/mips64-buildroot-linux-gnu/sysroot/usr/lib/libsz.so.2.0.0 libtool: install: (cd /tmp/instance-10/output-1/host/mips64-buildroot-linux-gnu/sysroot/usr/lib && { ln -s -f libsz.so.2.0.0 libsz.so.2 || { rm -f libsz.so.2 && ln -s libsz.so.2.0.0 libsz.so.2; }; }) libtool: install: (cd /tmp/instance-10/output-1/host/mips64-buildroot-linux-gnu/sysroot/usr/lib && { ln -s -f libsz.so.2.0.0 libsz.so || { rm -f libsz.so && ln -s libsz.so.2.0.0 libsz.so; }; }) libtool: install: /usr/bin/install -c .libs/libsz.lai /tmp/instance-10/output-1/host/mips64-buildroot-linux-gnu/sysroot/usr/lib/libsz.la libtool: warning: remember to run 'libtool --finish /usr/lib' /usr/bin/mkdir -p '/tmp/instance-10/output-1/host/mips64-buildroot-linux-gnu/sysroot/usr/include' /usr/bin/install -c -m 644 ricehdf.h szip_adpt.h szlib.h '/tmp/instance-10/output-1/host/mips64-buildroot-linux-gnu/sysroot/usr/include' make[3]: Leaving directory '/tmp/instance-10/output-1/build/szip-2.1.1/src' make[2]: Leaving directory '/tmp/instance-10/output-1/build/szip-2.1.1/src' Making install in test make[2]: Entering directory '/tmp/instance-10/output-1/build/szip-2.1.1/test' make[3]: Entering directory '/tmp/instance-10/output-1/build/szip-2.1.1/test' make[3]: Nothing to be done for 'install-exec-am'. make[3]: Nothing to be done for 'install-data-am'. make[3]: Leaving directory '/tmp/instance-10/output-1/build/szip-2.1.1/test' make[2]: Leaving directory '/tmp/instance-10/output-1/build/szip-2.1.1/test' make[2]: Entering directory '/tmp/instance-10/output-1/build/szip-2.1.1' make[3]: Entering directory '/tmp/instance-10/output-1/build/szip-2.1.1' make[3]: Nothing to be done for 'install-exec-am'. make[3]: Nothing to be done for 'install-data-am'. make[3]: Leaving directory '/tmp/instance-10/output-1/build/szip-2.1.1' make[2]: Leaving directory '/tmp/instance-10/output-1/build/szip-2.1.1' make[1]: Leaving directory '/tmp/instance-10/output-1/build/szip-2.1.1' >>> szip 2.1.1 Fixing libtool files for la in $(find /tmp/instance-10/output-1/host/mips64-buildroot-linux-gnu/sysroot/usr/lib* -name "*.la"); do \ cp -a "${la}" "${la}.fixed" && \ /usr/bin/sed -i -e "s:/tmp/instance-10/output-1:@BASE_DIR@:g" \ -e "s:/tmp/instance-10/output-1/host/mips64-buildroot-linux-gnu/sysroot:@STAGING_DIR@:g" \ \ -e "s:\(['= ]\)/usr:\\1@STAGING_DIR@/usr:g" \ -e "s:\(['= ]\)/lib:\\1@STAGING_DIR@/lib:g" \ \ -e "s:@STAGING_DIR@:/tmp/instance-10/output-1/host/mips64-buildroot-linux-gnu/sysroot:g" \ -e "s:@BASE_DIR@:/tmp/instance-10/output-1:g" \ "${la}.fixed" && \ if cmp -s "${la}" "${la}.fixed"; then \ rm -f "${la}.fixed"; \ else \ mv "${la}.fixed" "${la}"; \ fi || exit 1; \ done >>> szip 2.1.1 Installing to target PATH="/tmp/instance-10/output-1/host/bin:/tmp/instance-10/output-1/host/sbin:/home/autobuild/make:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" /home/autobuild/make/make -j1 DESTDIR=/tmp/instance-10/output-1/target install -C /tmp/instance-10/output-1/build/szip-2.1.1/ make[1]: Entering directory '/tmp/instance-10/output-1/build/szip-2.1.1' Making install in src make[2]: Entering directory '/tmp/instance-10/output-1/build/szip-2.1.1/src' make[3]: Entering directory '/tmp/instance-10/output-1/build/szip-2.1.1/src' /usr/bin/mkdir -p '/tmp/instance-10/output-1/target/usr/lib' /bin/bash ../libtool --mode=install /usr/bin/install -c libsz.la '/tmp/instance-10/output-1/target/usr/lib' libtool: install: /usr/bin/install -c .libs/libsz.so.2.0.0 /tmp/instance-10/output-1/target/usr/lib/libsz.so.2.0.0 libtool: install: (cd /tmp/instance-10/output-1/target/usr/lib && { ln -s -f libsz.so.2.0.0 libsz.so.2 || { rm -f libsz.so.2 && ln -s libsz.so.2.0.0 libsz.so.2; }; }) libtool: install: (cd /tmp/instance-10/output-1/target/usr/lib && { ln -s -f libsz.so.2.0.0 libsz.so || { rm -f libsz.so && ln -s libsz.so.2.0.0 libsz.so; }; }) libtool: install: /usr/bin/install -c .libs/libsz.lai /tmp/instance-10/output-1/target/usr/lib/libsz.la libtool: warning: remember to run 'libtool --finish /usr/lib' /usr/bin/mkdir -p '/tmp/instance-10/output-1/target/usr/include' /usr/bin/install -c -m 644 ricehdf.h szip_adpt.h szlib.h '/tmp/instance-10/output-1/target/usr/include' make[3]: Leaving directory '/tmp/instance-10/output-1/build/szip-2.1.1/src' make[2]: Leaving directory '/tmp/instance-10/output-1/build/szip-2.1.1/src' Making install in test make[2]: Entering directory '/tmp/instance-10/output-1/build/szip-2.1.1/test' make[3]: Entering directory '/tmp/instance-10/output-1/build/szip-2.1.1/test' make[3]: Nothing to be done for 'install-exec-am'. make[3]: Nothing to be done for 'install-data-am'. make[3]: Leaving directory '/tmp/instance-10/output-1/build/szip-2.1.1/test' make[2]: Leaving directory '/tmp/instance-10/output-1/build/szip-2.1.1/test' make[2]: Entering directory '/tmp/instance-10/output-1/build/szip-2.1.1' make[3]: Entering directory '/tmp/instance-10/output-1/build/szip-2.1.1' make[3]: Nothing to be done for 'install-exec-am'. make[3]: Nothing to be done for 'install-data-am'. make[3]: Leaving directory '/tmp/instance-10/output-1/build/szip-2.1.1' make[2]: Leaving directory '/tmp/instance-10/output-1/build/szip-2.1.1' make[1]: Leaving directory '/tmp/instance-10/output-1/build/szip-2.1.1' tzcode2022f.tar.gz: OK (sha512: 3e2ef91b972f1872e3e8da9eae9d1c4638bfdb32600f164484edd7147be45a116db80443cd5ae61b5c34f8b841e4362f4beefd957633f6cc9b7def543ed6752b) >>> host-zic 2022f Extracting gzip -d -c /tmp/instance-10/dl/zic/tzcode2022f.tar.gz | tar --strip-components=0 -C /tmp/instance-10/output-1/build/host-zic-2022f -xf - >>> host-zic 2022f Patching Applying 0001-remove-dependency-check-on-version-file.patch using patch: patching file Makefile >>> host-zic 2022f Configuring >>> host-zic 2022f Building PATH="/tmp/instance-10/output-1/host/bin:/tmp/instance-10/output-1/host/sbin:/home/autobuild/make:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" PKG_CONFIG="/tmp/instance-10/output-1/host/bin/pkg-config" PKG_CONFIG_SYSROOT_DIR="/" PKG_CONFIG_ALLOW_SYSTEM_CFLAGS=1 PKG_CONFIG_ALLOW_SYSTEM_LIBS=1 PKG_CONFIG_LIBDIR="/tmp/instance-10/output-1/host/lib/pkgconfig:/tmp/instance-10/output-1/host/share/pkgconfig" /home/autobuild/make/make -j1 -C /tmp/instance-10/output-1/build/host-zic-2022f zic make[1]: Entering directory '/tmp/instance-10/output-1/build/host-zic-2022f' VERSION=`cat version` && printf '%s\n' \ 'static char const PKGVERSION[]="(tzcode) ";' \ "static char const TZVERSION[]=\"$VERSION\";" \ 'static char const REPORT_BUGS_TO[]="tz@iana.org";' \ >version.h.out mv version.h.out version.h cc -DTZDIR='"/usr/share/zoneinfo"' -c -o zic.o zic.c cc -DTZDIR='"/usr/share/zoneinfo"' -o zic zic.o make[1]: Leaving directory '/tmp/instance-10/output-1/build/host-zic-2022f' >>> host-zic 2022f Installing to host directory /usr/bin/install -D -m 755 /tmp/instance-10/output-1/build/host-zic-2022f/zic /tmp/instance-10/output-1/host/sbin/zic /usr/bin/install -D -m 644 /tmp/instance-10/output-1/build/host-zic-2022f/tzfile.h /tmp/instance-10/output-1/host/include/tzfile.h >>> host-tzdata 2022f Downloading wget --passive-ftp -nd -t 3 -O '/tmp/instance-10/output-1/build/.tzdata2022f.tar.gz.9SfA5n/output' 'https://www.iana.org/time-zones/repository/releases/tzdata2022f.tar.gz' --2022-11-13 12:59:30-- https://www.iana.org/time-zones/repository/releases/tzdata2022f.tar.gz Resolving www.iana.org (www.iana.org)... 192.0.33.8, 2620:0:2d0:200::b:8 Connecting to www.iana.org (www.iana.org)|192.0.33.8|:443... connected. HTTP request sent, awaiting response... 302 Found Location: https://data.iana.org/time-zones/releases/tzdata2022f.tar.gz [following] --2022-11-13 12:59:31-- https://data.iana.org/time-zones/releases/tzdata2022f.tar.gz Resolving data.iana.org (data.iana.org)... 152.199.24.38, 2606:2800:21f:b505:516b:4186:98cd:116 Connecting to data.iana.org (data.iana.org)|152.199.24.38|:443... connected. HTTP request sent, awaiting response... 200 OK Length: 436352 (426K) [application/x-gzip] Saving to: '/tmp/instance-10/output-1/build/.tzdata2022f.tar.gz.9SfA5n/output' 0K .......... .......... .......... .......... .......... 11% 14.9M 0s 50K .......... .......... .......... .......... .......... 23% 13.2M 0s 100K .......... .......... .......... .......... .......... 35% 157M 0s 150K .......... .......... .......... .......... .......... 46% 20.3M 0s 200K .......... .......... .......... .......... .......... 58% 112M 0s 250K .......... .......... .......... .......... .......... 70% 107M 0s 300K .......... .......... .......... .......... .......... 82% 13.2M 0s 350K .......... .......... .......... .......... .......... 93% 19.5M 0s 400K .......... .......... ...... 100% 228M=0.02s 2022-11-13 12:59:31 (24.7 MB/s) - '/tmp/instance-10/output-1/build/.tzdata2022f.tar.gz.9SfA5n/output' saved [436352/436352] tzdata2022f.tar.gz: OK (sha512: 72d05d05be999075cdf57b896c0f4238b1b862d4d0ed92cc611736592a4ada14d47bd7f0fc8be39e7938a7f5940a903c8af41e87859482bcfab787d889d429f6) >>> host-tzdata 2022f Extracting gzip -d -c /tmp/instance-10/dl/tzdata/tzdata2022f.tar.gz | tar --strip-components=0 -C /tmp/instance-10/output-1/build/host-tzdata-2022f -xf - >>> host-tzdata 2022f Patching >>> host-tzdata 2022f Configuring >>> host-tzdata 2022f Building (cd /tmp/instance-10/output-1/build/host-tzdata-2022f; for zone in africa antarctica asia australasia europe northamerica southamerica etcetera backward factory; do /tmp/instance-10/output-1/host/sbin/zic -b fat -d _output/posix $zone || exit 1; /tmp/instance-10/output-1/host/sbin/zic -b fat -d _output/right -L leapseconds $zone || exit 1; done; ) >>> host-tzdata 2022f Installing to host directory /usr/bin/install -d -m 0755 /tmp/instance-10/output-1/host/share/zoneinfo cp -a /tmp/instance-10/output-1/build/host-tzdata-2022f/_output/* /tmp/instance-10/output-1/build/host-tzdata-2022f/*.tab /tmp/instance-10/output-1/build/host-tzdata-2022f/leap-seconds.list /tmp/instance-10/output-1/host/share/zoneinfo tzdata2022f.tar.gz: OK (sha512: 72d05d05be999075cdf57b896c0f4238b1b862d4d0ed92cc611736592a4ada14d47bd7f0fc8be39e7938a7f5940a903c8af41e87859482bcfab787d889d429f6) >>> tzdata 2022f Extracting gzip -d -c /tmp/instance-10/dl/tzdata/tzdata2022f.tar.gz | tar --strip-components=0 -C /tmp/instance-10/output-1/build/tzdata-2022f -xf - >>> tzdata 2022f Patching >>> tzdata 2022f Configuring >>> tzdata 2022f Building >>> tzdata 2022f Installing to target /usr/bin/install -d -m 0755 /tmp/instance-10/output-1/target/usr/share/zoneinfo cp -a /tmp/instance-10/output-1/host/share/zoneinfo/* /tmp/instance-10/output-1/target/usr/share/zoneinfo cd /tmp/instance-10/output-1/target/usr/share/zoneinfo; for zone in posix/*; do ln -sfn "${zone}" "${zone##*/}"; done if [ ! -f /tmp/instance-10/output-1/target/usr/share/zoneinfo/Etc/UTC ]; then printf "Error: '%s' is not a valid timezone, check your BR2_TARGET_LOCALTIME setting\n" "Etc/UTC"; exit 1; fi ln -sf ../usr/share/zoneinfo/Etc/UTC /tmp/instance-10/output-1/target/etc/localtime echo "Etc/UTC" >/tmp/instance-10/output-1/target/etc/timezone >>> urandom-scripts Extracting >>> urandom-scripts Patching >>> urandom-scripts Configuring >>> urandom-scripts Building >>> urandom-scripts Installing to target /usr/bin/install -D -m 0755 package/urandom-scripts//S20urandom /tmp/instance-10/output-1/target/etc/init.d/S20urandom >>> wilc-firmware wilc_linux_15_7 Downloading wget --passive-ftp -nd -t 3 -O '/tmp/instance-10/output-1/build/.wilc-firmware-wilc_linux_15_7.tar.gz.MKNa96/output' 'https://github.com/linux4wilc/firmware/archive/wilc_linux_15_7/wilc-firmware-wilc_linux_15_7.tar.gz' --2022-11-13 12:59:37-- https://github.com/linux4wilc/firmware/archive/wilc_linux_15_7/wilc-firmware-wilc_linux_15_7.tar.gz Resolving github.com (github.com)... 140.82.114.3 Connecting to github.com (github.com)|140.82.114.3|:443... connected. HTTP request sent, awaiting response... 302 Found Location: https://codeload.github.com/linux4wilc/firmware/tar.gz/refs/tags/wilc_linux_15_7 [following] --2022-11-13 12:59:37-- https://codeload.github.com/linux4wilc/firmware/tar.gz/refs/tags/wilc_linux_15_7 Resolving codeload.github.com (codeload.github.com)... 140.82.112.9 Connecting to codeload.github.com (codeload.github.com)|140.82.112.9|:443... connected. HTTP request sent, awaiting response... 200 OK Length: unspecified [application/x-gzip] Saving to: '/tmp/instance-10/output-1/build/.wilc-firmware-wilc_linux_15_7.tar.gz.MKNa96/output' 0K .......... .......... .......... .......... .......... 489K 50K .......... .......... .......... .......... .......... 928K 100K .......... .......... .......... .......... .......... 977K 150K .......... .......... .......... .......... .......... 73.3M 200K .......... .......... .......... .......... .......... 975K 250K .......... .......... .......... .......... .......... 84.4M 300K .......... .......... ....... 91.7M=0.3s 2022-11-13 12:59:38 (1.23 MB/s) - '/tmp/instance-10/output-1/build/.wilc-firmware-wilc_linux_15_7.tar.gz.MKNa96/output' saved [335437] wilc-firmware-wilc_linux_15_7.tar.gz: OK (sha256: 2c2e2927a65fe4d7ec2f9872fca35c6b7bf12090ac62116d63c5f17b95a3a786) >>> wilc-firmware wilc_linux_15_7 Extracting gzip -d -c /tmp/instance-10/dl/wilc-firmware/wilc-firmware-wilc_linux_15_7.tar.gz | tar --strip-components=1 -C /tmp/instance-10/output-1/build/wilc-firmware-wilc_linux_15_7 -xf - >>> wilc-firmware wilc_linux_15_7 Patching >>> wilc-firmware wilc_linux_15_7 Configuring >>> wilc-firmware wilc_linux_15_7 Building >>> wilc-firmware wilc_linux_15_7 Installing to target /usr/bin/install -d -m 0755 /tmp/instance-10/output-1/target/lib/firmware/mchp/ cd /tmp/instance-10/output-1/build/wilc-firmware-wilc_linux_15_7 && tar cf install.tar wilc1000_wifi_firmware.bin && tar xf install.tar -C /tmp/instance-10/output-1/target/lib/firmware/mchp >>> Finalizing host directory >>> Finalizing target directory mkdir -p /tmp/instance-10/output-1/host/etc/meson sed -e "s%@TARGET_CFLAGS@%'-D_LARGEFILE_SOURCE', '-D_LARGEFILE64_SOURCE', '-D_FILE_OFFSET_BITS=64', '-O3', '-g0', '-D_FORTIFY_SOURCE=1'@PKG_TARGET_CFLAGS@%g" -e "s%@TARGET_LDFLAGS@%@PKG_TARGET_LDFLAGS@%g" -e "s%@TARGET_CXXFLAGS@%'-D_LARGEFILE_SOURCE', '-D_LARGEFILE64_SOURCE', '-D_FILE_OFFSET_BITS=64', '-O3', '-g0', '-D_FORTIFY_SOURCE=1'@PKG_TARGET_CXXFLAGS@%g" -e "s%@TARGET_FCFLAGS@%'-O3', '-g0'@PKG_TARGET_FCFLAGS@%g" -e "s%@TARGET_CC@%/tmp/instance-10/output-1/host/bin/mips64-buildroot-linux-gnu-gcc%g" -e "s%@TARGET_CXX@%/bin/false%g" -e "s%@TARGET_AR@%/tmp/instance-10/output-1/host/bin/mips64-buildroot-linux-gnu-gcc-ar%g" -e "s%@TARGET_FC@%/bin/false%g" -e "s%@TARGET_STRIP@%/bin/true%g" -e "s%@TARGET_ARCH@%mips64%g" -e "s%@TARGET_CPU@%%g" -e "s%@TARGET_ENDIAN@%big%g" -e "s%@TARGET_FCFLAGS@%%g" -e "s%@TARGET_CFLAGS@%%g" -e "s%@TARGET_LDFLAGS@%%g" -e "s%@TARGET_CXXFLAGS@%%g" -e "s%@BR2_CMAKE@%/tmp/instance-10/output-1/host/bin/cmake%g" -e "s%@PKGCONF_HOST_BINARY@%/tmp/instance-10/output-1/host/bin/pkgconf%g" -e "s%@HOST_DIR@%/tmp/instance-10/output-1/host%g" -e "s%@STAGING_DIR@%/tmp/instance-10/output-1/host/mips64-buildroot-linux-gnu/sysroot%g" -e "s%@STATIC@%false%g" /tmp/instance-10/buildroot/support/misc/cross-compilation.conf.in > /tmp/instance-10/output-1/host/etc/meson/cross-compilation.conf.in sed -e "s%@TARGET_CC@%/tmp/instance-10/output-1/host/bin/mips64-buildroot-linux-gnu-gcc%g" -e "s%@TARGET_CXX@%/bin/false%g" -e "s%@TARGET_AR@%/tmp/instance-10/output-1/host/bin/mips64-buildroot-linux-gnu-gcc-ar%g" -e "s%@TARGET_FC@%/bin/false%g" -e "s%@TARGET_STRIP@%/bin/true%g" -e "s%@TARGET_ARCH@%mips64%g" -e "s%@TARGET_CPU@%%g" -e "s%@TARGET_ENDIAN@%big%g" -e "s%@TARGET_FCFLAGS@%'-O3', '-g0'%g" -e "s%@TARGET_CFLAGS@%'-D_LARGEFILE_SOURCE', '-D_LARGEFILE64_SOURCE', '-D_FILE_OFFSET_BITS=64', '-O3', '-g0', '-D_FORTIFY_SOURCE=1'%g" -e "s%@TARGET_LDFLAGS@%%g" -e "s%@TARGET_CXXFLAGS@%'-D_LARGEFILE_SOURCE', '-D_LARGEFILE64_SOURCE', '-D_FILE_OFFSET_BITS=64', '-O3', '-g0', '-D_FORTIFY_SOURCE=1'%g" -e "s%@BR2_CMAKE@%/tmp/instance-10/output-1/host/bin/cmake%g" -e "s%@PKGCONF_HOST_BINARY@%/tmp/instance-10/output-1/host/bin/pkgconf%g" -e "s%@HOST_DIR@%/tmp/instance-10/output-1/host%g" -e "s%@STAGING_DIR@%/tmp/instance-10/output-1/host/mips64-buildroot-linux-gnu/sysroot%g" -e "s%@STATIC@%false%g" /tmp/instance-10/buildroot/support/misc/cross-compilation.conf.in > /tmp/instance-10/output-1/host/etc/meson/cross-compilation.conf /usr/bin/sed -i -e '/# GENERIC_SERIAL$/s~^.*#~console::respawn:/sbin/getty -L console 0 vt100 #~' /tmp/instance-10/output-1/target/etc/inittab /usr/bin/sed -i -e '/^#.*-o remount,rw \/$/s~^#\+~~' /tmp/instance-10/output-1/target/etc/inittab if grep -q CONFIG_ASH=y /tmp/instance-10/output-1/build/busybox-1.35.0/.config; then grep -qsE '^/bin/ash$' /tmp/instance-10/output-1/target/etc/shells || echo "/bin/ash" >> /tmp/instance-10/output-1/target/etc/shells; fi if grep -q CONFIG_HUSH=y /tmp/instance-10/output-1/build/busybox-1.35.0/.config; then grep -qsE '^/bin/hush$' /tmp/instance-10/output-1/target/etc/shells || echo "/bin/hush" >> /tmp/instance-10/output-1/target/etc/shells; fi mkdir -p /tmp/instance-10/output-1/target/etc echo "buildroot" > /tmp/instance-10/output-1/target/etc/hostname /usr/bin/sed -i -e '$a \127.0.1.1\tbuildroot' -e '/^127.0.1.1/d' /tmp/instance-10/output-1/target/etc/hosts mkdir -p /tmp/instance-10/output-1/target/etc echo "Welcome to Buildroot" > /tmp/instance-10/output-1/target/etc/issue /usr/bin/sed -i -e s,^root:[^:]*:,root::, /tmp/instance-10/output-1/target/etc/shadow grep -qsE '^/bin/sh$' /tmp/instance-10/output-1/target/etc/shells || echo "/bin/sh" >> /tmp/instance-10/output-1/target/etc/shells if [ -x /tmp/instance-10/output-1/target/sbin/swapon -a -x /tmp/instance-10/output-1/target/sbin/swapoff ]; then /usr/bin/sed -i -e '/^#.*\/sbin\/swap/s/^#\+[[:blank:]]*//' /tmp/instance-10/output-1/target/etc/inittab; else /usr/bin/sed -i -e '/^[^#].*\/sbin\/swap/s/^/#/' /tmp/instance-10/output-1/target/etc/inittab; fi rm -rf /tmp/instance-10/output-1/target/usr/include /tmp/instance-10/output-1/target/usr/share/aclocal \ /tmp/instance-10/output-1/target/usr/lib/pkgconfig /tmp/instance-10/output-1/target/usr/share/pkgconfig \ /tmp/instance-10/output-1/target/usr/lib/cmake /tmp/instance-10/output-1/target/usr/share/cmake \ /tmp/instance-10/output-1/target/usr/lib/rpm /tmp/instance-10/output-1/target/usr/doc find /tmp/instance-10/output-1/target/usr/{lib,share}/ -name '*.cmake' -print0 | xargs -0 rm -f find /tmp/instance-10/output-1/target/lib/ /tmp/instance-10/output-1/target/usr/lib/ /tmp/instance-10/output-1/target/usr/libexec/ \ \( -name '*.a' -o -name '*.la' -o -name '*.prl' \) -print0 | xargs -0 rm -f rm -rf /tmp/instance-10/output-1/target/usr/share/gdb rm -rf /tmp/instance-10/output-1/target/usr/share/bash-completion rm -rf /tmp/instance-10/output-1/target/etc/bash_completion.d rm -rf /tmp/instance-10/output-1/target/usr/share/zsh rm -rf /tmp/instance-10/output-1/target/usr/man /tmp/instance-10/output-1/target/usr/share/man rm -rf /tmp/instance-10/output-1/target/usr/info /tmp/instance-10/output-1/target/usr/share/info rm -rf /tmp/instance-10/output-1/target/usr/doc /tmp/instance-10/output-1/target/usr/share/doc rm -rf /tmp/instance-10/output-1/target/usr/share/gtk-doc rmdir /tmp/instance-10/output-1/target/usr/share 2>/dev/null || true rm -rf /tmp/instance-10/output-1/target/lib/debug /tmp/instance-10/output-1/target/usr/lib/debug find /tmp/instance-10/output-1/target -type f \( -perm /111 -o -name '*.so*' \) -not \( -name 'libpthread*.so*' -o -name 'ld-*.so*' -o -name '*.ko' \) -print0 | xargs -0 /bin/true 2>/dev/null || true find /tmp/instance-10/output-1/target \( -name 'ld-*.so*' -o -name 'libpthread*.so*' \) -print0 | xargs -0 -r /bin/true 2>/dev/null || true test -f /tmp/instance-10/output-1/target/etc/ld.so.conf && \ { echo "ERROR: we shouldn't have a /etc/ld.so.conf file"; exit 1; } || true test -d /tmp/instance-10/output-1/target/etc/ld.so.conf.d && \ { echo "ERROR: we shouldn't have a /etc/ld.so.conf.d directory"; exit 1; } || true mkdir -p /tmp/instance-10/output-1/target/etc ( \ echo "NAME=Buildroot"; \ echo "VERSION=2022.11-rc1-181-gddcd8af91f"; \ echo "ID=buildroot"; \ echo "VERSION_ID=2022.11-rc1"; \ echo "PRETTY_NAME=\"Buildroot 2022.11-rc1\"" \ ) > /tmp/instance-10/output-1/target/usr/lib/os-release ln -sf ../usr/lib/os-release /tmp/instance-10/output-1/target/etc >>> Sanitizing RPATH in target tree PER_PACKAGE_DIR=/tmp/instance-10/output-1/per-package /tmp/instance-10/buildroot/support/scripts/fix-rpath target touch /tmp/instance-10/output-1/target/usr ln -snf /tmp/instance-10/output-1/host/mips64-buildroot-linux-gnu/sysroot /tmp/instance-10/output-1/staging make: Leaving directory '/tmp/instance-10/buildroot' make: Entering directory '/tmp/instance-10/buildroot' >>> Buildroot 2022.11-rc1-181-gddcd8af91f Collecting legal info COPYING: OK (sha256: 9755181e27175cb3510b4da8629caa406fb355a19aa8e7d55f06bf8ab33323c4) >>> toolchain-buildroot Collecting legal info >>> host-gcc-final 11.3.0 Collecting legal info >>> glibc 2.36-66-ga1dc0be03c9dd850b864bd7a9c03cf8e396eb7ca Collecting legal info COPYING: OK (sha256: 8177f97513213526df2cf6184d8ff986c675afb514d4e68a404010521b880643) COPYING.LIB: OK (sha256: dc626520dcd53a22f727af3ee42c770e56c97a64fe3adb063799d8ab032fe551) LICENSES: OK (sha256: b33d0bd9f685b46853548814893a6135e74430d12f6d94ab3eba42fc591f83bc) >>> host-bison 3.8.2 Collecting legal info COPYING: OK (sha256: 3972dc9744f6499f0f9b2dbf76696f2ae7ad8af9b23dde66d6af86c9dfb36986) >>> host-m4 1.4.19 Collecting legal info COPYING: OK (sha256: 3972dc9744f6499f0f9b2dbf76696f2ae7ad8af9b23dde66d6af86c9dfb36986) >>> host-skeleton Collecting legal info >>> host-gawk 5.2.0 Collecting legal info COPYING: OK (sha256: 8ceb4b9ee5adedde47b31e975c1d90c73ad27b6b165a1dcd80c7c545eb65b903) >>> host-gcc-initial 11.3.0 Collecting legal info >>> host-binutils 2.38 Collecting legal info COPYING3: OK (sha256: 8ceb4b9ee5adedde47b31e975c1d90c73ad27b6b165a1dcd80c7c545eb65b903) COPYING.LIB: OK (sha256: 56bdea73b6145ef6ac5259b3da390b981d840c24cb03b8e1cbc678de7ecfa18d) >>> host-gmp 6.2.1 Collecting legal info COPYING.LESSERv3: OK (sha256: a853c2ffec17057872340eee242ae4d96cbf2b520ae27d903e1b2fef1a5f9d1c) COPYINGv2: OK (sha256: 8177f97513213526df2cf6184d8ff986c675afb514d4e68a404010521b880643) >>> host-mpc 1.2.1 Collecting legal info COPYING.LESSER: OK (sha256: da7eabb7bafdf7d3ae5e9f223aa5bdc1eece45ac569dc21b3b037520b4464768) >>> host-mpfr 4.1.0 Collecting legal info COPYING.LESSER: OK (sha256: e3a994d82e644b03a792a930f574002658412f62407f5fee083f2555c5f23118) >>> linux-headers 6.0.1 Collecting legal info COPYING: OK (sha256: fb5a425bd3b3cd6071a3a9aff9909a859e7c1158d54d32e07658398cd67eb6a0) LICENSES/preferred/GPL-2.0: OK (sha256: f6b78c087c3ebdf0f3c13415070dd480a3f35d8fc76f3d02180a407c1c812f79) LICENSES/exceptions/Linux-syscall-note: OK (sha256: 8e378ab93586eb55135d3bc119cce787f7324f48394777d00c34fa3d0be3303f) >>> skeleton Collecting legal info >>> skeleton-init-sysv Collecting legal info >>> skeleton-init-common Collecting legal info >>> toolchain Collecting legal info >>> angularjs 1.8.2 Collecting legal info angular.js: OK (sha256: 237656fae6e39d02cd71cbcfbf91b7964eba5796aafca1bfcfff3b054ce3fed6) >>> busybox 1.35.0 Collecting legal info LICENSE: OK (sha256: bbfc9843646d483c334664f651c208b9839626891d8f17604db2146962f43548) archival/libarchive/bz/LICENSE: OK (sha256: b5a136ed67798e51fe2e0ca0b2a21cb01b904ff0c9f7d563a6292e276607e58f) >>> kmod 30 Collecting legal info libkmod/COPYING: OK (sha256: 6095e9ffa777dd22839f7801aa845b31c9ed07f3d6bf8a26dc5d2dec8ccc0ef3) COPYING: OK (sha256: 6095e9ffa777dd22839f7801aa845b31c9ed07f3d6bf8a26dc5d2dec8ccc0ef3) >>> host-pkgconf 1.6.3 Collecting legal info COPYING: OK (sha256: 07ee94b50a41ee3fc4e13a9b9c60b26fc28488494c465639f7e5f07a3952ec04) >>> openssl Collecting legal info >>> libopenssl 1.1.1q Collecting legal info LICENSE: OK (sha256: c32913b33252e71190af2066f08115c69bc9fddadf3bf29296e20c835389841c) >>> zlib Collecting legal info >>> libzlib 1.2.13 Collecting legal info LICENSE: OK (sha256: 845efc77857d485d91fb3e0b884aaa929368c717ae8186b66fe1ed2495753243) >>> lsof 4.96.3 Collecting legal info dialects/linux/dproto.h: OK (sha256: 32a728188b19bf86917659d904ab29d0a294b4506e1c98b8b7f1c70ab4975fe1) >>> traceroute 2.1.0 Collecting legal info COPYING: OK (sha256: 8177f97513213526df2cf6184d8ff986c675afb514d4e68a404010521b880643) COPYING.LIB: OK (sha256: dc626520dcd53a22f727af3ee42c770e56c97a64fe3adb063799d8ab032fe551) >>> util-linux 2.38 Collecting legal info README.licensing: OK (sha256: 869660b5269f4f40a8a679da7f403ea3a6e71d46087aab5e14871b09bcb55955) Documentation/licenses/COPYING.BSD-3-Clause: OK (sha256: 9b718a9460fed5952466421235bc79eb49d4e9eacc920d7a9dd6285ab8fd6c6d) Documentation/licenses/COPYING.BSD-4-Clause-UC: OK (sha256: ba7640f00d93e72e92b94b9d71f25ec53bac2f1682f5c4adcccb0018359f60f8) Documentation/licenses/COPYING.GPL-2.0-or-later: OK (sha256: 8177f97513213526df2cf6184d8ff986c675afb514d4e68a404010521b880643) Documentation/licenses/COPYING.ISC: OK (sha256: e53348ce276358e9997014071c5294b36a18c4b34f32f00ee57b9acce0aafd63) Documentation/licenses/COPYING.LGPL-2.1-or-later: OK (sha256: dc626520dcd53a22f727af3ee42c770e56c97a64fe3adb063799d8ab032fe551) >>> dbus 1.12.24 Collecting legal info COPYING: OK (sha256: 0e46f54efb12d04ab5c33713bacd0e140c9a35b57ae29e03c853203266e8f3a1) >>> expat 2.5.0 Collecting legal info COPYING: OK (sha256: 122f2c27000472a201d337b9b31f7eb2b52d091b02857061a8880371612d9534) >>> host-doxygen 1.8.18 Collecting legal info LICENSE: OK (sha256: 8177f97513213526df2cf6184d8ff986c675afb514d4e68a404010521b880643) >>> host-cmake 3.22.3 Collecting legal info Copyright.txt: OK (sha256: f1a4326266aada65b307dac05161a9d02d3dba4fb08b50cb26e3c24cc8a86e97) >>> host-flex 2.6.4 Collecting legal info COPYING: OK (sha256: 97fd685958d93be7f8dab939bb8161dbd6afb0718c63bfc337c24321aea44273) >>> host-autoconf 2.71 Collecting legal info COPYINGv3: OK (sha256: 3972dc9744f6499f0f9b2dbf76696f2ae7ad8af9b23dde66d6af86c9dfb36986) COPYING.EXCEPTION: OK (sha256: 1f1cde9fb68b9b3cff18c420894bec5bd4defacd700b7d13df54a887301e5350) >>> host-libtool 2.4.6 Collecting legal info COPYING: OK (sha256: 8177f97513213526df2cf6184d8ff986c675afb514d4e68a404010521b880643) libltdl/COPYING.LIB: OK (sha256: dc626520dcd53a22f727af3ee42c770e56c97a64fe3adb063799d8ab032fe551) >>> host-automake 1.16.5 Collecting legal info COPYING: OK (sha256: ab15fd526bd8dd18a9e77ebc139656bf4d33e97fc7238cd11bf60e2b9b8666c6) >>> host-gettext Collecting legal info >>> host-gettext-tiny 0.3.2 Collecting legal info LICENSE: OK (sha256: 4c938aa3d8fa3c184bba5e87a8a2febc89560627c9d0567536879e3eca1a7b4f) extra/COPYING: OK (sha256: e79e9c8a0c85d735ff98185918ec94ed7d175efc377012787aebcf3b80f0d90b) >>> forge 1.3.1 Collecting legal info LICENSE: OK (sha256: f63ff0e4e239244aa79280da2dd4811a0469e5e201caf5cbc0d97c3a1dff8e82) >>> initscripts Collecting legal info >>> leptonica 1.82.0 Collecting legal info leptonica-license.txt: OK (sha256: 87829abb5bbb00b55a107365da89e9a33f86c4250169e5a1e5588505be7d5806) >>> libcap 2.65 Collecting legal info License: OK (sha256: f58c80bcce8c929db39a23c32e924876e3311f3ffa54f66076c38056d38fa59b) >>> host-gperf 3.1 Collecting legal info COPYING: OK (sha256: 8ceb4b9ee5adedde47b31e975c1d90c73ad27b6b165a1dcd80c7c545eb65b903) >>> libilbc 829b08c7902ceb87a261279fabb36b6d523c6e07 Collecting legal info gips_iLBClicense.pdf: OK (sha256: b7f4cbb4a12cd11a3d1aeda9bd17c99f59b054de4b3ee53045531cd2fa74dd2a) >>> libldns 1.8.3 Collecting legal info LICENSE: OK (sha256: 9e0b1505c358d1a7c79555ee8bd1acbe2985dbc74dd81f3697cebf2161e922e6) >>> libmdbx 0.11.12 Collecting legal info LICENSE: OK (sha256: 310fe25c858a9515fc8c8d7d1f24a67c9496f84a91e0a0e41ea9975b1371e569) >>> opensc 0.22.0 Collecting legal info COPYING: OK (sha256: 376b54d4c5f4aa99421823fa4da93e3ab73096fce2400e89858632aa7da24a14) >>> pcsc-lite 1.9.9 Collecting legal info COPYING: OK (sha256: 40d4358bb8dc8d30f5365ae6d999b6f820bbc051b292912482f2e4d0ebd837e1) GPL-3.0.txt: OK (sha256: 8ceb4b9ee5adedde47b31e975c1d90c73ad27b6b165a1dcd80c7c545eb65b903) >>> host-patchelf 0.13 Collecting legal info COPYING: OK (sha256: 8ceb4b9ee5adedde47b31e975c1d90c73ad27b6b165a1dcd80c7c545eb65b903) >>> pure-ftpd 1.0.51 Collecting legal info COPYING: OK (sha256: 88c813191c1a59213c641e322cf4562618ab0116ddd7c8341c419f8863b8b0a9) >>> spidev_test 5.8 Collecting legal info >>> szip 2.1.1 Collecting legal info COPYING: OK (sha256: 98cc66747133b26563fefc4630ad4c8c7848c722c7b8a60ecd4afbc4c7d7eb01) >>> tzdata 2022f Collecting legal info LICENSE: OK (sha256: 0613408568889f5739e5ae252b722a2659c02002839ad970a63dc5e9174b27cf) >>> host-tzdata 2022f Collecting legal info LICENSE: OK (sha256: 0613408568889f5739e5ae252b722a2659c02002839ad970a63dc5e9174b27cf) >>> host-zic 2022f Collecting legal info LICENSE: OK (sha256: 0613408568889f5739e5ae252b722a2659c02002839ad970a63dc5e9174b27cf) >>> urandom-scripts Collecting legal info >>> wilc-firmware wilc_linux_15_7 Collecting legal info LICENSE.wilc_fw: OK (sha256: 71355eee947a312594dbdaac039827544f93d23949b65c356b7b0ce09e2600fb) WARNING: the Buildroot source code has not been saved WARNING: gcc-final-11.3.0: cannot save license (HOST_GCC_FINAL_LICENSE_FILES not defined) WARNING: gcc-initial-11.3.0: cannot save license (HOST_GCC_INITIAL_LICENSE_FILES not defined) WARNING: spidev_test-5.8: cannot save license (SPIDEV_TEST_LICENSE_FILES not defined) Legal info produced in /tmp/instance-10/output-1/legal-info make: Leaving directory '/tmp/instance-10/buildroot'