| ~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ tuning/runtime.cpp:87:57: warning: '%s' directive output may be truncated writing up to 4095 bytes into a region of size 4083 [-Wformat-truncation=] 87 | snprintf(toggle_bad, sizeof(toggle_bad), "echo 'on' > '%s';", runtime_path); | ^~ tuning/runtime.cpp:87:10: note: 'snprintf' output between 16 and 4111 bytes into a destination of size 4096 87 | snprintf(toggle_bad, sizeof(toggle_bad), "echo 'on' > '%s';", runtime_path); | ~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ tuning/runtime.cpp: In function 'void add_runtime_tunables(const char*)': tuning/runtime.cpp:166:65: warning: '%s' directive output may be truncated writing up to 4095 bytes into a region of size between 3822 and 4077 [-Wformat-truncation=] 166 | snprintf(filename, sizeof(filename), "/sys/bus/%s/devices/%s/%s/power/control", bus, entry->d_name, port); | ^~ ~~~~ tuning/runtime.cpp:166:12: note: 'snprintf' output 34 or more bytes (assuming 4384) into a destination of size 4096 166 | snprintf(filename, sizeof(filename), "/sys/bus/%s/devices/%s/%s/power/control", bus, entry->d_name, port); | ~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ tuning/runtime.cpp:171:65: warning: '%s' directive output may be truncated writing up to 4095 bytes into a region of size between 3822 and 4077 [-Wformat-truncation=] 171 | snprintf(filename, sizeof(filename), "/sys/bus/%s/devices/%s/%s", bus, entry->d_name, port); | ^~ ~~~~ tuning/runtime.cpp:171:12: note: 'snprintf' output 20 or more bytes (assuming 4370) into a destination of size 4096 171 | snprintf(filename, sizeof(filename), "/sys/bus/%s/devices/%s/%s", bus, entry->d_name, port); | ~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ tuning/runtime.cpp:192:53: warning: '%s' directive output may be truncated writing up to 4095 bytes into a region of size 4085 [-Wformat-truncation=] 192 | snprintf(filename, sizeof(filename), "/sys/block/%s/device", port); | ^~ ~~~~ tuning/runtime.cpp:192:12: note: 'snprintf' output between 19 and 4114 bytes into a destination of size 4096 192 | snprintf(filename, sizeof(filename), "/sys/block/%s/device", port); | ~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ In file included from tuning/tunable.h:30, from tuning/wifi.cpp:27: tuning/wifi.cpp: In constructor 'wifi_tunable::wifi_tunable(const char*)': tuning/wifi.cpp:48:18: warning: '%s' directive writing up to 4095 bytes into a region of size 4060 [-Wformat-overflow=] 48 | sprintf(desc, _("Wireless Power Saving for interface %s"), iface); tuning/../lib.h:41:23: note: in definition of macro '_' 41 | #define _(STRING) (STRING) | ^~~~~~ tuning/wifi.cpp:48:9: note: 'sprintf' output between 37 and 4132 bytes into a destination of size 4096 48 | sprintf(desc, _("Wireless Power Saving for interface %s"), iface); | ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ tuning/wifi.cpp:50:53: warning: '%s' directive output may be truncated writing up to 4095 bytes into a region of size 4089 [-Wformat-truncation=] 50 | snprintf(toggle_good, sizeof(toggle_good), "iw dev %s set power_save on", iface); | ^~ tuning/wifi.cpp:50:10: note: 'snprintf' output between 26 and 4121 bytes into a destination of size 4096 50 | snprintf(toggle_good, sizeof(toggle_good), "iw dev %s set power_save on", iface); | ~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ tuning/wifi.cpp:51:51: warning: '%s' directive output may be truncated writing up to 4095 bytes into a region of size 4089 [-Wformat-truncation=] 51 | snprintf(toggle_bad, sizeof(toggle_bad), "iw dev %s set power_save off", iface); | ^~ tuning/wifi.cpp:51:10: note: 'snprintf' output between 27 and 4122 bytes into a destination of size 4096 51 | snprintf(toggle_bad, sizeof(toggle_bad), "iw dev %s set power_save off", iface); | ~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ tuning/tuningi2c.cpp: In constructor 'i2c_tunable::i2c_tunable(const char*, const char*, bool)': tuning/tuningi2c.cpp:61:61: warning: '%s' directive output may be truncated writing up to 4095 bytes into a region of size 4081 [-Wformat-truncation=] 61 | snprintf(toggle_good, sizeof(toggle_good), "echo 'auto' > '%s';", i2c_path); | ^~ tuning/tuningi2c.cpp:61:10: note: 'snprintf' output between 18 and 4113 bytes into a destination of size 4096 61 | snprintf(toggle_good, sizeof(toggle_good), "echo 'auto' > '%s';", i2c_path); | ~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ tuning/tuningi2c.cpp:62:57: warning: '%s' directive output may be truncated writing up to 4095 bytes into a region of size 4083 [-Wformat-truncation=] 62 | snprintf(toggle_bad, sizeof(toggle_bad), "echo 'on' > '%s';", i2c_path); | ^~ tuning/tuningi2c.cpp:62:10: note: 'snprintf' output between 16 and 4111 bytes into a destination of size 4096 62 | snprintf(toggle_bad, sizeof(toggle_bad), "echo 'on' > '%s';", i2c_path); | ~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ tuning/tuningsysfs.cpp: In constructor 'sysfs_tunable::sysfs_tunable(const char*, const char*, const char*)': tuning/tuningsysfs.cpp:50:52: warning: '%s' directive output may be truncated writing up to 4095 bytes into a region of size 4090 [-Wformat-truncation=] 50 | snprintf(toggle_good, sizeof(toggle_good), "echo '%s' > '%s';", target_value, sysfs_path); | ^~ tuning/tuningsysfs.cpp:50:10: note: 'snprintf' output between 14 and 8204 bytes into a destination of size 4096 50 | snprintf(toggle_good, sizeof(toggle_good), "echo '%s' > '%s';", target_value, sysfs_path); | ~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ tuning/tuningsysfs.cpp:51:50: warning: '%s' directive output may be truncated writing up to 4095 bytes into a region of size 4090 [-Wformat-truncation=] 51 | snprintf(toggle_bad, sizeof(toggle_bad), "echo '%s' > '%s';", bad_value, sysfs_path); | ^~ tuning/tuningsysfs.cpp:51:10: note: 'snprintf' output between 14 and 8204 bytes into a destination of size 4096 51 | snprintf(toggle_bad, sizeof(toggle_bad), "echo '%s' > '%s';", bad_value, sysfs_path); | ~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ In file included from tuning/tunable.h:30, from tuning/tuningsysfs.cpp:27: In function 'void pt_strcpy(char (&)[N], const char*) [with unsigned int N = 4096]', inlined from 'sysfs_tunable::sysfs_tunable(const char*, const char*, const char*)' at tuning/tuningsysfs.cpp:47:11: tuning/../lib.h:78:9: warning: 'char* strncpy(char*, const char*, size_t)' specified bound 4096 equals destination size [-Wstringop-truncation] 78 | strncpy(d, s, N); | ~~~~~~~^~~~~~~~~ In function 'void pt_strcpy(char (&)[N], const char*) [with unsigned int N = 4096]', inlined from 'sysfs_tunable::sysfs_tunable(const char*, const char*, const char*)' at tuning/tuningsysfs.cpp:48:11: tuning/../lib.h:78:9: warning: 'char* strncpy(char*, const char*, size_t)' specified bound 4096 equals destination size [-Wstringop-truncation] 78 | strncpy(d, s, N); | ~~~~~~~^~~~~~~~~ wakeup/wakeup_usb.cpp: In constructor 'usb_wakeup::usb_wakeup(const char*, const char*)': wakeup/wakeup_usb.cpp:53:68: warning: '%s' directive output may be truncated writing up to 4095 bytes into a region of size 4078 [-Wformat-truncation=] 53 | snprintf(toggle_enable, sizeof(toggle_enable), "echo 'enabled' > '%s';", usb_path); | ^~ wakeup/wakeup_usb.cpp:53:10: note: 'snprintf' output between 21 and 4116 bytes into a destination of size 4096 53 | snprintf(toggle_enable, sizeof(toggle_enable), "echo 'enabled' > '%s';", usb_path); | ~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ wakeup/wakeup_usb.cpp:54:71: warning: '%s' directive output may be truncated writing up to 4095 bytes into a region of size 4077 [-Wformat-truncation=] 54 | snprintf(toggle_disable, sizeof(toggle_disable), "echo 'disabled' > '%s';", usb_path); | ^~ wakeup/wakeup_usb.cpp:54:10: note: 'snprintf' output between 22 and 4117 bytes into a destination of size 4096 54 | snprintf(toggle_disable, sizeof(toggle_disable), "echo 'disabled' > '%s';", usb_path); | ~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ In file included from tuning/tunable.h:30, from tuning/tuningusb.cpp:27: tuning/tuningusb.cpp: In constructor 'usb_tunable::usb_tunable(const char*, const char*)': tuning/tuningusb.cpp:71:34: warning: '%s' directive output may be truncated writing up to 2047 bytes into a region of size between 2020 and 4067 [-Wformat-truncation=] 71 | snprintf(desc, sizeof(desc), _("Autosuspend for USB device %s [%s]"), product, vendor); | ~ tuning/../lib.h:41:23: note: in definition of macro '_' 41 | #define _(STRING) (STRING) | ^~~~~~ tuning/tuningusb.cpp:71:11: note: 'snprintf' output between 31 and 4125 bytes into a destination of size 4096 71 | snprintf(desc, sizeof(desc), _("Autosuspend for USB device %s [%s]"), product, vendor); | ~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ tuning/tuningusb.cpp:77:61: warning: '%s' directive output may be truncated writing up to 4095 bytes into a region of size 4081 [-Wformat-truncation=] 77 | snprintf(toggle_good, sizeof(toggle_good), "echo 'auto' > '%s';", usb_path); | ^~ tuning/tuningusb.cpp:77:10: note: 'snprintf' output between 18 and 4113 bytes into a destination of size 4096 77 | snprintf(toggle_good, sizeof(toggle_good), "echo 'auto' > '%s';", usb_path); | ~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ tuning/tuningusb.cpp:78:57: warning: '%s' directive output may be truncated writing up to 4095 bytes into a region of size 4083 [-Wformat-truncation=] 78 | snprintf(toggle_bad, sizeof(toggle_bad), "echo 'on' > '%s';", usb_path); | ^~ tuning/tuningusb.cpp:78:10: note: 'snprintf' output between 16 and 4111 bytes into a destination of size 4096 78 | snprintf(toggle_bad, sizeof(toggle_bad), "echo 'on' > '%s';", usb_path); | ~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ wakeup/wakeup_ethernet.cpp: In constructor 'ethernet_wakeup::ethernet_wakeup(const char*, const char*)': wakeup/wakeup_ethernet.cpp:53:68: warning: '%s' directive output may be truncated writing up to 4095 bytes into a region of size 4078 [-Wformat-truncation=] 53 | snprintf(toggle_enable, sizeof(toggle_enable), "echo 'enabled' > '%s';", eth_path); | ^~ wakeup/wakeup_ethernet.cpp:53:10: note: 'snprintf' output between 21 and 4116 bytes into a destination of size 4096 53 | snprintf(toggle_enable, sizeof(toggle_enable), "echo 'enabled' > '%s';", eth_path); | ~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ wakeup/wakeup_ethernet.cpp:54:71: warning: '%s' directive output may be truncated writing up to 4095 bytes into a region of size 4077 [-Wformat-truncation=] 54 | snprintf(toggle_disable, sizeof(toggle_disable), "echo 'disabled' > '%s';", eth_path); | ^~ wakeup/wakeup_ethernet.cpp:54:10: note: 'snprintf' output between 22 and 4117 bytes into a destination of size 4096 54 | snprintf(toggle_disable, sizeof(toggle_disable), "echo 'disabled' > '%s';", eth_path); | ~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ CXXLD powertop make[4]: Leaving directory '/tmp/instance-1/output-1/build/powertop-2.13/src' make[3]: Leaving directory '/tmp/instance-1/output-1/build/powertop-2.13/src' Making all in po make[3]: Entering directory '/tmp/instance-1/output-1/build/powertop-2.13/po' make[3]: Nothing to be done for 'all'. make[3]: Leaving directory '/tmp/instance-1/output-1/build/powertop-2.13/po' Making all in doc make[3]: Entering directory '/tmp/instance-1/output-1/build/powertop-2.13/doc' make[3]: Nothing to be done for 'all'. make[3]: Leaving directory '/tmp/instance-1/output-1/build/powertop-2.13/doc' Making all in scripts/bash-completion make[3]: Entering directory '/tmp/instance-1/output-1/build/powertop-2.13/scripts/bash-completion' make[3]: Nothing to be done for 'all'. make[3]: Leaving directory '/tmp/instance-1/output-1/build/powertop-2.13/scripts/bash-completion' make[3]: Entering directory '/tmp/instance-1/output-1/build/powertop-2.13' make[3]: Leaving directory '/tmp/instance-1/output-1/build/powertop-2.13' make[2]: Leaving directory '/tmp/instance-1/output-1/build/powertop-2.13' make[1]: Leaving directory '/tmp/instance-1/output-1/build/powertop-2.13' >>> powertop 2.13 Installing to target PATH="/tmp/instance-1/output-1/host/bin:/tmp/instance-1/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-1/output-1/target install -C /tmp/instance-1/output-1/build/powertop-2.13/ make[1]: Entering directory '/tmp/instance-1/output-1/build/powertop-2.13' Making install in traceevent make[2]: Entering directory '/tmp/instance-1/output-1/build/powertop-2.13/traceevent' make[3]: Entering directory '/tmp/instance-1/output-1/build/powertop-2.13/traceevent' 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-1/output-1/build/powertop-2.13/traceevent' make[2]: Leaving directory '/tmp/instance-1/output-1/build/powertop-2.13/traceevent' Making install in src make[2]: Entering directory '/tmp/instance-1/output-1/build/powertop-2.13/src' /usr/bin/make install-am make[3]: Entering directory '/tmp/instance-1/output-1/build/powertop-2.13/src' make[4]: Entering directory '/tmp/instance-1/output-1/build/powertop-2.13/src' make[4]: Nothing to be done for 'install-data-am'. /bin/mkdir -p '/tmp/instance-1/output-1/target/usr/sbin' /bin/bash ../libtool --mode=install /usr/bin/install -c powertop '/tmp/instance-1/output-1/target/usr/sbin' libtool: install: /usr/bin/install -c powertop /tmp/instance-1/output-1/target/usr/sbin/powertop make[4]: Leaving directory '/tmp/instance-1/output-1/build/powertop-2.13/src' make[3]: Leaving directory '/tmp/instance-1/output-1/build/powertop-2.13/src' make[2]: Leaving directory '/tmp/instance-1/output-1/build/powertop-2.13/src' Making install in po make[2]: Entering directory '/tmp/instance-1/output-1/build/powertop-2.13/po' if test "powertop" = "gettext-tools"; then \ /bin/mkdir -p /tmp/instance-1/output-1/target/usr/share/gettext/po; \ for file in Makefile.in.in remove-potcdate.sin quot.sed boldquot.sed en@quot.header en@boldquot.header insert-header.sin Rules-quot Makevars.template; do \ /usr/bin/install -c -m 644 ./$file \ /tmp/instance-1/output-1/target/usr/share/gettext/po/$file; \ done; \ for file in Makevars; do \ rm -f /tmp/instance-1/output-1/target/usr/share/gettext/po/$file; \ done; \ else \ : ; \ fi make[2]: Leaving directory '/tmp/instance-1/output-1/build/powertop-2.13/po' Making install in doc make[2]: Entering directory '/tmp/instance-1/output-1/build/powertop-2.13/doc' make[3]: Entering directory '/tmp/instance-1/output-1/build/powertop-2.13/doc' make[3]: Nothing to be done for 'install-exec-am'. /bin/mkdir -p '/tmp/instance-1/output-1/target/usr/share/man/man8' /usr/bin/install -c -m 644 powertop.8 '/tmp/instance-1/output-1/target/usr/share/man/man8' make[3]: Leaving directory '/tmp/instance-1/output-1/build/powertop-2.13/doc' make[2]: Leaving directory '/tmp/instance-1/output-1/build/powertop-2.13/doc' Making install in scripts/bash-completion make[2]: Entering directory '/tmp/instance-1/output-1/build/powertop-2.13/scripts/bash-completion' make[3]: Entering directory '/tmp/instance-1/output-1/build/powertop-2.13/scripts/bash-completion' make[3]: Nothing to be done for 'install-exec-am'. /bin/mkdir -p '/tmp/instance-1/output-1/target/usr/share/bash-completion/completions' /usr/bin/install -c -m 644 powertop '/tmp/instance-1/output-1/target/usr/share/bash-completion/completions' make[3]: Leaving directory '/tmp/instance-1/output-1/build/powertop-2.13/scripts/bash-completion' make[2]: Leaving directory '/tmp/instance-1/output-1/build/powertop-2.13/scripts/bash-completion' make[2]: Entering directory '/tmp/instance-1/output-1/build/powertop-2.13' make[3]: Entering directory '/tmp/instance-1/output-1/build/powertop-2.13' 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-1/output-1/build/powertop-2.13' make[2]: Leaving directory '/tmp/instance-1/output-1/build/powertop-2.13' make[1]: Leaving directory '/tmp/instance-1/output-1/build/powertop-2.13' spi-tools-0.8.6.tar.gz: OK (sha256: 319ad6ab296111109ea4a820e216cef392429295de7e10e76f7146677337cf09) >>> spi-tools 0.8.6 Extracting gzip -d -c /tmp/instance-1/dl/spi-tools/spi-tools-0.8.6.tar.gz | tar --strip-components=1 -C /tmp/instance-1/output-1/build/spi-tools-0.8.6 -xf - >>> spi-tools 0.8.6 Patching >>> spi-tools 0.8.6 Updating config.sub and config.guess for file in config.guess config.sub; do for i in $(find /tmp/instance-1/output-1/build/spi-tools-0.8.6 -name $file); do cp support/gnuconfig/$file $i; done; done >>> spi-tools 0.8.6 Configuring >>> spi-tools 0.8.6 Autoreconfiguring configure.ac:13: installing './compile' configure.ac:7: installing './install-sh' configure.ac:7: installing './missing' src/Makefile.am: installing './depcomp' >>> spi-tools 0.8.6 Patching libtool (cd /tmp/instance-1/output-1/build/spi-tools-0.8.6/ && rm -rf config.cache && PATH="/tmp/instance-1/output-1/host/bin:/tmp/instance-1/output-1/host/sbin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/snap/bin" AR="/tmp/instance-1/output-1/host/bin/sparc-linux-ar" AS="/tmp/instance-1/output-1/host/bin/sparc-linux-as" LD="/tmp/instance-1/output-1/host/bin/sparc-linux-ld" NM="/tmp/instance-1/output-1/host/bin/sparc-linux-nm" CC="/tmp/instance-1/output-1/host/bin/sparc-linux-gcc" GCC="/tmp/instance-1/output-1/host/bin/sparc-linux-gcc" CPP="/tmp/instance-1/output-1/host/bin/sparc-linux-cpp" CXX="/tmp/instance-1/output-1/host/bin/sparc-linux-g++" FC="/tmp/instance-1/output-1/host/bin/sparc-linux-gfortran" F77="/tmp/instance-1/output-1/host/bin/sparc-linux-gfortran" RANLIB="/tmp/instance-1/output-1/host/bin/sparc-linux-ranlib" READELF="/tmp/instance-1/output-1/host/bin/sparc-linux-readelf" STRIP="/tmp/instance-1/output-1/host/bin/sparc-linux-strip" OBJCOPY="/tmp/instance-1/output-1/host/bin/sparc-linux-objcopy" OBJDUMP="/tmp/instance-1/output-1/host/bin/sparc-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-1/output-1/host/include" CFLAGS_FOR_BUILD="-O2 -I/tmp/instance-1/output-1/host/include" CXXFLAGS_FOR_BUILD="-O2 -I/tmp/instance-1/output-1/host/include" LDFLAGS_FOR_BUILD="-L/tmp/instance-1/output-1/host/lib -Wl,-rpath,/tmp/instance-1/output-1/host/lib" FCFLAGS_FOR_BUILD="" DEFAULT_ASSEMBLER="/tmp/instance-1/output-1/host/bin/sparc-linux-as" DEFAULT_LINKER="/tmp/instance-1/output-1/host/bin/sparc-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 -O2 -g0 " CXXFLAGS="-D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -O2 -g0 " LDFLAGS="" FCFLAGS=" -O2 -g0" FFLAGS=" -O2 -g0" PKG_CONFIG="/tmp/instance-1/output-1/host/bin/pkg-config" STAGING_DIR="/tmp/instance-1/output-1/host/sparc-buildroot-linux-uclibc/sysroot" INTLTOOL_PERL=/usr/bin/perl ac_cv_lbl_unaligned_fail=yes ac_cv_func_mmap_fixed_mapped=yes ac_cv_func_memcmp_working=yes ac_cv_have_decl_malloc=yes gl_cv_func_malloc_0_nonnull=yes ac_cv_func_malloc_0_nonnull=yes ac_cv_func_calloc_0_nonnull=yes ac_cv_func_realloc_0_nonnull=yes lt_cv_sys_lib_search_path_spec="" ac_cv_c_bigendian=yes CONFIG_SITE=/dev/null ./configure --target=sparc-buildroot-linux-uclibc --host=sparc-buildroot-linux-uclibc --build=x86_64-pc-linux-gnu --prefix=/usr --exec-prefix=/usr --sysconfdir=/etc --localstatedir=/var --program-prefix="" --disable-gtk-doc --disable-gtk-doc-html --disable-doc --disable-docs --disable-documentation --with-xmlto=no --with-fop=no --disable-dependency-tracking --enable-ipv6 --disable-nls --disable-static --enable-shared ) configure: WARNING: unrecognized options: --disable-gtk-doc, --disable-gtk-doc-html, --disable-doc, --disable-docs, --disable-documentation, --with-xmlto, --with-fop, --enable-ipv6, --disable-nls, --disable-static, --enable-shared checking for a BSD-compatible install... /usr/bin/install -c checking whether build environment is sane... yes checking for sparc-buildroot-linux-uclibc-strip... /tmp/instance-1/output-1/host/bin/sparc-linux-strip checking for a thread-safe mkdir -p... /bin/mkdir -p checking for gawk... gawk checking whether make sets $(MAKE)... yes checking whether make supports nested variables... yes checking whether to enable maintainer-specific portions of Makefiles... no checking whether make sets $(MAKE)... (cached) yes checking for sparc-buildroot-linux-uclibc-gcc... /tmp/instance-1/output-1/host/bin/sparc-linux-gcc checking whether the C compiler works... yes checking for C compiler default output file name... a.out checking for suffix of executables... checking whether we are cross compiling... yes checking for suffix of object files... o checking whether we are using the GNU C compiler... yes checking whether /tmp/instance-1/output-1/host/bin/sparc-linux-gcc accepts -g... yes checking for /tmp/instance-1/output-1/host/bin/sparc-linux-gcc option to accept ISO C89... none needed checking whether /tmp/instance-1/output-1/host/bin/sparc-linux-gcc understands -c and -o together... yes checking for style of include used by make... GNU checking dependency style of /tmp/instance-1/output-1/host/bin/sparc-linux-gcc... none checking for /tmp/instance-1/output-1/host/bin/sparc-linux-gcc option to accept ISO C99... none needed checking for an ANSI C-conforming const... yes checking how to run the C preprocessor... /tmp/instance-1/output-1/host/bin/sparc-linux-cpp checking for grep that handles long lines and -e... /bin/grep checking for egrep... /bin/grep -E checking for ANSI C header files... yes checking for sys/types.h... yes checking for sys/stat.h... yes checking for stdlib.h... yes checking for string.h... yes checking for memory.h... yes checking for strings.h... yes checking for inttypes.h... yes checking for stdint.h... yes checking for unistd.h... yes checking for size_t... yes checking whether struct tm is in sys/time.h or time.h... time.h checking for doxygen... no configure: WARNING: Doxygen not found - continuing without Doxygen support checking fcntl.h usability... yes checking fcntl.h presence... yes checking for fcntl.h... yes checking limits.h usability... yes checking limits.h presence... yes checking for limits.h... yes checking stddef.h usability... yes checking stddef.h presence... yes checking for stddef.h... yes checking for stdint.h... (cached) yes checking for stdlib.h... (cached) yes checking for string.h... (cached) yes checking sys/time.h usability... yes checking sys/time.h presence... yes checking for sys/time.h... yes checking for unistd.h... (cached) yes checking for stdbool.h that conforms to C99... yes checking for _Bool... yes checking for inline... inline checking for size_t... (cached) yes checking for ssize_t... yes checking for uint16_t... yes checking for uint32_t... yes checking for uint64_t... yes checking for uint8_t... yes checking for strftime... yes checking for working strtod... no checking for pow... yes checking for error_at_line... yes checking for memmove... yes checking for memset... yes checking whether to build with debug information... no configure: Debug Mode off. checking for help2man... echo No help2man checking that generated files are newer than configure... done configure: creating ./config.status config.status: creating Makefile config.status: creating src/Makefile config.status: creating man/Makefile config.status: creating src/config.h config.status: executing depfiles commands configure: WARNING: unrecognized options: --disable-gtk-doc, --disable-gtk-doc-html, --disable-doc, --disable-docs, --disable-documentation, --with-xmlto, --with-fop, --enable-ipv6, --disable-nls, --disable-static, --enable-shared >>> spi-tools 0.8.6 Building PATH="/tmp/instance-1/output-1/host/bin:/tmp/instance-1/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-1/output-1/build/spi-tools-0.8.6/ make[1]: Entering directory '/tmp/instance-1/output-1/build/spi-tools-0.8.6' Making all in src make[2]: Entering directory '/tmp/instance-1/output-1/build/spi-tools-0.8.6/src' /usr/bin/make all-am make[3]: Entering directory '/tmp/instance-1/output-1/build/spi-tools-0.8.6/src' /tmp/instance-1/output-1/host/bin/sparc-linux-gcc -DHAVE_CONFIG_H -I. -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -O0 -c -o spi-config.o spi-config.c /tmp/instance-1/output-1/host/bin/sparc-linux-gcc -DHAVE_CONFIG_H -I. -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -O0 -c -o spi-pipe.o spi-pipe.c /tmp/instance-1/output-1/host/bin/sparc-linux-gcc -O0 -o spi-config spi-config.o /tmp/instance-1/output-1/host/bin/sparc-linux-gcc -O0 -o spi-pipe spi-pipe.o make[3]: Leaving directory '/tmp/instance-1/output-1/build/spi-tools-0.8.6/src' make[2]: Leaving directory '/tmp/instance-1/output-1/build/spi-tools-0.8.6/src' Making all in man make[2]: Entering directory '/tmp/instance-1/output-1/build/spi-tools-0.8.6/man' make[2]: Nothing to be done for 'all'. make[2]: Leaving directory '/tmp/instance-1/output-1/build/spi-tools-0.8.6/man' make[2]: Entering directory '/tmp/instance-1/output-1/build/spi-tools-0.8.6' make[2]: Nothing to be done for 'all-am'. make[2]: Leaving directory '/tmp/instance-1/output-1/build/spi-tools-0.8.6' make[1]: Leaving directory '/tmp/instance-1/output-1/build/spi-tools-0.8.6' >>> spi-tools 0.8.6 Installing to target PATH="/tmp/instance-1/output-1/host/bin:/tmp/instance-1/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-1/output-1/target install -C /tmp/instance-1/output-1/build/spi-tools-0.8.6/ make[1]: Entering directory '/tmp/instance-1/output-1/build/spi-tools-0.8.6' Making install in src make[2]: Entering directory '/tmp/instance-1/output-1/build/spi-tools-0.8.6/src' make[3]: Entering directory '/tmp/instance-1/output-1/build/spi-tools-0.8.6/src' make[3]: Nothing to be done for 'install-data-am'. /bin/mkdir -p '/tmp/instance-1/output-1/target/usr/bin' /usr/bin/install -c spi-config spi-pipe '/tmp/instance-1/output-1/target/usr/bin' make[3]: Leaving directory '/tmp/instance-1/output-1/build/spi-tools-0.8.6/src' make[2]: Leaving directory '/tmp/instance-1/output-1/build/spi-tools-0.8.6/src' Making install in man make[2]: Entering directory '/tmp/instance-1/output-1/build/spi-tools-0.8.6/man' make[3]: Entering directory '/tmp/instance-1/output-1/build/spi-tools-0.8.6/man' make[3]: Nothing to be done for 'install-exec-am'. /bin/mkdir -p '/tmp/instance-1/output-1/target/usr/share/man/man1' /usr/bin/install -c -m 644 spi-config.1 spi-pipe.1 '/tmp/instance-1/output-1/target/usr/share/man/man1' make[3]: Leaving directory '/tmp/instance-1/output-1/build/spi-tools-0.8.6/man' make[2]: Leaving directory '/tmp/instance-1/output-1/build/spi-tools-0.8.6/man' make[2]: Entering directory '/tmp/instance-1/output-1/build/spi-tools-0.8.6' make[3]: Entering directory '/tmp/instance-1/output-1/build/spi-tools-0.8.6' 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-1/output-1/build/spi-tools-0.8.6' make[2]: Leaving directory '/tmp/instance-1/output-1/build/spi-tools-0.8.6' make[1]: Leaving directory '/tmp/instance-1/output-1/build/spi-tools-0.8.6' >>> Finalizing host directory >>> Finalizing target directory mkdir -p /tmp/instance-1/output-1/host/etc/meson sed -e 's%@TARGET_CROSS@%/tmp/instance-1/output-1/host/bin/sparc-linux-%g' -e 's%@TARGET_ARCH@%sparc%g' -e 's%@TARGET_CPU@%v8%g' -e 's%@TARGET_ENDIAN@%big%g' -e "s%@TARGET_CFLAGS@%'-D_LARGEFILE_SOURCE', '-D_LARGEFILE64_SOURCE', '-D_FILE_OFFSET_BITS=64', '-O2', '-g0'@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', '-O2', '-g0'@PKG_TARGET_CFLAGS@%g" -e 's%@HOST_DIR@%/tmp/instance-1/output-1/host%g' -e 's%@STAGING_DIR@%/tmp/instance-1/output-1/host/sparc-buildroot-linux-uclibc/sysroot%g' -e 's%@STATIC@%false%g' package/meson//cross-compilation.conf.in > /tmp/instance-1/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-1/output-1/host/etc/meson/cross-compilation.conf.in > /tmp/instance-1/output-1/host/etc/meson/cross-compilation.conf /bin/sed -i -e '/# GENERIC_SERIAL$/s~^.*#~console::respawn:/sbin/getty -L console 0 vt100 #~' /tmp/instance-1/output-1/target/etc/inittab /bin/sed -i -e '/^#.*-o remount,rw \/$/s~^#\+~~' /tmp/instance-1/output-1/target/etc/inittab if grep -q CONFIG_ASH=y /tmp/instance-1/output-1/build/busybox-1.33.1/.config; then grep -qsE '^/bin/ash$' /tmp/instance-1/output-1/target/etc/shells || echo "/bin/ash" >> /tmp/instance-1/output-1/target/etc/shells; fi if grep -q CONFIG_HUSH=y /tmp/instance-1/output-1/build/busybox-1.33.1/.config; then grep -qsE '^/bin/hush$' /tmp/instance-1/output-1/target/etc/shells || echo "/bin/hush" >> /tmp/instance-1/output-1/target/etc/shells; fi mkdir -p /tmp/instance-1/output-1/target/etc echo "buildroot" > /tmp/instance-1/output-1/target/etc/hostname /bin/sed -i -e '$a \127.0.1.1\tbuildroot' -e '/^127.0.1.1/d' /tmp/instance-1/output-1/target/etc/hosts mkdir -p /tmp/instance-1/output-1/target/etc echo "Welcome to Buildroot" > /tmp/instance-1/output-1/target/etc/issue /bin/sed -i -e s,^root:[^:]*:,root::, /tmp/instance-1/output-1/target/etc/shadow rm -f /tmp/instance-1/output-1/target/bin/sh if [ -x /tmp/instance-1/output-1/target/sbin/swapon -a -x /tmp/instance-1/output-1/target/sbin/swapoff ]; then /bin/sed -i -e '/^#.*\/sbin\/swap/s/^#\+[[:blank:]]*//' /tmp/instance-1/output-1/target/etc/inittab; else /bin/sed -i -e '/^[^#].*\/sbin\/swap/s/^/#/' /tmp/instance-1/output-1/target/etc/inittab; fi printf '%s\n' C en_US locale-archive > /tmp/instance-1/output-1/build/locales.nopurge for dir in /tmp/instance-1/output-1/target/usr/share/locale /tmp/instance-1/output-1/target/usr/share/X11/locale /tmp/instance-1/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-1/output-1/build/locales.nopurge || rm -rf $langdir; fi done; done if [ -d /tmp/instance-1/output-1/target/usr/share/X11/locale ]; then for lang in C en_US; do if [ -f /tmp/instance-1/output-1/target/usr/share/X11/locale/$lang/XLC_LOCALE ]; then echo "$lang/XLC_LOCALE: $lang"; fi done > /tmp/instance-1/output-1/target/usr/share/X11/locale/locale.dir; fi rm -rf /tmp/instance-1/output-1/target/usr/include /tmp/instance-1/output-1/target/usr/share/aclocal \ /tmp/instance-1/output-1/target/usr/lib/pkgconfig /tmp/instance-1/output-1/target/usr/share/pkgconfig \ /tmp/instance-1/output-1/target/usr/lib/cmake /tmp/instance-1/output-1/target/usr/share/cmake \ /tmp/instance-1/output-1/target/usr/doc find /tmp/instance-1/output-1/target/usr/{lib,share}/ -name '*.cmake' -print0 | xargs -0 rm -f find /tmp/instance-1/output-1/target/lib/ /tmp/instance-1/output-1/target/usr/lib/ /tmp/instance-1/output-1/target/usr/libexec/ \ \( -name '*.a' -o -name '*.la' -o -name '*.prl' \) -print0 | xargs -0 rm -f rm -rf /tmp/instance-1/output-1/target/usr/share/gdb rm -rf /tmp/instance-1/output-1/target/usr/share/bash-completion rm -rf /tmp/instance-1/output-1/target/etc/bash_completion.d rm -rf /tmp/instance-1/output-1/target/usr/share/zsh rm -rf /tmp/instance-1/output-1/target/usr/man /tmp/instance-1/output-1/target/usr/share/man rm -rf /tmp/instance-1/output-1/target/usr/info /tmp/instance-1/output-1/target/usr/share/info rm -rf /tmp/instance-1/output-1/target/usr/doc /tmp/instance-1/output-1/target/usr/share/doc rm -rf /tmp/instance-1/output-1/target/usr/share/gtk-doc rmdir /tmp/instance-1/output-1/target/usr/share 2>/dev/null || true rm -rf /tmp/instance-1/output-1/target/lib/debug /tmp/instance-1/output-1/target/usr/lib/debug find /tmp/instance-1/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-1/output-1/host/bin/sparc-linux-strip --remove-section=.comment --remove-section=.note 2>/dev/null || true find /tmp/instance-1/output-1/target \( -name 'ld-*.so*' -o -name 'libpthread*.so*' \) -print0 | xargs -0 -r /tmp/instance-1/output-1/host/bin/sparc-linux-strip --remove-section=.comment --remove-section=.note --strip-debug 2>/dev/null || true test -f /tmp/instance-1/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-1/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-1/output-1/target/etc ( \ echo "NAME=Buildroot"; \ echo "VERSION=2021.05-393-gb928074e2d"; \ echo "ID=buildroot"; \ echo "VERSION_ID=2021.08-git"; \ echo "PRETTY_NAME=\"Buildroot 2021.08-git\"" \ ) > /tmp/instance-1/output-1/target/usr/lib/os-release ln -sf ../usr/lib/os-release /tmp/instance-1/output-1/target/etc >>> Sanitizing RPATH in target tree PER_PACKAGE_DIR=/tmp/instance-1/output-1/per-package /tmp/instance-1/buildroot/support/scripts/fix-rpath target touch /tmp/instance-1/output-1/target/usr ln -snf /tmp/instance-1/output-1/host/sparc-buildroot-linux-uclibc/sysroot /tmp/instance-1/output-1/staging make: Leaving directory '/tmp/instance-1/buildroot' make: Entering directory '/tmp/instance-1/buildroot' >>> Buildroot 2021.05-393-gb928074e2d 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 >>> argp-standalone 1.3 Collecting legal info argp.h: OK (sha256: bbb8919aa520069b0234faf5e83a94052d278419ffe97ca8e843ecc9b212d1ab) >>> bcg729 1.0.4 Collecting legal info COPYING: OK (sha256: 32b1062f7da84967e7019d01ab805935caa7ab7321a7ced0e30ebe75e5df1670) >>> host-pkgconf 1.6.3 Collecting legal info COPYING: OK (sha256: 07ee94b50a41ee3fc4e13a9b9c60b26fc28488494c465639f7e5f07a3952ec04) >>> busybox 1.33.1 Collecting legal info LICENSE: OK (sha256: bbfc9843646d483c334664f651c208b9839626891d8f17604db2146962f43548) archival/libarchive/bz/LICENSE: OK (sha256: b5a136ed67798e51fe2e0ca0b2a21cb01b904ff0c9f7d563a6292e276607e58f) >>> cpio 2.13 Collecting legal info COPYING: OK (sha256: fc82ca8b6fdb18d4e3e85cfd8ab58d1bcd3f1b29abe782895abd91d64763f8e7) >>> pciutils 3.7.0 Collecting legal info COPYING: OK (sha256: ab15fd526bd8dd18a9e77ebc139656bf4d33e97fc7238cd11bf60e2b9b8666c6) >>> zlib Collecting legal info >>> libzlib 1.2.11 Collecting legal info README: OK (sha256: 7960b6b1cc63e619abb77acaea5427159605afee8c8b362664f4effc7d7f7d15) >>> freeradius-client 1.1.7 Collecting legal info COPYRIGHT: OK (sha256: e579878de7971b2224ae2263bbc61f6c465fe40e884a9068d5fa9d17fbfd2ebe) >>> gsl 2.6 Collecting legal info COPYING: OK (sha256: 8ceb4b9ee5adedde47b31e975c1d90c73ad27b6b165a1dcd80c7c545eb65b903) >>> initscripts Collecting legal info >>> lapack 3.9.0 Collecting legal info LICENSE: OK (sha256: d56bd4441b999b80c88df04faf0d8b3d7d3b2bd781cf91242c4188e8a6d0f8be) >>> libcuefile 475 Collecting legal info COPYING: OK (sha256: 32b1062f7da84967e7019d01ab805935caa7ab7321a7ced0e30ebe75e5df1670) >>> libnl 3.5.0 Collecting legal info COPYING: OK (sha256: dc626520dcd53a22f727af3ee42c770e56c97a64fe3adb063799d8ab032fe551) >>> host-bison 3.7.6 Collecting legal info COPYING: OK (sha256: 3972dc9744f6499f0f9b2dbf76696f2ae7ad8af9b23dde66d6af86c9dfb36986) >>> host-m4 1.4.18 Collecting legal info COPYING: OK (sha256: 8ceb4b9ee5adedde47b31e975c1d90c73ad27b6b165a1dcd80c7c545eb65b903) >>> host-flex 2.6.4 Collecting legal info COPYING: OK (sha256: 97fd685958d93be7f8dab939bb8161dbd6afb0718c63bfc337c24321aea44273) >>> 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-automake 1.15.1 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) >>> liboauth 1.0.3 Collecting legal info COPYING.MIT: OK (sha256: c30608672733bf3abd2ccf6f3206be8d91b7ee58b007b2fdbcfbc61c655e7fb7) >>> openssl Collecting legal info >>> libopenssl 1.1.1k Collecting legal info LICENSE: OK (sha256: c32913b33252e71190af2066f08115c69bc9fddadf3bf29296e20c835389841c) >>> libtomcrypt 1.18.2 Collecting legal info LICENSE: OK (sha256: 8f196cb13afd271f5e267fd29543fc454596382ad580e7592709492843996ac8) >>> libtommath 1.2.0 Collecting legal info LICENSE: OK (sha256: 2fa64b163659f41965c9815882a8296d3d03ff546b76153e11445f9bdecf955a) >>> liburiparser 0.9.5 Collecting legal info COPYING: OK (sha256: 287f09e6546a9610f949f89e8fb937cacfeabd7bfaa8c8a0c18312193bf04ad3) >>> ncurses 6.1 Collecting legal info COPYING: OK (sha256: 4d1fde61868c73776a539366dccf5d5a4857e7fd7299efb1f02e07c2afe9ea87) >>> host-ncurses 6.1 Collecting legal info COPYING: OK (sha256: 4d1fde61868c73776a539366dccf5d5a4857e7fd7299efb1f02e07c2afe9ea87) >>> ntfs-3g 2017.3.23 Collecting legal info COPYING: OK (sha256: 231f7edcc7352d7734a96eef0b8030f77982678c516876fcb81e25b32d68564c) COPYING.LIB: OK (sha256: d7bf9d064ac3e5840f9dd02422b7eeec4f1fd03f37fadbd043602be5e882304f) >>> host-patchelf 0.9 Collecting legal info COPYING: OK (sha256: 8ceb4b9ee5adedde47b31e975c1d90c73ad27b6b165a1dcd80c7c545eb65b903) >>> powertop 2.13 Collecting legal info COPYING: OK (sha256: b499eddebda05a8859e32b820a64577d91f1de2b52efa2a1575a2cb4000bc259) >>> spi-tools 0.8.6 Collecting legal info LICENSE: OK (sha256: a01259a1b522cf0de95824f9860613b453153eebac468e96196d5d7dba84786c) 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-1/output-1/legal-info make: Leaving directory '/tmp/instance-1/buildroot'