from conf.h:34, from protocol_auth.c:29: /home/buildroot/instance-0/output-1/host/arm-buildroot-linux-gnueabihf/sysroot/usr/include/openssl/rsa.h:215:27: note: declared here OSSL_DEPRECATEDIN_3_0 int RSA_size(const RSA *rsa); ^~~~~~~~ protocol_auth.c: In function 'challenge_h': protocol_auth.c:382:2: warning: 'RSA_size' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] len = RSA_size(myself->connection->rsa_key); ^~~ In file included from connection.h:24:0, from net.h:129, from subnet.h:24, from conf.h:34, from protocol_auth.c:29: /home/buildroot/instance-0/output-1/host/arm-buildroot-linux-gnueabihf/sysroot/usr/include/openssl/rsa.h:215:27: note: declared here OSSL_DEPRECATEDIN_3_0 int RSA_size(const RSA *rsa); ^~~~~~~~ protocol_auth.c: In function 'send_chal_reply': protocol_auth.c:427:18: warning: 'RSA_size' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] || !EVP_DigestUpdate(ctx, c->mychallenge, RSA_size(myself->connection->rsa_key)) ^~ In file included from connection.h:24:0, from net.h:129, from subnet.h:24, from conf.h:34, from protocol_auth.c:29: /home/buildroot/instance-0/output-1/host/arm-buildroot-linux-gnueabihf/sysroot/usr/include/openssl/rsa.h:215:27: note: declared here OSSL_DEPRECATEDIN_3_0 int RSA_size(const RSA *rsa); ^~~~~~~~ protocol_auth.c: In function 'chal_reply_h': protocol_auth.c:482:18: warning: 'RSA_size' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] || !EVP_DigestUpdate(ctx, c->hischallenge, RSA_size(c->rsa_key)) ^~ In file included from connection.h:24:0, from net.h:129, from subnet.h:24, from conf.h:34, from protocol_auth.c:29: /home/buildroot/instance-0/output-1/host/arm-buildroot-linux-gnueabihf/sysroot/usr/include/openssl/rsa.h:215:27: note: declared here OSSL_DEPRECATEDIN_3_0 int RSA_size(const RSA *rsa); ^~~~~~~~ CC tincd.o CC utils.o CC linux/device.o tincd.c: In function 'keygen': tincd.c:439:2: warning: 'RSA_new' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] rsa_key = RSA_new(); ^~~~~~~ In file included from tincd.c:37:0: /home/buildroot/instance-0/output-1/host/arm-buildroot-linux-gnueabihf/sysroot/usr/include/openssl/rsa.h:212:28: note: declared here OSSL_DEPRECATEDIN_3_0 RSA *RSA_new(void); ^~~~~~~ tincd.c:449:2: warning: 'RSA_generate_key_ex' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] result = RSA_generate_key_ex(rsa_key, bits, e, cb); ^~~~~~ In file included from tincd.c:37:0: /home/buildroot/instance-0/output-1/host/arm-buildroot-linux-gnueabihf/sysroot/usr/include/openssl/rsa.h:271:27: note: declared here OSSL_DEPRECATEDIN_3_0 int RSA_generate_key_ex(RSA *rsa, int bits, BIGNUM *e, ^~~~~~~~~~~~~~~~~~~ tincd.c:456:3: warning: 'RSA_free' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] RSA_free(rsa_key); ^~~~~~~~ In file included from tincd.c:37:0: /home/buildroot/instance-0/output-1/host/arm-buildroot-linux-gnueabihf/sysroot/usr/include/openssl/rsa.h:304:28: note: declared here OSSL_DEPRECATEDIN_3_0 void RSA_free(RSA *r); ^~~~~~~~ tincd.c:466:3: warning: 'RSA_free' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] RSA_free(rsa_key); ^~~~~~~~ In file included from tincd.c:37:0: /home/buildroot/instance-0/output-1/host/arm-buildroot-linux-gnueabihf/sysroot/usr/include/openssl/rsa.h:304:28: note: declared here OSSL_DEPRECATEDIN_3_0 void RSA_free(RSA *r); ^~~~~~~~ tincd.c:476:2: warning: 'PEM_write_RSAPrivateKey' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] PEM_write_RSAPrivateKey(f, rsa_key, NULL, NULL, 0, NULL, NULL); ^~~~~~~~~~~~~~~~~~~~~~~ In file included from tincd.c:38:0: /home/buildroot/instance-0/output-1/host/arm-buildroot-linux-gnueabihf/sysroot/usr/include/openssl/pem.h:451:1: note: declared here DECLARE_PEM_rw_cb_attr(OSSL_DEPRECATEDIN_3_0, RSAPrivateKey, RSA) ^ tincd.c:491:3: warning: 'RSA_free' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] RSA_free(rsa_key); ^~~~~~~~ In file included from tincd.c:37:0: /home/buildroot/instance-0/output-1/host/arm-buildroot-linux-gnueabihf/sysroot/usr/include/openssl/rsa.h:304:28: note: declared here OSSL_DEPRECATEDIN_3_0 void RSA_free(RSA *r); ^~~~~~~~ tincd.c:496:2: warning: 'PEM_write_RSAPublicKey' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] PEM_write_RSAPublicKey(f, rsa_key); ^~~~~~~~~~~~~~~~~~~~~~ In file included from tincd.c:38:0: /home/buildroot/instance-0/output-1/host/arm-buildroot-linux-gnueabihf/sysroot/usr/include/openssl/pem.h:452:1: note: declared here DECLARE_PEM_rw_attr(OSSL_DEPRECATEDIN_3_0, RSAPublicKey, RSA) ^ tincd.c:499:2: warning: 'RSA_free' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] RSA_free(rsa_key); ^~~~~~~~ In file included from tincd.c:37:0: /home/buildroot/instance-0/output-1/host/arm-buildroot-linux-gnueabihf/sysroot/usr/include/openssl/rsa.h:304:28: note: declared here OSSL_DEPRECATEDIN_3_0 void RSA_free(RSA *r); ^~~~~~~~ tincd.c: In function 'main': tincd.c:692:2: warning: 'ENGINE_load_builtin_engines' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] ENGINE_load_builtin_engines(); ^~~~~~~~~~~~~~~~~~~~~~~~~~~ In file included from tincd.c:41:0: /home/buildroot/instance-0/output-1/host/arm-buildroot-linux-gnueabihf/sysroot/usr/include/openssl/engine.h:358:28: note: declared here OSSL_DEPRECATEDIN_3_0 void ENGINE_load_builtin_engines(void); ^~~~~~~~~~~~~~~~~~~~~~~~~~~ tincd.c:693:2: warning: 'ENGINE_register_all_complete' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] ENGINE_register_all_complete(); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~ In file included from tincd.c:41:0: /home/buildroot/instance-0/output-1/host/arm-buildroot-linux-gnueabihf/sysroot/usr/include/openssl/engine.h:415:27: note: declared here OSSL_DEPRECATEDIN_3_0 int ENGINE_register_all_complete(void); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~ CCLD tincd make[3]: Leaving directory '/home/buildroot/instance-0/output-1/build/tinc-1.0.36/src' Making all in doc make[3]: Entering directory '/home/buildroot/instance-0/output-1/build/tinc-1.0.36/doc' GEN tincd.8 GEN tinc.conf.5 make[3]: Leaving directory '/home/buildroot/instance-0/output-1/build/tinc-1.0.36/doc' Making all in systemd make[3]: Entering directory '/home/buildroot/instance-0/output-1/build/tinc-1.0.36/systemd' make[3]: Nothing to be done for 'all'. make[3]: Leaving directory '/home/buildroot/instance-0/output-1/build/tinc-1.0.36/systemd' make[3]: Entering directory '/home/buildroot/instance-0/output-1/build/tinc-1.0.36' make[3]: Leaving directory '/home/buildroot/instance-0/output-1/build/tinc-1.0.36' make[2]: Leaving directory '/home/buildroot/instance-0/output-1/build/tinc-1.0.36' make[1]: Leaving directory '/home/buildroot/instance-0/output-1/build/tinc-1.0.36' >>> tinc 1.0.36 Installing to target GIT_DIR=. PATH="/home/buildroot/instance-0/output-1/host/bin:/home/buildroot/instance-0/output-1/host/sbin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" /usr/bin/make -j17 DESTDIR=/home/buildroot/instance-0/output-1/target install -C /home/buildroot/instance-0/output-1/build/tinc-1.0.36/ make[1]: Entering directory '/home/buildroot/instance-0/output-1/build/tinc-1.0.36' Making install in src make[2]: Entering directory '/home/buildroot/instance-0/output-1/build/tinc-1.0.36/src' make[3]: Entering directory '/home/buildroot/instance-0/output-1/build/tinc-1.0.36/src' make[3]: Nothing to be done for 'install-data-am'. /bin/mkdir -p '/home/buildroot/instance-0/output-1/target/usr/sbin' /usr/bin/install -c tincd '/home/buildroot/instance-0/output-1/target/usr/sbin' make[3]: Leaving directory '/home/buildroot/instance-0/output-1/build/tinc-1.0.36/src' make[2]: Leaving directory '/home/buildroot/instance-0/output-1/build/tinc-1.0.36/src' Making install in doc make[2]: Entering directory '/home/buildroot/instance-0/output-1/build/tinc-1.0.36/doc' make[3]: Entering directory '/home/buildroot/instance-0/output-1/build/tinc-1.0.36/doc' make[3]: Nothing to be done for 'install-exec-am'. /bin/mkdir -p '/home/buildroot/instance-0/output-1/target/usr/share/man/man5' /bin/mkdir -p '/home/buildroot/instance-0/output-1/target/usr/share/man/man8' /bin/mkdir -p '/home/buildroot/instance-0/output-1/target/usr/share/info' /usr/bin/install -c -m 644 tinc.conf.5 '/home/buildroot/instance-0/output-1/target/usr/share/man/man5' /usr/bin/install -c -m 644 tincd.8 '/home/buildroot/instance-0/output-1/target/usr/share/man/man8' /usr/bin/install -c -m 644 ./tinc.info '/home/buildroot/instance-0/output-1/target/usr/share/info' make[3]: Leaving directory '/home/buildroot/instance-0/output-1/build/tinc-1.0.36/doc' make[2]: Leaving directory '/home/buildroot/instance-0/output-1/build/tinc-1.0.36/doc' Making install in systemd make[2]: Entering directory '/home/buildroot/instance-0/output-1/build/tinc-1.0.36/systemd' make[3]: Entering directory '/home/buildroot/instance-0/output-1/build/tinc-1.0.36/systemd' make[3]: Nothing to be done for 'install-exec-am'. make[3]: Leaving directory '/home/buildroot/instance-0/output-1/build/tinc-1.0.36/systemd' make[2]: Leaving directory '/home/buildroot/instance-0/output-1/build/tinc-1.0.36/systemd' make[2]: Entering directory '/home/buildroot/instance-0/output-1/build/tinc-1.0.36' make[3]: Entering directory '/home/buildroot/instance-0/output-1/build/tinc-1.0.36' make[3]: Nothing to be done for 'install-exec-am'. make[3]: Nothing to be done for 'install-data-am'. make[3]: Leaving directory '/home/buildroot/instance-0/output-1/build/tinc-1.0.36' make[2]: Leaving directory '/home/buildroot/instance-0/output-1/build/tinc-1.0.36' make[1]: Leaving directory '/home/buildroot/instance-0/output-1/build/tinc-1.0.36' >>> Finalizing host directory >>> Finalizing target directory mkdir -p /home/buildroot/instance-0/output-1/host/etc/meson sed -e "s%@TARGET_CFLAGS@%'-D_LARGEFILE_SOURCE', '-D_LARGEFILE64_SOURCE', '-D_FILE_OFFSET_BITS=64', '-O2', '-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', '-O2', '-g0', '-D_FORTIFY_SOURCE=1'@PKG_TARGET_CXXFLAGS@%g" -e "s%@TARGET_FCFLAGS@%'-O2', '-g0'@PKG_TARGET_FCFLAGS@%g" -e "s%@TARGET_CC@%/home/buildroot/instance-0/output-1/host/bin/arm-linux-gnueabihf-gcc%g" -e "s%@TARGET_CXX@%/home/buildroot/instance-0/output-1/host/bin/arm-linux-gnueabihf-g++%g" -e "s%@TARGET_AR@%/home/buildroot/instance-0/output-1/host/bin/arm-linux-gnueabihf-gcc-ar%g" -e "s%@TARGET_FC@%/home/buildroot/instance-0/output-1/host/bin/arm-linux-gnueabihf-gfortran%g" -e "s%@TARGET_STRIP@%/home/buildroot/instance-0/output-1/host/bin/arm-linux-gnueabihf-strip%g" -e "s%@TARGET_ARCH@%arm%g" -e "s%@TARGET_CPU@%cortex-a8%g" -e "s%@TARGET_ENDIAN@%little%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@%/home/buildroot/instance-0/output-1/host/bin/cmake%g" -e "s%@PKGCONF_HOST_BINARY@%/home/buildroot/instance-0/output-1/host/bin/pkgconf%g" -e "s%@HOST_DIR@%/home/buildroot/instance-0/output-1/host%g" -e "s%@STAGING_DIR@%/home/buildroot/instance-0/output-1/host/arm-buildroot-linux-gnueabihf/sysroot%g" -e "s%@STATIC@%false%g" /home/buildroot/instance-0/buildroot/support/misc/cross-compilation.conf.in > /home/buildroot/instance-0/output-1/host/etc/meson/cross-compilation.conf.in sed -e "s%@TARGET_CC@%/home/buildroot/instance-0/output-1/host/bin/arm-linux-gnueabihf-gcc%g" -e "s%@TARGET_CXX@%/home/buildroot/instance-0/output-1/host/bin/arm-linux-gnueabihf-g++%g" -e "s%@TARGET_AR@%/home/buildroot/instance-0/output-1/host/bin/arm-linux-gnueabihf-gcc-ar%g" -e "s%@TARGET_FC@%/home/buildroot/instance-0/output-1/host/bin/arm-linux-gnueabihf-gfortran%g" -e "s%@TARGET_STRIP@%/home/buildroot/instance-0/output-1/host/bin/arm-linux-gnueabihf-strip%g" -e "s%@TARGET_ARCH@%arm%g" -e "s%@TARGET_CPU@%cortex-a8%g" -e "s%@TARGET_ENDIAN@%little%g" -e "s%@TARGET_FCFLAGS@%'-O2', '-g0'%g" -e "s%@TARGET_CFLAGS@%'-D_LARGEFILE_SOURCE', '-D_LARGEFILE64_SOURCE', '-D_FILE_OFFSET_BITS=64', '-O2', '-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', '-O2', '-g0', '-D_FORTIFY_SOURCE=1'%g" -e "s%@BR2_CMAKE@%/home/buildroot/instance-0/output-1/host/bin/cmake%g" -e "s%@PKGCONF_HOST_BINARY@%/home/buildroot/instance-0/output-1/host/bin/pkgconf%g" -e "s%@HOST_DIR@%/home/buildroot/instance-0/output-1/host%g" -e "s%@STAGING_DIR@%/home/buildroot/instance-0/output-1/host/arm-buildroot-linux-gnueabihf/sysroot%g" -e "s%@STATIC@%false%g" /home/buildroot/instance-0/buildroot/support/misc/cross-compilation.conf.in > /home/buildroot/instance-0/output-1/host/etc/meson/cross-compilation.conf /bin/sed -i -e '/# GENERIC_SERIAL$/s~^.*#~console::respawn:/sbin/getty -L console 0 vt100 #~' /home/buildroot/instance-0/output-1/target/etc/inittab /bin/sed -i -e '/^#.*-o remount,rw \/$/s~^#\+~~' /home/buildroot/instance-0/output-1/target/etc/inittab if grep -q CONFIG_ASH=y /home/buildroot/instance-0/output-1/build/busybox-1.36.1/.config; then grep -qsE '^/bin/ash$' /home/buildroot/instance-0/output-1/target/etc/shells || echo "/bin/ash" >> /home/buildroot/instance-0/output-1/target/etc/shells; fi if grep -q CONFIG_HUSH=y /home/buildroot/instance-0/output-1/build/busybox-1.36.1/.config; then grep -qsE '^/bin/hush$' /home/buildroot/instance-0/output-1/target/etc/shells || echo "/bin/hush" >> /home/buildroot/instance-0/output-1/target/etc/shells; fi rm -f /home/buildroot/instance-0/output-1/target/usr/share/glib-2.0/schemas/*.xml /home/buildroot/instance-0/output-1/target/usr/share/glib-2.0/schemas/*.dtd /home/buildroot/instance-0/output-1/host/bin/glib-compile-schemas /home/buildroot/instance-0/output-1/host/arm-buildroot-linux-gnueabihf/sysroot/usr/share/glib-2.0/schemas --targetdir=/home/buildroot/instance-0/output-1/target/usr/share/glib-2.0/schemas Warning: Schema ?org.gnome.crypto.pgp? has path ?/desktop/gnome/crypto/pgp/?. Paths starting with ?/apps/?, ?/desktop/? or ?/system/? are deprecated. mkdir -p /home/buildroot/instance-0/output-1/target/etc echo "buildroot" > /home/buildroot/instance-0/output-1/target/etc/hostname /bin/sed -i -e '$a \127.0.1.1\tbuildroot' -e '/^127.0.1.1/d' /home/buildroot/instance-0/output-1/target/etc/hosts mkdir -p /home/buildroot/instance-0/output-1/target/etc echo "Welcome to Buildroot" > /home/buildroot/instance-0/output-1/target/etc/issue /bin/sed -i -e s,^root:[^:]*:,root::, /home/buildroot/instance-0/output-1/target/etc/shadow rm -f /home/buildroot/instance-0/output-1/target/bin/sh if [ -x /home/buildroot/instance-0/output-1/target/sbin/swapon -a -x /home/buildroot/instance-0/output-1/target/sbin/swapoff ]; then /bin/sed -i -e '/^#.*\/sbin\/swap/s/^#\+[[:blank:]]*//' /home/buildroot/instance-0/output-1/target/etc/inittab; else /bin/sed -i -e '/^[^#].*\/sbin\/swap/s/^/#/' /home/buildroot/instance-0/output-1/target/etc/inittab; fi printf '%s\n' C en_US locale-archive > /home/buildroot/instance-0/output-1/build/locales.nopurge for dir in /home/buildroot/instance-0/output-1/target/usr/share/locale /home/buildroot/instance-0/output-1/target/usr/share/X11/locale /home/buildroot/instance-0/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##*/}" /home/buildroot/instance-0/output-1/build/locales.nopurge || rm -rf $langdir; fi done; done if [ -d /home/buildroot/instance-0/output-1/target/usr/share/X11/locale ]; then for lang in C en_US; do if [ -f /home/buildroot/instance-0/output-1/target/usr/share/X11/locale/$lang/XLC_LOCALE ]; then echo "$lang/XLC_LOCALE: $lang"; fi done > /home/buildroot/instance-0/output-1/target/usr/share/X11/locale/locale.dir; fi rm -rf /home/buildroot/instance-0/output-1/target/usr/include /home/buildroot/instance-0/output-1/target/usr/share/aclocal \ /home/buildroot/instance-0/output-1/target/usr/lib/pkgconfig /home/buildroot/instance-0/output-1/target/usr/share/pkgconfig \ /home/buildroot/instance-0/output-1/target/usr/lib/cmake /home/buildroot/instance-0/output-1/target/usr/share/cmake \ /home/buildroot/instance-0/output-1/target/usr/lib/rpm /home/buildroot/instance-0/output-1/target/usr/doc find /home/buildroot/instance-0/output-1/target/usr/{lib,share}/ -name '*.cmake' -print0 | xargs -0 rm -f find /home/buildroot/instance-0/output-1/target/lib/ /home/buildroot/instance-0/output-1/target/usr/lib/ /home/buildroot/instance-0/output-1/target/usr/libexec/ \ \( -name '*.a' -o -name '*.la' -o -name '*.prl' \) -print0 | xargs -0 rm -f rm -rf /home/buildroot/instance-0/output-1/target/usr/share/gdb rm -rf /home/buildroot/instance-0/output-1/target/usr/share/bash-completion rm -rf /home/buildroot/instance-0/output-1/target/etc/bash_completion.d rm -rf /home/buildroot/instance-0/output-1/target/usr/share/zsh rm -rf /home/buildroot/instance-0/output-1/target/usr/man /home/buildroot/instance-0/output-1/target/usr/share/man rm -rf /home/buildroot/instance-0/output-1/target/usr/info /home/buildroot/instance-0/output-1/target/usr/share/info rm -rf /home/buildroot/instance-0/output-1/target/usr/doc /home/buildroot/instance-0/output-1/target/usr/share/doc rm -rf /home/buildroot/instance-0/output-1/target/usr/share/gtk-doc rmdir /home/buildroot/instance-0/output-1/target/usr/share 2>/dev/null || true rm -rf /home/buildroot/instance-0/output-1/target/lib/debug /home/buildroot/instance-0/output-1/target/usr/lib/debug find /home/buildroot/instance-0/output-1/target -type f \( -perm /111 -o -name '*.so*' \) -not \( -name 'libpthread*.so*' -o -name 'ld-*.so*' -o -name '*.ko' \) -print0 | xargs -0 /home/buildroot/instance-0/output-1/host/bin/arm-linux-gnueabihf-strip --remove-section=.comment --remove-section=.note 2>/dev/null || true find /home/buildroot/instance-0/output-1/target \( -name 'ld-*.so*' -o -name 'libpthread*.so*' \) -print0 | xargs -0 -r /home/buildroot/instance-0/output-1/host/bin/arm-linux-gnueabihf-strip --remove-section=.comment --remove-section=.note --strip-debug 2>/dev/null || true test -f /home/buildroot/instance-0/output-1/target/etc/ld.so.conf && \ { echo "ERROR: we shouldn't have a /etc/ld.so.conf file"; exit 1; } || true test -d /home/buildroot/instance-0/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 /home/buildroot/instance-0/output-1/target/etc ( \ echo "NAME=Buildroot"; \ echo "VERSION=2024.02-74-g0ee43b0157"; \ echo "ID=buildroot"; \ echo "VERSION_ID=2024.05-git"; \ echo "PRETTY_NAME=\"Buildroot 2024.05-git\"" \ ) > /home/buildroot/instance-0/output-1/target/usr/lib/os-release ln -sf ../usr/lib/os-release /home/buildroot/instance-0/output-1/target/etc >>> Sanitizing RPATH in target tree PARALLEL_JOBS=17 \ PER_PACKAGE_DIR=/home/buildroot/instance-0/output-1/per-package \ /home/buildroot/instance-0/buildroot/support/scripts/fix-rpath target touch /home/buildroot/instance-0/output-1/target/usr ln -snf /home/buildroot/instance-0/output-1/host/arm-buildroot-linux-gnueabihf/sysroot /home/buildroot/instance-0/output-1/staging make: Leaving directory '/home/buildroot/instance-0/buildroot' make: Entering directory '/home/buildroot/instance-0/buildroot' >>> Buildroot 2024.02-74-g0ee43b0157 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-linaro-arm 2018.05 Collecting legal info >>> toolchain Collecting legal info >>> asterisk 20.5.2 Collecting legal info COPYING: OK (sha256: 82af40ed7f49c08685360811993d9396320842f021df828801d733e8fdc0312f) main/sha1.c: OK (sha256: 3ce4755b8da872a0de93ecdbbe2f940763cc95c9027bbf3c4a2e914fcd8bf4c6) codecs/speex/speex_resampler.h: OK (sha256: 6215e3ed73c3982a5c6701127d681ec0b9f1121ac78a28805bd93f93c3eb84c0) utils/db1-ast/include/db.h: OK (sha256: ea69cc96ab8a779c180a362377caeada71926897d1b55b980f04d74ba5aaa388) >>> host-asterisk 20.5.2 Collecting legal info COPYING: OK (sha256: 82af40ed7f49c08685360811993d9396320842f021df828801d733e8fdc0312f) >>> host-libxml2 2.12.5 Collecting legal info Copyright: OK (sha256: 7fb0a66f3989f9bd5c7e5438a3de02cd4a7a47dde0aea2f7ea2ba2ff454ee6a4) >>> host-pkgconf 1.6.3 Collecting legal info COPYING: OK (sha256: 07ee94b50a41ee3fc4e13a9b9c60b26fc28488494c465639f7e5f07a3952ec04) >>> host-python3 3.11.8 Collecting legal info LICENSE: OK (sha256: 3b2f81fe21d181c499c59a256c8e1968455d6689d269aa85373bfb6af41da3bf) >>> host-autoconf 2.72 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-m4 1.4.19 Collecting legal info COPYING: OK (sha256: 3972dc9744f6499f0f9b2dbf76696f2ae7ad8af9b23dde66d6af86c9dfb36986) >>> host-autoconf-archive 2023.02.20 Collecting legal info COPYING: OK (sha256: e6037104443f9a7829b2aa7c5370d0789a7bda3ca65a0b904cdc0c2e285d9195) COPYING.EXCEPTION: OK (sha256: 23ed0b84fa023bfa33433b498192cd08a3bfb1f4864a8ed791a84f3eb48b2dd2) >>> host-automake 1.16.5 Collecting legal info COPYING: OK (sha256: ab15fd526bd8dd18a9e77ebc139656bf4d33e97fc7238cd11bf60e2b9b8666c6) >>> host-expat 2.6.2 Collecting legal info COPYING: OK (sha256: 122f2c27000472a201d337b9b31f7eb2b52d091b02857061a8880371612d9534) >>> host-libffi 3.4.4 Collecting legal info LICENSE: OK (sha256: 2c9c2acb9743e6b007b91350475308aee44691d96aa20eacef8e199988c8c388) >>> host-openssl Collecting legal info >>> host-libopenssl 3.2.1 Collecting legal info LICENSE.txt: OK (sha256: 7d5450cb2d142651b8afa315b5f238efc805dad827d91ba367d8516bc9d49e7a) >>> host-zlib Collecting legal info >>> host-libzlib 1.3.1 Collecting legal info LICENSE: OK (sha256: 845efc77857d485d91fb3e0b884aaa929368c717ae8186b66fe1ed2495753243) >>> host-ncurses 6.4-20230603 Collecting legal info COPYING: OK (sha256: 0413b2f4ea863194c174673032f0fca84f1ea1ed4eed6476baea68c075a631ce) >>> jansson 2.14 Collecting legal info LICENSE: OK (sha256: 1fff7d37d22157bcd81ab53b6c54da755d7c2f868f15807d9bde920f10730da0) >>> libcurl 8.6.0 Collecting legal info COPYING: OK (sha256: adb1fc06547fd136244179809f7b7c2d2ae6c4534f160aa513af9b6a12866a32) >>> openssl Collecting legal info >>> libopenssl 3.2.1 Collecting legal info LICENSE.txt: OK (sha256: 7d5450cb2d142651b8afa315b5f238efc805dad827d91ba367d8516bc9d49e7a) >>> zlib Collecting legal info >>> libzlib 1.3.1 Collecting legal info LICENSE: OK (sha256: 845efc77857d485d91fb3e0b884aaa929368c717ae8186b66fe1ed2495753243) >>> libedit 20221030-3.1 Collecting legal info COPYING: OK (sha256: 9da6c9c74987a36c84302982799d17d2f748ba1c1c0c471425716173c1d07649) >>> ncurses 6.4-20230603 Collecting legal info COPYING: OK (sha256: 0413b2f4ea863194c174673032f0fca84f1ea1ed4eed6476baea68c075a631ce) >>> libxml2 2.12.5 Collecting legal info Copyright: OK (sha256: 7fb0a66f3989f9bd5c7e5438a3de02cd4a7a47dde0aea2f7ea2ba2ff454ee6a4) >>> sqlite 3.45.1 Collecting legal info tea/license.terms: OK (sha256: 66e056b6e8687f32af30d5187611b98b12a8f46f07aaf62f43585f276e8f0ac9) >>> readline 8.2 Collecting legal info COPYING: OK (sha256: 8ceb4b9ee5adedde47b31e975c1d90c73ad27b6b165a1dcd80c7c545eb65b903) >>> util-linux 2.39.3 Collecting legal info README.licensing: OK (sha256: 13f0ea46d12d798c095a6ad39d7ddc988e2e4d274c6494115f6b463f7bc4f702) 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) >>> pcre2 10.43 Collecting legal info LICENCE: OK (sha256: 030087e2e8dd7c1bdd26057d25d4ded8f45bbf01ad458d68665ad04b8b0fbedf) >>> at-spi2-core 2.50.0 Collecting legal info COPYING: OK (sha256: dc626520dcd53a22f727af3ee42c770e56c97a64fe3adb063799d8ab032fe551) >>> dbus 1.14.10 Collecting legal info COPYING: OK (sha256: e61807cd1c32ff4e7bd5b4b61dd21997c6dc5642cf19316124fe38d50e1f9fa3) >>> expat 2.6.2 Collecting legal info COPYING: OK (sha256: 122f2c27000472a201d337b9b31f7eb2b52d091b02857061a8880371612d9534) >>> host-meson 1.3.1 Collecting legal info COPYING: OK (sha256: cfc7749b96f63bd31c3c42b5c471bf756814053e847c10f3eb003417bc523d30) >>> host-ninja 1.11.1.g95dee.kitware.jobserver-1 Collecting legal info COPYING: OK (sha256: eb7e9ab9690124c5c9f42bdc81383d886a3dede26345b6ed15bbad7caf81f7ea) >>> host-cmake 3.28.1 Collecting legal info Copyright.txt: OK (sha256: 4a01ccf2dc580ba570d02bc015bbe0ec92f1f318717aae9540ba841ba7946756) >>> host-python-setuptools 69.0.3 Collecting legal info LICENSE: OK (sha256: 86da0f01aeae46348a3c3d465195dc1ceccde79f79e87769a64b8da04b2a4741) >>> host-python-installer 0.7.0 Collecting legal info LICENSE: OK (sha256: 37b8b9f2569892fa54406383d431169dbb2115980d78b7efba6eeae5664c484f) >>> host-python-flit-core 3.9.0 Collecting legal info LICENSE: OK (sha256: 35b4f1dec512e617077fd6980dbb43ef8c2887adc5d0185edb4c04da175dd816) >>> host-python-pypa-build 1.0.3 Collecting legal info LICENSE: OK (sha256: aaf9a29ca5907971ccf07de025375db34539a8d5eeebce20b46099805722106f) >>> host-python-packaging 23.2 Collecting legal info LICENSE: OK (sha256: cad1ef5bd340d73e074ba614d26f7deaca5c7940c3d8c34852e65c4909686c48) LICENSE.APACHE: OK (sha256: 0d542e0c8804e39aa7f37eb00da5a762149dc682d7829451287e11b938e94594) LICENSE.BSD: OK (sha256: b70e7e9b742f1cc6f948b34c16aa39ffece94196364bc88ff0d2180f0028fac5) >>> host-python-pyproject-hooks 1.0.0 Collecting legal info LICENSE: OK (sha256: 1b22b049b5267d6dfc23a67bf4a84d8ec04b9fdfb1a51d360e42b4342c8b4154) >>> host-python-wheel 0.40.0 Collecting legal info LICENSE.txt: OK (sha256: 30c23618679108f3e8ea1d2a658c7ca417bdfc891c98ef1a89fa4ff0c9828654) >>> libglib2 2.76.1 Collecting legal info COPYING: OK (sha256: fa6f36630bb1e0c571d34b2bbdf188d08495c9dbf58f28cac112f303fc1f58fb) >>> host-libglib2 2.76.1 Collecting legal info COPYING: OK (sha256: fa6f36630bb1e0c571d34b2bbdf188d08495c9dbf58f28cac112f303fc1f58fb) >>> host-gettext Collecting legal info >>> host-gettext-tiny 0.3.2 Collecting legal info LICENSE: OK (sha256: 4c938aa3d8fa3c184bba5e87a8a2febc89560627c9d0567536879e3eca1a7b4f) extra/COPYING: OK (sha256: e79e9c8a0c85d735ff98185918ec94ed7d175efc377012787aebcf3b80f0d90b) >>> host-pcre2 10.43 Collecting legal info LICENCE: OK (sha256: 030087e2e8dd7c1bdd26057d25d4ded8f45bbf01ad458d68665ad04b8b0fbedf) >>> host-util-linux 2.39.3 Collecting legal info README.licensing: OK (sha256: 13f0ea46d12d798c095a6ad39d7ddc988e2e4d274c6494115f6b463f7bc4f702) 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) >>> libffi 3.4.4 Collecting legal info LICENSE: OK (sha256: 2c9c2acb9743e6b007b91350475308aee44691d96aa20eacef8e199988c8c388) >>> atkmm 2.36.2 Collecting legal info COPYING: OK (sha256: a9bdde5616ecdd1e980b44f360600ee8783b1f99b8cc83a2beb163a0a390e861) COPYING.tools: OK (sha256: ab15fd526bd8dd18a9e77ebc139656bf4d33e97fc7238cd11bf60e2b9b8666c6) >>> glibmm 2.76.0 Collecting legal info COPYING: OK (sha256: 3ea7fa7c5d9a3a113e950eca9cfb85107f096270d8e4dd99daa9d8abdebc60e7) COPYING.tools: OK (sha256: ab15fd526bd8dd18a9e77ebc139656bf4d33e97fc7238cd11bf60e2b9b8666c6) >>> libsigc 3.4.0 Collecting legal info COPYING: OK (sha256: 97628afebc60f026f5c2b25d7491c46a5c4ee61f693e7cfa07fbd2c03605979b) >>> b43-firmware 5.100.138 Collecting legal info >>> host-b43-fwcutter 019 Collecting legal info COPYING: OK (sha256: 6af9fc424d57f29b7e59b35e52d4a91aca80304506275f2c0c076317fc6eb583) >>> bctoolbox 4.4.8 Collecting legal info LICENSE.txt: OK (sha256: 1b3782ccad7b8614100cda30d3faf42fc39f2e97932908c543005053b654ca68) >>> mbedtls 2.28.7 Collecting legal info LICENSE: OK (sha256: 9b405ef4c89342f5eae1dd828882f931747f71001cfba7d114801039b52ad09b) >>> busybox 1.36.1 Collecting legal info LICENSE: OK (sha256: bbfc9843646d483c334664f651c208b9839626891d8f17604db2146962f43548) archival/libarchive/bz/LICENSE: OK (sha256: b5a136ed67798e51fe2e0ca0b2a21cb01b904ff0c9f7d563a6292e276607e58f) >>> coremark 1.01 Collecting legal info LICENSE.md: OK (sha256: d72094a3cb629dc7712ae09b7b777416903c6670930928b5530f2ddfb2296888) >>> cramfs 2.1 Collecting legal info COPYING: OK (sha256: 204d8eff92f95aac4df6c8122bc1505f468f3a901e5a4cc08940e0ede1938994) >>> daq 2.0.7 Collecting legal info COPYING: OK (sha256: 07f28289c09fd9eb5a6ff7bc710ff40363601b1bbc6f3637d8ed412150e90819) >>> host-bison 3.8.2 Collecting legal info COPYING: OK (sha256: 3972dc9744f6499f0f9b2dbf76696f2ae7ad8af9b23dde66d6af86c9dfb36986) >>> host-flex 2.6.4 Collecting legal info COPYING: OK (sha256: 97fd685958d93be7f8dab939bb8161dbd6afb0718c63bfc337c24321aea44273) >>> libpcap 1.10.4 Collecting legal info LICENSE: OK (sha256: 8a54594d257e14a5260ac770f1633516cb51e3fc28c40136ce2697014eda7afd) >>> host-depot-tools 8d14454ba4a35fd9d2483842b08815a2357ec86f Collecting legal info LICENSE: OK (sha256: 984523ee987f4e8b72d61df37d8f1189a7077cd4b77e41a397e35593b297a29d) >>> host-python-httplib2 0.22.0 Collecting legal info LICENSE: OK (sha256: 589eec38f72df2be203711d3b8cbece9b908c5e7ff00bc3cab7f63bae9e366b4) >>> host-python-pyparsing 3.1.1 Collecting legal info LICENSE: OK (sha256: 10d5120a16805804ffda8b688c220bfb4e8f39741b57320604d455a309e01972) >>> host-python-six 1.16.0 Collecting legal info LICENSE: OK (sha256: 8bb850c565aa389fdc16f3a46965ad23d82adff60f2393fc2762b63185e8e6c9) >>> dtc 1.7.0 Collecting legal info README.license: OK (sha256: 78e1e1ce5728a990d59c7de61d4741c49185d5129daf783b386380a214328d68) GPL: OK (sha256: 8177f97513213526df2cf6184d8ff986c675afb514d4e68a404010521b880643) BSD-2-Clause: OK (sha256: 6313108c23efffa36948f8b2cff1560a5935373b527b0e1a837cc77e6ed1bacd) >>> espeak 1.48.04 Collecting legal info License.txt: OK (sha256: 0bbca7a0ad5da4a6b0677f90d17817984edce7e42d300cae94ae93e4ccba9df7) >>> gcr 3.40.0 Collecting legal info COPYING: OK (sha256: 94b03f1a60a7fd5007149530626a895a6ef5a8b9342abfd56860c5f3956f5d23) >>> libgcrypt 1.10.3 Collecting legal info COPYING.LIB: OK (sha256: ca0061fc1381a3ab242310e4b3f56389f28e3d460eb2fd822ed7a21c6f030532) >>> libgpg-error 1.47 Collecting legal info COPYING: OK (sha256: 231f7edcc7352d7734a96eef0b8030f77982678c516876fcb81e25b32d68564c) COPYING.LIB: OK (sha256: a9bdde5616ecdd1e980b44f360600ee8783b1f99b8cc83a2beb163a0a390e861) >>> p11-kit 0.25.3 Collecting legal info COPYING: OK (sha256: 2e1ba993904df807a10c3eda1e5c272338edc35674b679773a8b3ad460731054) >>> gnupg2 2.4.4 Collecting legal info COPYING: OK (sha256: bc2d6664f6276fa0a72d57633b3ae68dc7dcb677b71018bf08c8e93e509f1357) >>> libassuan 2.5.6 Collecting legal info COPYING.LIB: OK (sha256: a9bdde5616ecdd1e980b44f360600ee8783b1f99b8cc83a2beb163a0a390e861) COPYING: OK (sha256: fc82ca8b6fdb18d4e3e85cfd8ab58d1bcd3f1b29abe782895abd91d64763f8e7) >>> libksba 1.6.5 Collecting legal info AUTHORS: OK (sha256: f9c59ea5a5e1dfdeebcd134e6a594c21eb088cc95f6653ee99ff2e187c105380) COPYING: OK (sha256: 6197b98c6bf69838c624809c509d84333de1bc847155168c0e84527446a27076) COPYING.GPLv2: OK (sha256: 8177f97513213526df2cf6184d8ff986c675afb514d4e68a404010521b880643) COPYING.GPLv3: OK (sha256: 0abbff814cd00e2b0b6d08395af2b419c1a92026c4b4adacbb65ccda45fa58cf) COPYING.LGPLv3: OK (sha256: da7eabb7bafdf7d3ae5e9f223aa5bdc1eece45ac569dc21b3b037520b4464768) >>> libnpth 1.6 Collecting legal info COPYING.LIB: OK (sha256: ce64d5f7b49ea6d80fdb6d4cdee6839d1a94274f7493dc797c3b55b65ec8e9ed) >>> libusb 1.0.26 Collecting legal info COPYING: OK (sha256: 5df07007198989c622f5d41de8d703e7bef3d0e79d62e24332ee739a452af62a) >>> graphicsmagick 1.3.40 Collecting legal info Copyright.txt: OK (sha256: 0a20e661de942ebe115a354d0ec6d1d42b93856ea765f813f350a5ce5024cdb7) >>> gstreamer1 1.22.9 Collecting legal info COPYING: OK (sha256: ad2eec519ebd4b5df86ea84dff24ae3bfa2edea846a703b58902dd221ae375db) >>> hyperfine 1.18.0 Collecting legal info LICENSE-APACHE: OK (sha256: c71d239df91726fc519c6eb72d318ec65820627232b2f796219e87dcf35d0ab4) LICENSE-MIT: OK (sha256: 1dfee18c2ff07ce551de4d6a1d2db158c0380746b488a7f0d08c8e0d3568b7c3) >>> host-rustc Collecting legal info >>> host-rust-bin 1.74.1 Collecting legal info LICENSE-APACHE: OK (sha256: 62c7a1e35f56406896d7aa7ca52d0cc0d272ac022b5d2796e7d6905db8a3636a) LICENSE-MIT: OK (sha256: 23f18e03dc49df91622fe2a76176497404e46ced8a715d9d2b67a7446571cca3) >>> ima-evm-utils 1.5 Collecting legal info COPYING: OK (sha256: 8177f97513213526df2cf6184d8ff986c675afb514d4e68a404010521b880643) >>> keyutils 1.6.3 Collecting legal info LICENCE.GPL: OK (sha256: f46409d4822b2457b39bbd0e7881eecb396130eb8320b7748fa7e9488970aa6d) LICENCE.LGPL: OK (sha256: 0d15593e3a8ad90917f8509b5ac1e4b5e5d196434a68029aa9dc0858a4a4c521) >>> tpm2-tss 3.2.2 Collecting legal info LICENSE: OK (sha256: 18c1bf4b1ba1fb2c4ffa7398c234d83c0d55475298e470ae1e5e3a8a8bd2e448) >>> host-imx-mkimage lf-6.1.36_2.1.0 Collecting legal info LICENSE: OK (sha256: 231f7edcc7352d7734a96eef0b8030f77982678c516876fcb81e25b32d68564c) >>> initscripts Collecting legal info >>> json-javascript 3d7767b6b1f3da363c625ff54e63bbf20e9e83ac Collecting legal info json2.js: OK (sha256: 925947d3d711c4441a9db20f51215fbf5c119d2a3b51cadb2c9031907d8014b5) >>> lft 3.91 Collecting legal info COPYING: OK (sha256: e3b7634630e6800eccca6ecafb5d40153d4f8f7a20e2b2399bf3c0ea92f44614) >>> libarchive 3.7.2 Collecting legal info COPYING: OK (sha256: b2cdf763345de2de34cebf54394df3c61a105c3b71288603c251f2fa638200ba) >>> lzo 2.10 Collecting legal info COPYING: OK (sha256: 8177f97513213526df2cf6184d8ff986c675afb514d4e68a404010521b880643) >>> libilbc 829b08c7902ceb87a261279fabb36b6d523c6e07 Collecting legal info gips_iLBClicense.pdf: OK (sha256: b7f4cbb4a12cd11a3d1aeda9bd17c99f59b054de4b3ee53045531cd2fa74dd2a) >>> libiqrf 0.1.2 Collecting legal info src/iqrf.c: OK (sha256: 11e0700d7c23604d86fa1e7c54c7caa778d79eeb0035be8f80b5a552224ef015) >>> liblinear 2.45 Collecting legal info COPYRIGHT: OK (sha256: d49b7898fd9ea7c29f0478e8c409ee7c0f621533d5eca7b7912e80391dc564e3) >>> libmicrohttpd 0.9.77 Collecting legal info COPYING: OK (sha256: 7399547209438c93f9b90297954698773d4846cea44cde5ca982c84c45952a3b) >>> libmnl 1.0.5 Collecting legal info COPYING: OK (sha256: dc626520dcd53a22f727af3ee42c770e56c97a64fe3adb063799d8ab032fe551) >>> libnetfilter_cttimeout 1.0.1 Collecting legal info COPYING: OK (sha256: 91df39d1816bfb17a4dda2d3d2c83b1f6f2d38d53e53e41e8f97ad5ac46a0cad) >>> libnfc 1.8.0 Collecting legal info COPYING: OK (sha256: 9ccf26cfe845e0eb8bb58053e47366e7ab6b697ae010f7650978d4b71b7d1fc1) >>> libudfread 1.1.2 Collecting legal info COPYING: OK (sha256: dc626520dcd53a22f727af3ee42c770e56c97a64fe3adb063799d8ab032fe551) >>> libupnp 1.14.18 Collecting legal info COPYING: OK (sha256: c8b99423cad48bb44e2cf52a496361404290865eac259a82da6d1e4331ececb3) >>> mediastreamer 4.4.8 Collecting legal info LICENSE.txt: OK (sha256: 1b3782ccad7b8614100cda30d3faf42fc39f2e97932908c543005053b654ca68) >>> ortp 4.4.8 Collecting legal info LICENSE.txt: OK (sha256: 1b3782ccad7b8614100cda30d3faf42fc39f2e97932908c543005053b654ca68) >>> host-meson-tools 0a02e2d34413f4bf9b15946352bc8c8ee13a5843 Collecting legal info COPYING: OK (sha256: 8177f97513213526df2cf6184d8ff986c675afb514d4e68a404010521b880643) >>> mfoc 0.10.7 Collecting legal info COPYING: OK (sha256: ab15fd526bd8dd18a9e77ebc139656bf4d33e97fc7238cd11bf60e2b9b8666c6) >>> minicom 2.9 Collecting legal info COPYING: OK (sha256: cf80a758014eefbf068afffe3d462fc34ff4f528527524d8e100329c42094e15) >>> netcalc 2.1.6 Collecting legal info LICENSE: OK (sha256: 745538f8d515d37af6f03442df982a8b211b129e8dc10d0195e33c4b42f8fe5f) >>> opencore-amr 0.1.5 Collecting legal info LICENSE: OK (sha256: 8b3f1762349248d444ab9acbafe73941254e36e1064954da56bb9ddbd5873ddb) >>> host-patchelf 0.13 Collecting legal info COPYING: OK (sha256: 8ceb4b9ee5adedde47b31e975c1d90c73ad27b6b165a1dcd80c7c545eb65b903) >>> rlwrap 0.46.1 Collecting legal info AUTHORS: OK (sha256: 656d25fab58016ac6ac11bb126709e4f860ea063d11795232eb55987172f78ff) COPYING: OK (sha256: 32b1062f7da84967e7019d01ab805935caa7ab7321a7ced0e30ebe75e5df1670) >>> sbc 2.0 Collecting legal info COPYING: OK (sha256: b499eddebda05a8859e32b820a64577d91f1de2b52efa2a1575a2cb4000bc259) COPYING.LIB: OK (sha256: ec60b993835e2c6b79e6d9226345f4e614e686eb57dc13b6420c15a33a8996e5) >>> skalibs 2.12.0.1 Collecting legal info COPYING: OK (sha256: 35126cb8f2ff2a6e359f7bfec46c49004ead6304d8248ba67dcdebcc7d377754) >>> tinc 1.0.36 Collecting legal info COPYING: OK (sha256: 3b37ffbf3459f2aceeef169aa65ee8b111ac1f8ba24a2a1b90b079678a9c7faa) COPYING.README: OK (sha256: 9bf76a8aa304d807df20bf3d221c21d259764be63e39b58f299b80ba3ac14b5b) WARNING: the Buildroot source code has not been saved WARNING: toolchain-external-linaro-arm-2018.05: cannot save license (TOOLCHAIN_EXTERNAL_LINARO_ARM_LICENSE_FILES not defined) WARNING: b43-firmware-5.100.138: cannot save license (B43_FIRMWARE_LICENSE_FILES not defined) Legal info produced in /home/buildroot/instance-0/output-1/legal-info make: Leaving directory '/home/buildroot/instance-0/buildroot'