5227 | *(s+0) = (*(s+0) << 8) | (data_word >> 24) & 0xff; | ~~~~~~~~~~~~~~~~~~^~~~~~ rice.c:5228:80: warning: suggest parentheses around arithmetic in operand of '|' [-Wparentheses] 5228 | *(s+1) = (*(s+1) << 8) | (data_word >> 16) & 0xff; | ~~~~~~~~~~~~~~~~~~^~~~~~ rice.c:5232:47: warning: conversion to 'unsigned int' from 'int' may change the sign of the result [-Wsign-conversion] 5232 | data_word |= *input_ptr++ << (16 - data_bits); | ^~ rice.c:5235:80: warning: suggest parentheses around arithmetic in operand of '|' [-Wparentheses] 5235 | *(s+0) = (*(s+0) << 8) | (data_word >> 24) & 0xff; | ~~~~~~~~~~~~~~~~~~^~~~~~ rice.c:5236:80: warning: suggest parentheses around arithmetic in operand of '|' [-Wparentheses] 5236 | *(s+1) = (*(s+1) << 8) | (data_word >> 16) & 0xff; | ~~~~~~~~~~~~~~~~~~^~~~~~ rice.c:5240:47: warning: conversion to 'unsigned int' from 'int' may change the sign of the result [-Wsign-conversion] 5240 | data_word |= *input_ptr++ << (16 - data_bits); | ^~ rice.c:5255:51: warning: conversion to 'unsigned int' from 'int' may change the sign of the result [-Wsign-conversion] 5255 | data_word |= *input_ptr++ << (16 - data_bits); | ^~ rice.c:5265:51: warning: conversion to 'unsigned int' from 'int' may change the sign of the result [-Wsign-conversion] 5265 | data_word |= *input_ptr++ << (16 - data_bits); | ^~ rice.c:5285:51: warning: conversion to 'unsigned int' from 'int' may change the sign of the result [-Wsign-conversion] 5285 | data_word |= *input_ptr++ << (16 - data_bits); | ^~ rice.c:5295:51: warning: conversion to 'unsigned int' from 'int' may change the sign of the result [-Wsign-conversion] 5295 | data_word |= *input_ptr++ << (16 - data_bits); | ^~ rice.c:5307:47: warning: conversion to 'unsigned int' from 'int' may change the sign of the result [-Wsign-conversion] 5307 | data_word |= *input_ptr++ << (16 - data_bits); | ^~ rice.c:5316:51: warning: conversion to 'unsigned int' from 'int' may change the sign of the result [-Wsign-conversion] 5316 | data_word |= *input_ptr++ << (16 - data_bits); | ^~ rice.c:5339:39: warning: conversion to 'unsigned int' from 'int' may change the sign of the result [-Wsign-conversion] 5339 | data_word |= *input_ptr++ << (16 - data_bits); | ^~ rice.c:5349:35: warning: conversion to 'unsigned int' from 'int' may change the sign of the result [-Wsign-conversion] 5349 | data_word |= *input_ptr++ << (16 - data_bits); | ^~ rice.c:5353:28: warning: conversion to 'unsigned int' from 'int' may change the sign of the result [-Wsign-conversion] 5353 | *s++ = zero_count + big_zero_count; | ^~~~~~~~~~ rice.c:5384:43: warning: conversion to 'unsigned int' from 'int' may change the sign of the result [-Wsign-conversion] 5384 | data_word |= *input_ptr++ << (16 - data_bits); | ^~ rice.c:5394:39: warning: conversion to 'unsigned int' from 'int' may change the sign of the result [-Wsign-conversion] 5394 | data_word |= *input_ptr++ << (16 - data_bits); | ^~ rice.c:5398:32: warning: conversion to 'unsigned int' from 'int' may change the sign of the result [-Wsign-conversion] 5398 | *t++ = zero_count + big_zero_count; | ^~~~~~~~~~ rice.c:5404:29: warning: conversion to 'int' from 'unsigned int' may change the sign of the result [-Wsign-conversion] 5404 | m = *t++; | ^ rice.c:5426:39: warning: conversion to 'unsigned int' from 'int' may change the sign of the result [-Wsign-conversion] 5426 | data_word |= *input_ptr++ << (16 - data_bits); | ^~ rice.c:5436:35: warning: conversion to 'unsigned int' from 'int' may change the sign of the result [-Wsign-conversion] 5436 | data_word |= *input_ptr++ << (16 - data_bits); | ^~ rice.c:5464:41: warning: conversion to 'long unsigned int' from 'long int' may change the sign of the result [-Wsign-conversion] 5464 | memset(s, 0, (end-s)*sizeof(int)); | ^ rice.c: In function 'szip_uncompress_memory': rice.c:5518:23: warning: cast discards 'const' qualifier from pointer target type [-Wcast-qual] 5518 | input_byte_data = (unsigned char *) in; | ^ rice.c:5530:44: warning: conversion to 'size_t' {aka 'long unsigned int'} from 'long int' may change the sign of the result [-Wsign-conversion] 5530 | interleave_array = (char *) malloc(out_bytes); | ^~~~~~~~~ rice.c: In function 'szip_check_params': rice.c:5800:5: warning: declaration of 'bits_per_pixel' shadows a global declaration [-Wshadow] 5800 | int bits_per_pixel; | ^~~~~~~~~~~~~~ rice.c:126:12: note: shadowed declaration is here 126 | static int bits_per_pixel; | ^~~~~~~~~~~~~~ rice.c:5801:5: warning: declaration of 'pixels_per_block' shadows a global declaration [-Wshadow] 5801 | int pixels_per_block; | ^~~~~~~~~~~~~~~~ rice.c:131:12: note: shadowed declaration is here 131 | static int pixels_per_block; | ^~~~~~~~~~~~~~~~ rice.c:5802:5: warning: declaration of 'pixels_per_scanline' shadows a global declaration [-Wshadow] 5802 | int pixels_per_scanline; | ^~~~~~~~~~~~~~~~~~~ rice.c:132:12: note: shadowed declaration is here 132 | static int pixels_per_scanline; | ^~~~~~~~~~~~~~~~~~~ rice.c:5812:14: warning: assignment discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers] 5812 | *msg = "bits per pixel must be in range 1..24,32,64"; | ^ rice.c:5818:14: warning: assignment discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers] 5818 | *msg = "maximum pixels per block exceeded"; | ^ rice.c:5824:14: warning: assignment discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers] 5824 | *msg = "pixels per block must be even"; | ^ rice.c:5830:14: warning: assignment discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers] 5830 | *msg = "pixels per block > pixels per scanline"; | ^ rice.c:5836:14: warning: assignment discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers] 5836 | *msg = "maximum pixels per scanline exceeded"; | ^ rice.c:5842:14: warning: assignment discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers] 5842 | *msg = "image pixels less than pixels per scanline"; | ^ rice.c: In function 'rice_decode': rice.c:5358:20: warning: 'ext2_bit' may be used uninitialized in this function [-Wmaybe-uninitialized] 5358 | if (ext2_bit) | ^ /bin/bash ../libtool --tag=CC --mode=link /tmp/instance-20/output-1/host/bin/sparc64-linux-gcc -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -Os -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-20/output-1/host/bin/sparc64-linux-gcc -shared -fPIC -DPIC .libs/rice.o .libs/sz_api.o .libs/encoding.o -lm -Os -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-20/output-1/build/szip-2.1.1/src' make[2]: Leaving directory '/tmp/instance-20/output-1/build/szip-2.1.1/src' Making all in test make[2]: Entering directory '/tmp/instance-20/output-1/build/szip-2.1.1/test' make[2]: Nothing to be done for 'all'. make[2]: Leaving directory '/tmp/instance-20/output-1/build/szip-2.1.1/test' make[2]: Entering directory '/tmp/instance-20/output-1/build/szip-2.1.1' make[2]: Nothing to be done for 'all-am'. make[2]: Leaving directory '/tmp/instance-20/output-1/build/szip-2.1.1' make[1]: Leaving directory '/tmp/instance-20/output-1/build/szip-2.1.1' >>> szip 2.1.1 Installing to staging directory PATH="/tmp/instance-20/output-1/host/bin:/tmp/instance-20/output-1/host/sbin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/snap/bin" /usr/bin/make -j32 DESTDIR=/tmp/instance-20/output-1/host/sparc64-buildroot-linux-gnu/sysroot install -C /tmp/instance-20/output-1/build/szip-2.1.1/ make[1]: Entering directory '/tmp/instance-20/output-1/build/szip-2.1.1' Making install in src make[2]: Entering directory '/tmp/instance-20/output-1/build/szip-2.1.1/src' make[3]: Entering directory '/tmp/instance-20/output-1/build/szip-2.1.1/src' /usr/bin/mkdir -p '/tmp/instance-20/output-1/host/sparc64-buildroot-linux-gnu/sysroot/usr/lib' /usr/bin/mkdir -p '/tmp/instance-20/output-1/host/sparc64-buildroot-linux-gnu/sysroot/usr/include' /bin/bash ../libtool --mode=install /usr/bin/install -c libsz.la '/tmp/instance-20/output-1/host/sparc64-buildroot-linux-gnu/sysroot/usr/lib' /usr/bin/install -c -m 644 ricehdf.h szip_adpt.h szlib.h '/tmp/instance-20/output-1/host/sparc64-buildroot-linux-gnu/sysroot/usr/include' libtool: install: /usr/bin/install -c .libs/libsz.so.2.0.0 /tmp/instance-20/output-1/host/sparc64-buildroot-linux-gnu/sysroot/usr/lib/libsz.so.2.0.0 libtool: install: (cd /tmp/instance-20/output-1/host/sparc64-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-20/output-1/host/sparc64-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-20/output-1/host/sparc64-buildroot-linux-gnu/sysroot/usr/lib/libsz.la libtool: warning: remember to run 'libtool --finish /usr/lib' make[3]: Leaving directory '/tmp/instance-20/output-1/build/szip-2.1.1/src' make[2]: Leaving directory '/tmp/instance-20/output-1/build/szip-2.1.1/src' Making install in test make[2]: Entering directory '/tmp/instance-20/output-1/build/szip-2.1.1/test' make[3]: Entering directory '/tmp/instance-20/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-20/output-1/build/szip-2.1.1/test' make[2]: Leaving directory '/tmp/instance-20/output-1/build/szip-2.1.1/test' make[2]: Entering directory '/tmp/instance-20/output-1/build/szip-2.1.1' make[3]: Entering directory '/tmp/instance-20/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-20/output-1/build/szip-2.1.1' make[2]: Leaving directory '/tmp/instance-20/output-1/build/szip-2.1.1' make[1]: Leaving directory '/tmp/instance-20/output-1/build/szip-2.1.1' >>> szip 2.1.1 Fixing libtool files for la in $(find /tmp/instance-20/output-1/host/sparc64-buildroot-linux-gnu/sysroot/usr/lib* -name "*.la"); do \ cp -a "${la}" "${la}.fixed" && \ /usr/bin/sed -i -e "s:/tmp/instance-20/output-1:@BASE_DIR@:g" \ -e "s:/tmp/instance-20/output-1/host/sparc64-buildroot-linux-gnu/sysroot:@STAGING_DIR@:g" \ -e "s:/tmp/instance-20/output-1/host/opt/ext-toolchain:@TOOLCHAIN_EXTERNAL_INSTALL_DIR@:g" \ -e "s:\(['= ]\)/usr:\\1@STAGING_DIR@/usr:g" \ -e "s:\(['= ]\)/lib:\\1@STAGING_DIR@/lib:g" \ -e "s:@TOOLCHAIN_EXTERNAL_INSTALL_DIR@:/tmp/instance-20/output-1/host/opt/ext-toolchain:g" \ -e "s:@STAGING_DIR@:/tmp/instance-20/output-1/host/sparc64-buildroot-linux-gnu/sysroot:g" \ -e "s:@BASE_DIR@:/tmp/instance-20/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-20/output-1/host/bin:/tmp/instance-20/output-1/host/sbin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/snap/bin" /usr/bin/make -j32 DESTDIR=/tmp/instance-20/output-1/target install -C /tmp/instance-20/output-1/build/szip-2.1.1/ make[1]: Entering directory '/tmp/instance-20/output-1/build/szip-2.1.1' Making install in src make[2]: Entering directory '/tmp/instance-20/output-1/build/szip-2.1.1/src' make[3]: Entering directory '/tmp/instance-20/output-1/build/szip-2.1.1/src' /usr/bin/mkdir -p '/tmp/instance-20/output-1/target/usr/lib' /usr/bin/mkdir -p '/tmp/instance-20/output-1/target/usr/include' /bin/bash ../libtool --mode=install /usr/bin/install -c libsz.la '/tmp/instance-20/output-1/target/usr/lib' /usr/bin/install -c -m 644 ricehdf.h szip_adpt.h szlib.h '/tmp/instance-20/output-1/target/usr/include' libtool: install: /usr/bin/install -c .libs/libsz.so.2.0.0 /tmp/instance-20/output-1/target/usr/lib/libsz.so.2.0.0 libtool: install: (cd /tmp/instance-20/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-20/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-20/output-1/target/usr/lib/libsz.la libtool: warning: remember to run 'libtool --finish /usr/lib' make[3]: Leaving directory '/tmp/instance-20/output-1/build/szip-2.1.1/src' make[2]: Leaving directory '/tmp/instance-20/output-1/build/szip-2.1.1/src' Making install in test make[2]: Entering directory '/tmp/instance-20/output-1/build/szip-2.1.1/test' make[3]: Entering directory '/tmp/instance-20/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-20/output-1/build/szip-2.1.1/test' make[2]: Leaving directory '/tmp/instance-20/output-1/build/szip-2.1.1/test' make[2]: Entering directory '/tmp/instance-20/output-1/build/szip-2.1.1' make[3]: Entering directory '/tmp/instance-20/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-20/output-1/build/szip-2.1.1' make[2]: Leaving directory '/tmp/instance-20/output-1/build/szip-2.1.1' make[1]: Leaving directory '/tmp/instance-20/output-1/build/szip-2.1.1' >>> usb_modeswitch 2.6.1 Downloading wget --passive-ftp -nd -t 3 --no-check-certificate -O '/tmp/instance-20/output-1/build/.usb-modeswitch-2.6.1.tar.bz2.jh4tKL/output' 'http://www.draisberghof.de/usb_modeswitch/usb-modeswitch-2.6.1.tar.bz2' --2021-07-30 16:56:15-- http://www.draisberghof.de/usb_modeswitch/usb-modeswitch-2.6.1.tar.bz2 Resolving www.draisberghof.de (www.draisberghof.de)... 91.218.23.14 Connecting to www.draisberghof.de (www.draisberghof.de)|91.218.23.14|:80... connected. HTTP request sent, awaiting response... 301 Moved Permanently Location: https://www.draisberghof.de/usb_modeswitch/usb-modeswitch-2.6.1.tar.bz2 [following] --2021-07-30 16:56:15-- https://www.draisberghof.de/usb_modeswitch/usb-modeswitch-2.6.1.tar.bz2 Connecting to www.draisberghof.de (www.draisberghof.de)|91.218.23.14|:443... connected. HTTP request sent, awaiting response... 200 OK Length: 45471 (44K) [application/x-bzip2] Saving to: '/tmp/instance-20/output-1/build/.usb-modeswitch-2.6.1.tar.bz2.jh4tKL/output' 0K .......... .......... .......... .......... .... 100% 1.39M=0.03s 2021-07-30 16:56:15 (1.39 MB/s) - '/tmp/instance-20/output-1/build/.usb-modeswitch-2.6.1.tar.bz2.jh4tKL/output' saved [45471/45471] usb-modeswitch-2.6.1.tar.bz2: OK (md5: 69d00d6ed7097b97d972a159d14cfba1) usb-modeswitch-2.6.1.tar.bz2: OK (sha256: 5195d9e136e52f658f19e9f93e4f982b1b67bffac197d0a455cd8c2cd245fa34) >>> usb_modeswitch 2.6.1 Extracting bzcat /tmp/instance-20/dl/usb_modeswitch/usb-modeswitch-2.6.1.tar.bz2 | tar --strip-components=1 -C /tmp/instance-20/output-1/build/usb_modeswitch-2.6.1 -xf - >>> usb_modeswitch 2.6.1 Patching >>> usb_modeswitch 2.6.1 Configuring >>> usb_modeswitch 2.6.1 Building PATH="/tmp/instance-20/output-1/host/bin:/tmp/instance-20/output-1/host/sbin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/snap/bin" /usr/bin/make -j32 PATH="/tmp/instance-20/output-1/host/bin:/tmp/instance-20/output-1/host/sbin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/snap/bin" AR="/tmp/instance-20/output-1/host/bin/sparc64-linux-ar" AS="/tmp/instance-20/output-1/host/bin/sparc64-linux-as" LD="/tmp/instance-20/output-1/host/bin/sparc64-linux-ld" NM="/tmp/instance-20/output-1/host/bin/sparc64-linux-nm" CC="/tmp/instance-20/output-1/host/bin/sparc64-linux-gcc" GCC="/tmp/instance-20/output-1/host/bin/sparc64-linux-gcc" CPP="/tmp/instance-20/output-1/host/bin/sparc64-linux-cpp" CXX="/tmp/instance-20/output-1/host/bin/sparc64-linux-g++" FC="/tmp/instance-20/output-1/host/bin/sparc64-linux-gfortran" F77="/tmp/instance-20/output-1/host/bin/sparc64-linux-gfortran" RANLIB="/tmp/instance-20/output-1/host/bin/sparc64-linux-ranlib" READELF="/tmp/instance-20/output-1/host/bin/sparc64-linux-readelf" STRIP="/tmp/instance-20/output-1/host/bin/sparc64-linux-strip" OBJCOPY="/tmp/instance-20/output-1/host/bin/sparc64-linux-objcopy" OBJDUMP="/tmp/instance-20/output-1/host/bin/sparc64-linux-objdump" AR_FOR_BUILD="/usr/bin/ar" AS_FOR_BUILD="/usr/bin/as" CC_FOR_BUILD="/usr/bin/gcc" GCC_FOR_BUILD="/usr/bin/gcc" CXX_FOR_BUILD="/usr/bin/g++" LD_FOR_BUILD="/usr/bin/ld" CPPFLAGS_FOR_BUILD="-I/tmp/instance-20/output-1/host/include" CFLAGS_FOR_BUILD="-O2 -I/tmp/instance-20/output-1/host/include" CXXFLAGS_FOR_BUILD="-O2 -I/tmp/instance-20/output-1/host/include" LDFLAGS_FOR_BUILD="-L/tmp/instance-20/output-1/host/lib -Wl,-rpath,/tmp/instance-20/output-1/host/lib" FCFLAGS_FOR_BUILD="" DEFAULT_ASSEMBLER="/tmp/instance-20/output-1/host/bin/sparc64-linux-as" DEFAULT_LINKER="/tmp/instance-20/output-1/host/bin/sparc64-linux-ld" CPPFLAGS="-D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64" CFLAGS="-D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -Os -g0 -D_FORTIFY_SOURCE=1" CXXFLAGS="-D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -Os -g0 -D_FORTIFY_SOURCE=1" LDFLAGS="" FCFLAGS=" -Os -g0" FFLAGS=" -Os -g0" PKG_CONFIG="/tmp/instance-20/output-1/host/bin/pkg-config" STAGING_DIR="/tmp/instance-20/output-1/host/sparc64-buildroot-linux-gnu/sysroot" INTLTOOL_PERL=/usr/bin/perl -C /tmp/instance-20/output-1/build/usb_modeswitch-2.6.1 all-with-dynlink-dispatcher make[1]: Entering directory '/tmp/instance-20/output-1/build/usb_modeswitch-2.6.1' /tmp/instance-20/output-1/host/bin/sparc64-linux-gcc -o usb_modeswitch usb_modeswitch.c -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -Os -g0 -D_FORTIFY_SOURCE=1 `pkg-config --libs --cflags libusb-1.0` ./make_string.sh usb_modeswitch_dispatcher.tcl > dispatcher.h usb_modeswitch.c: In function 'main': usb_modeswitch.c:519:3: warning: 'libusb_set_debug' is deprecated: Use libusb_set_option instead [-Wdeprecated-declarations] 519 | libusb_set_debug(ctx, 3); | ^~~~~~~~~~~~~~~~ In file included from usb_modeswitch.h:26, from usb_modeswitch.c:59: /tmp/instance-20/output-1/host/bin/../sparc64-buildroot-linux-gnu/sysroot/usr/include/libusb-1.0/libusb.h:1352:18: note: declared here 1352 | void LIBUSB_CALL libusb_set_debug(libusb_context *ctx, int level); | ^~~~~~~~~~~~~~~~ DISPATCH=dispatcher-dynlink /tmp/instance-20/output-1/host/bin/sparc64-linux-gcc dispatcher.c -Ljim -ljim -Ijim -o usb_modeswitch_dispatcher -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -Os -g0 -D_FORTIFY_SOURCE=1 make[1]: Leaving directory '/tmp/instance-20/output-1/build/usb_modeswitch-2.6.1' >>> usb_modeswitch 2.6.1 Installing to target PATH="/tmp/instance-20/output-1/host/bin:/tmp/instance-20/output-1/host/sbin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/snap/bin" /usr/bin/make -j32 PATH="/tmp/instance-20/output-1/host/bin:/tmp/instance-20/output-1/host/sbin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/snap/bin" AR="/tmp/instance-20/output-1/host/bin/sparc64-linux-ar" AS="/tmp/instance-20/output-1/host/bin/sparc64-linux-as" LD="/tmp/instance-20/output-1/host/bin/sparc64-linux-ld" NM="/tmp/instance-20/output-1/host/bin/sparc64-linux-nm" CC="/tmp/instance-20/output-1/host/bin/sparc64-linux-gcc" GCC="/tmp/instance-20/output-1/host/bin/sparc64-linux-gcc" CPP="/tmp/instance-20/output-1/host/bin/sparc64-linux-cpp" CXX="/tmp/instance-20/output-1/host/bin/sparc64-linux-g++" FC="/tmp/instance-20/output-1/host/bin/sparc64-linux-gfortran" F77="/tmp/instance-20/output-1/host/bin/sparc64-linux-gfortran" RANLIB="/tmp/instance-20/output-1/host/bin/sparc64-linux-ranlib" READELF="/tmp/instance-20/output-1/host/bin/sparc64-linux-readelf" STRIP="/tmp/instance-20/output-1/host/bin/sparc64-linux-strip" OBJCOPY="/tmp/instance-20/output-1/host/bin/sparc64-linux-objcopy" OBJDUMP="/tmp/instance-20/output-1/host/bin/sparc64-linux-objdump" AR_FOR_BUILD="/usr/bin/ar" AS_FOR_BUILD="/usr/bin/as" CC_FOR_BUILD="/usr/bin/gcc" GCC_FOR_BUILD="/usr/bin/gcc" CXX_FOR_BUILD="/usr/bin/g++" LD_FOR_BUILD="/usr/bin/ld" CPPFLAGS_FOR_BUILD="-I/tmp/instance-20/output-1/host/include" CFLAGS_FOR_BUILD="-O2 -I/tmp/instance-20/output-1/host/include" CXXFLAGS_FOR_BUILD="-O2 -I/tmp/instance-20/output-1/host/include" LDFLAGS_FOR_BUILD="-L/tmp/instance-20/output-1/host/lib -Wl,-rpath,/tmp/instance-20/output-1/host/lib" FCFLAGS_FOR_BUILD="" DEFAULT_ASSEMBLER="/tmp/instance-20/output-1/host/bin/sparc64-linux-as" DEFAULT_LINKER="/tmp/instance-20/output-1/host/bin/sparc64-linux-ld" CPPFLAGS="-D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64" CFLAGS="-D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -Os -g0 -D_FORTIFY_SOURCE=1" CXXFLAGS="-D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -Os -g0 -D_FORTIFY_SOURCE=1" LDFLAGS="" FCFLAGS=" -Os -g0" FFLAGS=" -Os -g0" PKG_CONFIG="/tmp/instance-20/output-1/host/bin/pkg-config" STAGING_DIR="/tmp/instance-20/output-1/host/sparc64-buildroot-linux-gnu/sysroot" INTLTOOL_PERL=/usr/bin/perl DESTDIR=/tmp/instance-20/output-1/target -C /tmp/instance-20/output-1/build/usb_modeswitch-2.6.1 install-common make[1]: Entering directory '/tmp/instance-20/output-1/build/usb_modeswitch-2.6.1' install -D --mode=755 usb_modeswitch /tmp/instance-20/output-1/target/usr/sbin/usb_modeswitch install -D --mode=755 usb_modeswitch.sh /tmp/instance-20/output-1/target/lib/udev/usb_modeswitch install -D --mode=644 usb_modeswitch.conf /tmp/instance-20/output-1/target/etc/usb_modeswitch.conf install -D --mode=644 usb_modeswitch.1 /tmp/instance-20/output-1/target/usr/share/man/man1/usb_modeswitch.1 install -D --mode=644 usb_modeswitch_dispatcher.1 /tmp/instance-20/output-1/target/usr/share/man/man1/usb_modeswitch_dispatcher.1 install -D --mode=755 usb_modeswitch_dispatcher /tmp/instance-20/output-1/target/usr/sbin/usb_modeswitch_dispatcher install -d /tmp/instance-20/output-1/target/var/lib/usb_modeswitch test -d /tmp/instance-20/output-1/target/etc/init -a -e /sbin/initctl && install --mode=644 usb-modeswitch-upstart.conf /tmp/instance-20/output-1/target/etc/init || test 1 test -d /tmp/instance-20/output-1/target/etc/systemd/system -a \( -e /usr/bin/systemctl -o -e /bin/systemctl \) && install --mode=644 usb_modeswitch@.service /tmp/instance-20/output-1/target/etc/systemd/system || test 1 make[1]: Leaving directory '/tmp/instance-20/output-1/build/usb_modeswitch-2.6.1' >>> usb_modeswitch_data 20191128 Downloading wget --passive-ftp -nd -t 3 --no-check-certificate -O '/tmp/instance-20/output-1/build/.usb-modeswitch-data-20191128.tar.bz2.O0swxa/output' 'http://www.draisberghof.de/usb_modeswitch/usb-modeswitch-data-20191128.tar.bz2' --2021-07-30 16:56:17-- http://www.draisberghof.de/usb_modeswitch/usb-modeswitch-data-20191128.tar.bz2 Resolving www.draisberghof.de (www.draisberghof.de)... 91.218.23.14 Connecting to www.draisberghof.de (www.draisberghof.de)|91.218.23.14|:80... connected. HTTP request sent, awaiting response... 301 Moved Permanently Location: https://www.draisberghof.de/usb_modeswitch/usb-modeswitch-data-20191128.tar.bz2 [following] --2021-07-30 16:56:17-- https://www.draisberghof.de/usb_modeswitch/usb-modeswitch-data-20191128.tar.bz2 Connecting to www.draisberghof.de (www.draisberghof.de)|91.218.23.14|:443... connected. HTTP request sent, awaiting response... 200 OK Length: 34069 (33K) [application/x-bzip2] Saving to: '/tmp/instance-20/output-1/build/.usb-modeswitch-data-20191128.tar.bz2.O0swxa/output' 0K .......... .......... .......... ... 100% 2.04M=0.02s 2021-07-30 16:56:18 (2.04 MB/s) - '/tmp/instance-20/output-1/build/.usb-modeswitch-data-20191128.tar.bz2.O0swxa/output' saved [34069/34069] usb-modeswitch-data-20191128.tar.bz2: OK (md5: e8fce7eb949cbe16c61fb71bade4cc17) usb-modeswitch-data-20191128.tar.bz2: OK (sha256: 3f039b60791c21c7cb15c7986cac89650f076dc274798fa242231b910785eaf9) >>> usb_modeswitch_data 20191128 Extracting bzcat /tmp/instance-20/dl/usb_modeswitch_data/usb-modeswitch-data-20191128.tar.bz2 | tar --strip-components=1 -C /tmp/instance-20/output-1/build/usb_modeswitch_data-20191128 -xf - >>> usb_modeswitch_data 20191128 Patching >>> usb_modeswitch_data 20191128 Configuring >>> usb_modeswitch_data 20191128 Building >>> usb_modeswitch_data 20191128 Installing to target PATH="/tmp/instance-20/output-1/host/bin:/tmp/instance-20/output-1/host/sbin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/snap/bin" /usr/bin/make -j32 -C /tmp/instance-20/output-1/build/usb_modeswitch_data-20191128 DESTDIR=/tmp/instance-20/output-1/target install make[1]: Entering directory '/tmp/instance-20/output-1/build/usb_modeswitch_data-20191128' install -d /tmp/instance-20/output-1/target/usr/share/usb_modeswitch install -d /tmp/instance-20/output-1/target/etc/usb_modeswitch.d install -D --mode=644 40-usb_modeswitch.rules /tmp/instance-20/output-1/target/lib/udev/rules.d/40-usb_modeswitch.rules install --mode=644 -t /tmp/instance-20/output-1/target/usr/share/usb_modeswitch ./usb_modeswitch.d/* make[1]: Leaving directory '/tmp/instance-20/output-1/build/usb_modeswitch_data-20191128' >>> Finalizing host directory >>> Finalizing target directory mkdir -p /tmp/instance-20/output-1/host/etc/meson sed -e 's%@TARGET_CROSS@%/tmp/instance-20/output-1/host/bin/sparc64-linux-%g' -e 's%@TARGET_ARCH@%sparc64%g' -e 's%@TARGET_CPU@%ultrasparc%g' -e 's%@TARGET_ENDIAN@%big%g' -e "s%@TARGET_CFLAGS@%'-D_LARGEFILE_SOURCE', '-D_LARGEFILE64_SOURCE', '-D_FILE_OFFSET_BITS=64', '-Os', '-g0', '-D_FORTIFY_SOURCE=1'@PKG_TARGET_CFLAGS@%g" -e "s%@TARGET_LDFLAGS@%@PKG_TARGET_CFLAGS@%g" -e "s%@TARGET_CXXFLAGS@%'-D_LARGEFILE_SOURCE', '-D_LARGEFILE64_SOURCE', '-D_FILE_OFFSET_BITS=64', '-Os', '-g0', '-D_FORTIFY_SOURCE=1'@PKG_TARGET_CFLAGS@%g" -e 's%@HOST_DIR@%/tmp/instance-20/output-1/host%g' -e 's%@STAGING_DIR@%/tmp/instance-20/output-1/host/sparc64-buildroot-linux-gnu/sysroot%g' -e 's%@STATIC@%false%g' package/meson//cross-compilation.conf.in > /tmp/instance-20/output-1/host/etc/meson/cross-compilation.conf.in sed -e 's%@PKG_TARGET_CFLAGS@%%g' -e 's%@PKG_TARGET_LDFLAGS@%%g' -e 's%@PKG_TARGET_CXXFLAGS@%%g' /tmp/instance-20/output-1/host/etc/meson/cross-compilation.conf.in > /tmp/instance-20/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-20/output-1/target/etc/inittab /usr/bin/sed -i -e '/^#.*-o remount,rw \/$/s~^#\+~~' /tmp/instance-20/output-1/target/etc/inittab if grep -q CONFIG_ASH=y /tmp/instance-20/output-1/build/busybox-1.33.1/.config; then grep -qsE '^/bin/ash$' /tmp/instance-20/output-1/target/etc/shells || echo "/bin/ash" >> /tmp/instance-20/output-1/target/etc/shells; fi if grep -q CONFIG_HUSH=y /tmp/instance-20/output-1/build/busybox-1.33.1/.config; then grep -qsE '^/bin/hush$' /tmp/instance-20/output-1/target/etc/shells || echo "/bin/hush" >> /tmp/instance-20/output-1/target/etc/shells; fi rm -f /tmp/instance-20/output-1/target/usr/share/glib-2.0/schemas/*.xml /tmp/instance-20/output-1/target/usr/share/glib-2.0/schemas/*.dtd /tmp/instance-20/output-1/host/bin/glib-compile-schemas /tmp/instance-20/output-1/host/sparc64-buildroot-linux-gnu/sysroot/usr/share/glib-2.0/schemas --targetdir=/tmp/instance-20/output-1/target/usr/share/glib-2.0/schemas No schema files found: doing nothing. mkdir -p /tmp/instance-20/output-1/target/etc echo "buildroot" > /tmp/instance-20/output-1/target/etc/hostname /usr/bin/sed -i -e '$a \127.0.1.1\tbuildroot' -e '/^127.0.1.1/d' /tmp/instance-20/output-1/target/etc/hosts mkdir -p /tmp/instance-20/output-1/target/etc echo "Welcome to Buildroot" > /tmp/instance-20/output-1/target/etc/issue /usr/bin/sed -i -e s,^root:[^:]*:,root::, /tmp/instance-20/output-1/target/etc/shadow rm -f /tmp/instance-20/output-1/target/bin/sh if [ -x /tmp/instance-20/output-1/target/sbin/swapon -a -x /tmp/instance-20/output-1/target/sbin/swapoff ]; then /usr/bin/sed -i -e '/^#.*\/sbin\/swap/s/^#\+[[:blank:]]*//' /tmp/instance-20/output-1/target/etc/inittab; else /usr/bin/sed -i -e '/^[^#].*\/sbin\/swap/s/^/#/' /tmp/instance-20/output-1/target/etc/inittab; fi printf '%s\n' C en_US locale-archive > /tmp/instance-20/output-1/build/locales.nopurge for dir in /tmp/instance-20/output-1/target/usr/share/locale /tmp/instance-20/output-1/target/usr/share/X11/locale /tmp/instance-20/output-1/target/usr/lib/locale; do if [ ! -d $dir ]; then continue; fi; for langdir in $dir/*; do if [ -e "${langdir}" ]; then grep -qx "${langdir##*/}" /tmp/instance-20/output-1/build/locales.nopurge || rm -rf $langdir; fi done; done if [ -d /tmp/instance-20/output-1/target/usr/share/X11/locale ]; then for lang in C en_US; do if [ -f /tmp/instance-20/output-1/target/usr/share/X11/locale/$lang/XLC_LOCALE ]; then echo "$lang/XLC_LOCALE: $lang"; fi done > /tmp/instance-20/output-1/target/usr/share/X11/locale/locale.dir; fi rm -rf /tmp/instance-20/output-1/target/usr/include /tmp/instance-20/output-1/target/usr/share/aclocal \ /tmp/instance-20/output-1/target/usr/lib/pkgconfig /tmp/instance-20/output-1/target/usr/share/pkgconfig \ /tmp/instance-20/output-1/target/usr/lib/cmake /tmp/instance-20/output-1/target/usr/share/cmake \ /tmp/instance-20/output-1/target/usr/doc find /tmp/instance-20/output-1/target/usr/{lib,share}/ -name '*.cmake' -print0 | xargs -0 rm -f find /tmp/instance-20/output-1/target/lib/ /tmp/instance-20/output-1/target/usr/lib/ /tmp/instance-20/output-1/target/usr/libexec/ \ \( -name '*.a' -o -name '*.la' -o -name '*.prl' \) -print0 | xargs -0 rm -f rm -rf /tmp/instance-20/output-1/target/usr/share/gdb rm -rf /tmp/instance-20/output-1/target/usr/share/bash-completion rm -rf /tmp/instance-20/output-1/target/etc/bash_completion.d rm -rf /tmp/instance-20/output-1/target/usr/share/zsh rm -rf /tmp/instance-20/output-1/target/usr/man /tmp/instance-20/output-1/target/usr/share/man rm -rf /tmp/instance-20/output-1/target/usr/info /tmp/instance-20/output-1/target/usr/share/info rm -rf /tmp/instance-20/output-1/target/usr/doc /tmp/instance-20/output-1/target/usr/share/doc rm -rf /tmp/instance-20/output-1/target/usr/share/gtk-doc rmdir /tmp/instance-20/output-1/target/usr/share 2>/dev/null || true rm -rf /tmp/instance-20/output-1/target/lib/debug /tmp/instance-20/output-1/target/usr/lib/debug find /tmp/instance-20/output-1/target -type f \( -perm /111 -o -name '*.so*' \) -not \( -name 'libpthread*.so*' -o -name 'ld-*.so*' -o -name '*.ko' \) -print0 | xargs -0 /tmp/instance-20/output-1/host/bin/sparc64-linux-strip --remove-section=.comment --remove-section=.note 2>/dev/null || true find /tmp/instance-20/output-1/target \( -name 'ld-*.so*' -o -name 'libpthread*.so*' \) -print0 | xargs -0 -r /tmp/instance-20/output-1/host/bin/sparc64-linux-strip --remove-section=.comment --remove-section=.note --strip-debug 2>/dev/null || true test -f /tmp/instance-20/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-20/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-20/output-1/target/etc ( \ echo "NAME=Buildroot"; \ echo "VERSION=2021.05-904-gf0d37e275a"; \ echo "ID=buildroot"; \ echo "VERSION_ID=2021.08-git"; \ echo "PRETTY_NAME=\"Buildroot 2021.08-git\"" \ ) > /tmp/instance-20/output-1/target/usr/lib/os-release ln -sf ../usr/lib/os-release /tmp/instance-20/output-1/target/etc >>> Sanitizing RPATH in target tree PER_PACKAGE_DIR=/tmp/instance-20/output-1/per-package /tmp/instance-20/buildroot/support/scripts/fix-rpath target touch /tmp/instance-20/output-1/target/usr ln -snf /tmp/instance-20/output-1/host/sparc64-buildroot-linux-gnu/sysroot /tmp/instance-20/output-1/staging make: Leaving directory '/tmp/instance-20/buildroot' make: Entering directory '/tmp/instance-20/buildroot' >>> Buildroot 2021.05-904-gf0d37e275a Collecting legal info COPYING: OK (sha256: 9755181e27175cb3510b4da8629caa406fb355a19aa8e7d55f06bf8ab33323c4) >>> toolchain-external Collecting legal info >>> host-skeleton Collecting legal info >>> skeleton Collecting legal info >>> skeleton-init-sysv Collecting legal info >>> skeleton-init-common Collecting legal info >>> toolchain-external-bootlin 2020.08-1 Collecting legal info >>> toolchain Collecting legal info >>> alsa-lib 1.2.5.1 Collecting legal info COPYING: OK (sha256: 32434afcc8666ba060e111d715bfdb6c2d5dd8a35fa4d3ab8ad67d8f850d2f2b) aserver/COPYING: OK (sha256: bfe16cf823bcff261fc6a062c07ee96660e3c39678f42f39a788a68dbc234ced) >>> host-autoconf 2.69 Collecting legal info COPYINGv3: OK (sha256: 8ceb4b9ee5adedde47b31e975c1d90c73ad27b6b165a1dcd80c7c545eb65b903) COPYING.EXCEPTION: OK (sha256: 23ed0b84fa023bfa33433b498192cd08a3bfb1f4864a8ed791a84f3eb48b2dd2) >>> host-libtool 2.4.6 Collecting legal info COPYING: OK (sha256: 8177f97513213526df2cf6184d8ff986c675afb514d4e68a404010521b880643) libltdl/COPYING.LIB: OK (sha256: dc626520dcd53a22f727af3ee42c770e56c97a64fe3adb063799d8ab032fe551) >>> host-m4 1.4.18 Collecting legal info COPYING: OK (sha256: 8ceb4b9ee5adedde47b31e975c1d90c73ad27b6b165a1dcd80c7c545eb65b903) >>> host-automake 1.15.1 Collecting legal info COPYING: OK (sha256: ab15fd526bd8dd18a9e77ebc139656bf4d33e97fc7238cd11bf60e2b9b8666c6) >>> berkeleydb 5.3.28 Collecting legal info LICENSE: OK (sha256: b78815181a53241f9347c6b47d1031fd669946f863e1edc807a291354cec024b) >>> busybox 1.33.1 Collecting legal info LICENSE: OK (sha256: bbfc9843646d483c334664f651c208b9839626891d8f17604db2146962f43548) archival/libarchive/bz/LICENSE: OK (sha256: b5a136ed67798e51fe2e0ca0b2a21cb01b904ff0c9f7d563a6292e276607e58f) >>> exim 4.94.2 Collecting legal info LICENCE: OK (sha256: 49240db527b7e55b312a46fc59794fde5dd006422e422257f4f057bfd27b3c8f) >>> host-berkeleydb 5.3.28 Collecting legal info LICENSE: OK (sha256: b78815181a53241f9347c6b47d1031fd669946f863e1edc807a291354cec024b) >>> host-pcre 8.44 Collecting legal info LICENCE: OK (sha256: 0dd9c13864dbb9ee4d77a1557e96be29b2d719fb6584192ee36611aae264c4a3) >>> host-pkgconf 1.6.3 Collecting legal info COPYING: OK (sha256: 07ee94b50a41ee3fc4e13a9b9c60b26fc28488494c465639f7e5f07a3952ec04) >>> pcre 8.44 Collecting legal info LICENCE: OK (sha256: 0dd9c13864dbb9ee4d77a1557e96be29b2d719fb6584192ee36611aae264c4a3) >>> freetype 2.10.4 Collecting legal info docs/LICENSE.TXT: OK (sha256: fd056de4196903a676208ef58cfddafc7d583d1f28fa2e44c309cf84a59e62fb) docs/FTL.TXT: OK (sha256: 08c135755dd589039470f1fdbb400daaabaaa50d0b366d19cebff4d22986baa1) docs/GPLv2.TXT: OK (sha256: c4120c6752c910c299e3bd9cb3a46ff262c268303ca2069b61f92f10a5656c18) >>> zlib Collecting legal info >>> libzlib 1.2.11 Collecting legal info README: OK (sha256: 7960b6b1cc63e619abb77acaea5427159605afee8c8b362664f4effc7d7f7d15) >>> gensio 2.2.4 Collecting legal info COPYING.LIB: OK (sha256: dcac7d447dd81ab96d28dce00a07a6486e623f7ded94e2a2a8e83312405cdf89) COPYING: OK (sha256: 501f3108e6c03e5a0a5585ebaaa369171aead5319cd0a7a4dc1f66211c1f09f1) >>> imlib2 1.7.1 Collecting legal info COPYING: OK (sha256: fb70339dd33a77b6213c7ae067fccf93d04af44ff3f937c61f8863f7970e73f6) COPYING-PLAIN: OK (sha256: 8c9a2e92ed4937e2d30c2ea95439c36ed3002fc47e34efee43455a460fee8ef5) >>> initscripts Collecting legal info >>> jimtcl 0.80 Collecting legal info LICENSE: OK (sha256: 419f1146334e57fb258d6c957d1f94d43455ec0d24b1b54c4447e5f61a353950) >>> jpeg Collecting legal info >>> libjpeg 9d Collecting legal info README: OK (sha256: 3dc4e4a145c907a96bd6a0e40be3f722fecf061951909143cdff5365cba9c78c) >>> libffi 3.4.2 Collecting legal info LICENSE: OK (sha256: a61d06e8f7be57928e71e800eb9273b05cb8868c484108afe41e4305bb320dde) >>> libfm-extra 1.3.2 Collecting legal info COPYING: OK (sha256: d8c320ffc0030d1b096ae4732b50d2b811cf95e9a9b7377c1127b2563e0a0388) src/extra/fm-xml-file.c: OK (sha256: c3a3d93e111462f2b0292b56a6a7b87d342fd7156741d8b81b8b08723be4597e) >>> host-intltool 0.51.0 Collecting legal info COPYING: OK (sha256: 32b1062f7da84967e7019d01ab805935caa7ab7321a7ced0e30ebe75e5df1670) >>> host-gettext Collecting legal info >>> host-gettext-tiny 0.3.2 Collecting legal info LICENSE: OK (sha256: 4c938aa3d8fa3c184bba5e87a8a2febc89560627c9d0567536879e3eca1a7b4f) extra/COPYING: OK (sha256: e79e9c8a0c85d735ff98185918ec94ed7d175efc377012787aebcf3b80f0d90b) >>> host-libxml-parser-perl 2.46 Collecting legal info README: OK (sha256: 6a2e768443ed00f09d3d4bc4dd14451035eac13c6864d68d8e2f76edf5a044f2) >>> host-expat 2.4.1 Collecting legal info COPYING: OK (sha256: 8c6b5b6de8fae20b317f4992729abc0e520bfba4c7606cd1e9eeb87418eebdec) >>> libglib2 2.68.2 Collecting legal info COPYING: OK (sha256: dc626520dcd53a22f727af3ee42c770e56c97a64fe3adb063799d8ab032fe551) >>> host-libglib2 2.68.2 Collecting legal info COPYING: OK (sha256: dc626520dcd53a22f727af3ee42c770e56c97a64fe3adb063799d8ab032fe551) >>> host-libffi 3.4.2 Collecting legal info LICENSE: OK (sha256: a61d06e8f7be57928e71e800eb9273b05cb8868c484108afe41e4305bb320dde) >>> host-meson 0.58.2 Collecting legal info COPYING: OK (sha256: cfc7749b96f63bd31c3c42b5c471bf756814053e847c10f3eb003417bc523d30) >>> host-ninja 1.10.2 Collecting legal info COPYING: OK (sha256: eb7e9ab9690124c5c9f42bdc81383d886a3dede26345b6ed15bbad7caf81f7ea) >>> host-cmake 3.16.9 Collecting legal info Copyright.txt: OK (sha256: dc628fb936a5d229296d42083f9a8218aa32204c016919e784404c9ec58776e9) >>> host-python3 3.9.6 Collecting legal info LICENSE: OK (sha256: 599826df92bfdcd2702eac691072498bb096c55af04ee984cf90f70ed77b5a70) >>> host-autoconf-archive 2019.01.06 Collecting legal info COPYING: OK (sha256: e6037104443f9a7829b2aa7c5370d0789a7bda3ca65a0b904cdc0c2e285d9195) COPYING.EXCEPTION: OK (sha256: 23ed0b84fa023bfa33433b498192cd08a3bfb1f4864a8ed791a84f3eb48b2dd2) >>> host-zlib Collecting legal info >>> host-libzlib 1.2.11 Collecting legal info README: OK (sha256: 7960b6b1cc63e619abb77acaea5427159605afee8c8b362664f4effc7d7f7d15) >>> host-python3-setuptools 44.0.0 Collecting legal info LICENSE: OK (sha256: c32a3ac395af6321efd28be73d06a00f0db6ab887d1c21d4fec46128d2056d5a) >>> host-util-linux 2.36.2 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) >>> libsigrok 0.5.2 Collecting legal info COPYING: OK (sha256: 8ceb4b9ee5adedde47b31e975c1d90c73ad27b6b165a1dcd80c7c545eb65b903) >>> libusb 1.0.24 Collecting legal info COPYING: OK (sha256: 5df07007198989c622f5d41de8d703e7bef3d0e79d62e24332ee739a452af62a) >>> libzip 1.7.3 Collecting legal info LICENSE: OK (sha256: deae392de70503672793ee784d603bfa8069dcd5974a325dfbf91160f3a147d6) >>> libyaml 0.2.5 Collecting legal info License: OK (sha256: c40112449f254b9753045925248313e9270efa36d226b22d82d4cc6c43c57f29) >>> mc 4.8.26 Collecting legal info COPYING: OK (sha256: 5576bbec76296e1c8e081f7037ebd01bdada388635f58d844a2f20d37bbe4284) >>> ncurses 6.1 Collecting legal info COPYING: OK (sha256: 4d1fde61868c73776a539366dccf5d5a4857e7fd7299efb1f02e07c2afe9ea87) >>> host-ncurses 6.1 Collecting legal info COPYING: OK (sha256: 4d1fde61868c73776a539366dccf5d5a4857e7fd7299efb1f02e07c2afe9ea87) >>> mjpg-streamer 5a6e0a2db163e6ae9461552b59079870d0959340 Collecting legal info mjpg-streamer-experimental/LICENSE: OK (sha256: ab15fd526bd8dd18a9e77ebc139656bf4d33e97fc7238cd11bf60e2b9b8666c6) >>> mutt 2.1.1 Collecting legal info GPL: OK (sha256: 732f24b69a6c71cd8e01e4672bb8e12cc1cbb88a50a4665e6ca4fd95000a57ee) >>> nanocom 1.0 Collecting legal info COPYING: OK (sha256: e6d6a009505e345fe949e1310334fcb0747f28dae2856759de102ab66b722cb4) >>> nvidia-modprobe 450.57 Collecting legal info COPYING: OK (sha256: 8177f97513213526df2cf6184d8ff986c675afb514d4e68a404010521b880643) >>> host-patchelf 0.9 Collecting legal info COPYING: OK (sha256: 8ceb4b9ee5adedde47b31e975c1d90c73ad27b6b165a1dcd80c7c545eb65b903) >>> pkcs11-helper 1.26 Collecting legal info COPYING: OK (sha256: 808705ac1daafe07a76431929575c5712a8693977a39ec9102aed25f030754d9) COPYING.BSD: OK (sha256: 865496cf23a6c792739ff2f9ea11e95ac99db89cfe3780a295b4e1495a9c19fe) COPYING.GPL: OK (sha256: cd2e7d63a11058f19c58b06fb8c759140ce70788369dce6e6e9db40d3475021e) >>> ptpd 1.1.0 Collecting legal info COPYRIGHT: OK (sha256: be69f30947abef91e0bce161005fe56b116b770e459e3e6980279349de47c366) >>> sane-backends 1.0.32 Collecting legal info COPYING: OK (sha256: 8177f97513213526df2cf6184d8ff986c675afb514d4e68a404010521b880643) >>> ser2net 4.3.3 Collecting legal info COPYING: OK (sha256: 501f3108e6c03e5a0a5585ebaaa369171aead5319cd0a7a4dc1f66211c1f09f1) >>> sigrok-cli 0.7.1 Collecting legal info COPYING: OK (sha256: 8ceb4b9ee5adedde47b31e975c1d90c73ad27b6b165a1dcd80c7c545eb65b903) >>> szip 2.1.1 Collecting legal info COPYING: OK (sha256: 98cc66747133b26563fefc4630ad4c8c7848c722c7b8a60ecd4afbc4c7d7eb01) >>> usb_modeswitch 2.6.1 Collecting legal info COPYING: OK (sha256: 6195429209313925c0eba6c0da4ee7a6cb4277b99e35c886913f80f91ec20b94) >>> usb_modeswitch_data 20191128 Collecting legal info COPYING: OK (sha256: 32b1062f7da84967e7019d01ab805935caa7ab7321a7ced0e30ebe75e5df1670) WARNING: the Buildroot source code has not been saved WARNING: toolchain-external-bootlin-2020.08-1: cannot save license (TOOLCHAIN_EXTERNAL_BOOTLIN_LICENSE_FILES not defined) Legal info produced in /tmp/instance-20/output-1/legal-info make: Leaving directory '/tmp/instance-20/buildroot'