CC firmware/lib/cryptolib/rsa.o CC firmware/lib/cryptolib/rsa_utility.o host/lib/signature_digest.c: In function 'SignatureBuf': host/lib/signature_digest.c:55:3: warning: 'PEM_read_RSAPrivateKey' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] 55 | if ((key = PEM_read_RSAPrivateKey(key_fp, NULL, NULL, NULL))) | ^~ In file included from host/lib/signature_digest.c:6: /home/buildroot/autobuild/instance-3/output-1/host/include/openssl/pem.h:70:11: note: declared here 70 | type *PEM_##readname##_##name(INTYPE *out, type **x, \ | ^~~~ /home/buildroot/autobuild/instance-3/output-1/host/include/openssl/pem.h:234:10: note: in expansion of macro 'PEM_read_cb_fnsig' 234 | attr PEM_read_cb_fnsig(name, type, FILE, read); | ^~~~~~~~~~~~~~~~~ /home/buildroot/autobuild/instance-3/output-1/host/include/openssl/pem.h:333:5: note: in expansion of macro 'DECLARE_PEM_read_fp_attr' 333 | DECLARE_PEM_read_fp_attr(attr, name, type) | ^~~~~~~~~~~~~~~~~~~~~~~~ /home/buildroot/autobuild/instance-3/output-1/host/include/openssl/pem.h:359:5: note: in expansion of macro 'DECLARE_PEM_read_attr' 359 | DECLARE_PEM_read_attr(attr, name, type) \ | ^~~~~~~~~~~~~~~~~~~~~ /home/buildroot/autobuild/instance-3/output-1/host/include/openssl/pem.h:447:1: note: in expansion of macro 'DECLARE_PEM_rw_cb_attr' 447 | DECLARE_PEM_rw_cb_attr(OSSL_DEPRECATEDIN_3_0, RSAPrivateKey, RSA) | ^~~~~~~~~~~~~~~~~~~~~~ host/lib/signature_digest.c:61:5: warning: 'RSA_private_encrypt' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] 61 | if (-1 == RSA_private_encrypt(signature_digest_len, /* Input length. */ | ^~ In file included from /home/buildroot/autobuild/instance-3/output-1/host/include/openssl/x509.h:36, from /home/buildroot/autobuild/instance-3/output-1/host/include/openssl/pem.h:23: /home/buildroot/autobuild/instance-3/output-1/host/include/openssl/rsa.h:285:5: note: declared here 285 | int RSA_private_encrypt(int flen, const unsigned char *from, unsigned char *to, | ^~~~~~~~~~~~~~~~~~~ host/lib/signature_digest.c:70:5: warning: 'RSA_free' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] 70 | RSA_free(key); | ^~~~~~~~ /home/buildroot/autobuild/instance-3/output-1/host/include/openssl/rsa.h:293:28: note: declared here 293 | OSSL_DEPRECATEDIN_3_0 void RSA_free(RSA *r); | ^~~~~~~~ CC firmware/lib/cryptolib/sha1.o CC firmware/lib/cryptolib/sha256.o CC firmware/lib/cryptolib/sha512.o CC firmware/lib/cryptolib/sha_utility.o CC firmware/lib/stateful_util.o CC firmware/lib/vboot_api_firmware.o CC firmware/lib/vboot_common.o CC firmware/lib/vboot_firmware.o CC firmware/lib/region-fw.o CC firmware/lib/tpm_bootmode.o CC firmware/stub/vboot_api_stub_sf.o CC firmware/lib/crc8.o CC firmware/lib/utility.o CC firmware/lib/vboot_api_init.o CC firmware/lib/vboot_common_init.o CC firmware/lib/vboot_nvstorage.o CC firmware/lib/vboot_nvstorage_rollback.o CC firmware/lib/region-init.o CC firmware/lib/rollback_index.o CC firmware/lib/tpm_lite/tlcl.o CC firmware/stub/tpm_lite_stub.o CC firmware/stub/utility_stub.o firmware/stub/tpm_lite_stub.c: In function 'VbExTpmSendReceive': firmware/stub/tpm_lite_stub.c:239:3: warning: implicit declaration of function 'assert' [-Wimplicit-function-declaration] 239 | assert( | ^~~~~~ firmware/stub/tpm_lite_stub.c:28:1: note: 'assert' is defined in header ''; did you forget to '#include '? 27 | #include +++ |+#include 28 | CC firmware/stub/vboot_api_stub_init.o CC firmware/stub/vboot_api_stub_region.o CC firmware/lib/cgptlib/cgptlib.o CC firmware/lib/cgptlib/cgptlib_internal.o CC firmware/lib/cgptlib/crc32.o CC firmware/lib/gpt_misc.o CC firmware/lib/utility_string.o CC firmware/lib/vboot_api_kernel.o CC firmware/lib/vboot_audio.o firmware/lib/vboot_api_kernel.c: In function 'VbSelectAndLoadKernel': firmware/lib/vboot_api_kernel.c:1056:41: warning: taking address of packed member of 'struct VbSharedDataHeader' may result in an unaligned pointer value [-Waddress-of-packed-member] 1056 | tpm_status = RollbackKernelRead(&shared->kernel_version_tpm); | ^~~~~~~~~~~~~~~~~~~~~~~~~~~ CC firmware/lib/vboot_display.o CC firmware/lib/vboot_kernel.o CC firmware/lib/region-kernel.o CC firmware/stub/vboot_api_stub.o CC firmware/stub/vboot_api_stub_disk.o CC firmware/stub/vboot_api_stub_stream.o CC host/lib21/host_fw_preamble.o CC host/lib21/host_key.o CC host/lib21/host_keyblock.o CC host/lib21/host_misc.o CC host/lib21/host_signature.o CC firmware/2lib/2api.o host/lib21/host_key.c: In function 'vb2_private_key_free': host/lib21/host_key.c:79:17: warning: 'RSA_free' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] 79 | RSA_free(key->rsa_private_key); | ^~~~~~~~ In file included from /home/buildroot/autobuild/instance-3/output-1/host/include/openssl/x509.h:36, from /home/buildroot/autobuild/instance-3/output-1/host/include/openssl/pem.h:23, from host/lib21/host_key.c:10: /home/buildroot/autobuild/instance-3/output-1/host/include/openssl/rsa.h:293:28: note: declared here 293 | OSSL_DEPRECATEDIN_3_0 void RSA_free(RSA *r); | ^~~~~~~~ host/lib21/host_key.c: In function 'vb2_private_key_unpack': host/lib21/host_key.c:142:17: warning: 'd2i_RSAPrivateKey' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] 142 | key->rsa_private_key = d2i_RSAPrivateKey(0, &start, | ^~~ In file included from /home/buildroot/autobuild/instance-3/output-1/host/include/openssl/objects.h:21, from /home/buildroot/autobuild/instance-3/output-1/host/include/openssl/evp.h:43, from /home/buildroot/autobuild/instance-3/output-1/host/include/openssl/pem.h:22: /home/buildroot/autobuild/instance-3/output-1/host/include/openssl/asn1.h:314:16: note: declared here 314 | attr type *d2i_##name(type **a, const unsigned char **in, long len); \ | ^~~~ /home/buildroot/autobuild/instance-3/output-1/host/include/openssl/asn1.h:303:5: note: in expansion of macro 'DECLARE_ASN1_ENCODE_FUNCTIONS_only_attr' 303 | DECLARE_ASN1_ENCODE_FUNCTIONS_only_attr(attr, type, name) \ | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /home/buildroot/autobuild/instance-3/output-1/host/include/openssl/asn1.h:309:5: note: in expansion of macro 'DECLARE_ASN1_ENCODE_FUNCTIONS_attr' 309 | DECLARE_ASN1_ENCODE_FUNCTIONS_attr(attr, type, name, name) | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /home/buildroot/autobuild/instance-3/output-1/host/include/openssl/rsa.h:309:1: note: in expansion of macro 'DECLARE_ASN1_ENCODE_FUNCTIONS_name_attr' 309 | DECLARE_ASN1_ENCODE_FUNCTIONS_name_attr(OSSL_DEPRECATEDIN_3_0, | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ host/lib21/host_key.c: In function 'vb2_private_key_read_pem': host/lib21/host_key.c:203:9: warning: 'PEM_read_RSAPrivateKey' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] 203 | key->rsa_private_key = PEM_read_RSAPrivateKey(f, NULL, NULL, NULL); | ^~~ /home/buildroot/autobuild/instance-3/output-1/host/include/openssl/pem.h:70:11: note: declared here 70 | type *PEM_##readname##_##name(INTYPE *out, type **x, \ | ^~~~ /home/buildroot/autobuild/instance-3/output-1/host/include/openssl/pem.h:234:10: note: in expansion of macro 'PEM_read_cb_fnsig' 234 | attr PEM_read_cb_fnsig(name, type, FILE, read); | ^~~~~~~~~~~~~~~~~ /home/buildroot/autobuild/instance-3/output-1/host/include/openssl/pem.h:333:5: note: in expansion of macro 'DECLARE_PEM_read_fp_attr' 333 | DECLARE_PEM_read_fp_attr(attr, name, type) | ^~~~~~~~~~~~~~~~~~~~~~~~ /home/buildroot/autobuild/instance-3/output-1/host/include/openssl/pem.h:359:5: note: in expansion of macro 'DECLARE_PEM_read_attr' 359 | DECLARE_PEM_read_attr(attr, name, type) \ | ^~~~~~~~~~~~~~~~~~~~~ /home/buildroot/autobuild/instance-3/output-1/host/include/openssl/pem.h:447:1: note: in expansion of macro 'DECLARE_PEM_rw_cb_attr' 447 | DECLARE_PEM_rw_cb_attr(OSSL_DEPRECATEDIN_3_0, RSAPrivateKey, RSA) | ^~~~~~~~~~~~~~~~~~~~~~ host/lib21/host_key.c: In function 'vb2_private_key_write': host/lib21/host_key.c:254:17: warning: 'i2d_RSAPrivateKey' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] 254 | rsalen = i2d_RSAPrivateKey(key->rsa_private_key, &rsabuf); | ^~~~~~ /home/buildroot/autobuild/instance-3/output-1/host/include/openssl/asn1.h:315:14: note: declared here 315 | attr int i2d_##name(const type *a, unsigned char **out); | ^~~~ /home/buildroot/autobuild/instance-3/output-1/host/include/openssl/asn1.h:303:5: note: in expansion of macro 'DECLARE_ASN1_ENCODE_FUNCTIONS_only_attr' 303 | DECLARE_ASN1_ENCODE_FUNCTIONS_only_attr(attr, type, name) \ | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /home/buildroot/autobuild/instance-3/output-1/host/include/openssl/asn1.h:309:5: note: in expansion of macro 'DECLARE_ASN1_ENCODE_FUNCTIONS_attr' 309 | DECLARE_ASN1_ENCODE_FUNCTIONS_attr(attr, type, name, name) | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /home/buildroot/autobuild/instance-3/output-1/host/include/openssl/rsa.h:309:1: note: in expansion of macro 'DECLARE_ASN1_ENCODE_FUNCTIONS_name_attr' 309 | DECLARE_ASN1_ENCODE_FUNCTIONS_name_attr(OSSL_DEPRECATEDIN_3_0, | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ host/lib21/host_key.c: In function 'vb2_rsa_sig_alg': host/lib21/host_key.c:551:9: warning: 'RSA_get0_key' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] 551 | RSA_get0_key(rsa, &n, &e, NULL); | ^~~~~~~~~~~~ /home/buildroot/autobuild/instance-3/output-1/host/include/openssl/rsa.h:217:28: note: declared here 217 | OSSL_DEPRECATEDIN_3_0 void RSA_get0_key(const RSA *r, | ^~~~~~~~~~~~ host/lib21/host_signature.c: In function 'vb2_sign_data': host/lib21/host_signature.c:167:17: warning: 'RSA_private_encrypt' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] 167 | if (RSA_private_encrypt(sig_digest_size, | ^~ In file included from host/lib21/host_signature.c:8: /home/buildroot/autobuild/instance-3/output-1/host/include/openssl/rsa.h:285:5: note: declared here 285 | int RSA_private_encrypt(int flen, const unsigned char *from, unsigned char *to, | ^~~~~~~~~~~~~~~~~~~ CC firmware/2lib/2common.o CC firmware/2lib/2crc8.o CC firmware/2lib/2misc.o CC firmware/2lib/2nvstorage.o CC firmware/2lib/2rsa.o CC firmware/2lib/2secdata.o firmware/2lib/2secdata.c: In function 'vb2_secdata_init': firmware/2lib/2secdata.c:61:30: warning: taking address of packed member of 'struct vb2_shared_data' may result in an unaligned pointer value [-Waddress-of-packed-member] 61 | &sd->fw_version_secdata); | ^~~~~~~~~~~~~~~~~~~~~~~ CC firmware/2lib/2secdatak.o CC firmware/2lib/2sha1.o CC firmware/2lib/2sha256.o CC firmware/2lib/2sha512.o CC firmware/2lib/2sha_utility.o CC firmware/2lib/2tpm_bootmode.o CC firmware/2lib/2stub.o CC firmware/lib21/api.o CC firmware/lib21/common.o CC firmware/lib21/misc.o CC firmware/lib21/packed_key.o CC cgpt/cgpt.o CC cgpt/cgpt_find.o CC cgpt/cgpt_legacy.o CC cgpt/cgpt_nor.o CC cgpt/cmd_add.o cgpt/cgpt_find.c: In function 'gpt_search': cgpt/cgpt_find.c:132:39: warning: taking address of packed member of 'struct ' may result in an unaligned pointer value [-Waddress-of-packed-member] 132 | if (CGPT_OK != UTF16ToUTF8(entry->name, | ~~~~~^~~~~~ CC cgpt/cmd_boot.o CC cgpt/cmd_create.o CC cgpt/cmd_find.o CC cgpt/cmd_legacy.o CC cgpt/cmd_prioritize.o CC cgpt/cmd_repair.o CC cgpt/cmd_show.o RM libvboot_util.a AR libvboot_util.a CC cgpt/cgpt_wrapper.o CC gen/futility_cmds.o RM libvboot_util21.a AR libvboot_util21.a LDcgpt cgpt/cgpt LD futility/futility LD cgpt/cgpt_wrapper make[1]: Leaving directory '/home/buildroot/autobuild/instance-3/output-1/build/host-vboot-utils-bbdd62f9b030db7ad8eef789aaf58a7ff9a25656' >>> host-vboot-utils bbdd62f9b030db7ad8eef789aaf58a7ff9a25656 Installing to host directory PATH="/home/buildroot/autobuild/instance-3/output-1/host/bin:/home/buildroot/autobuild/instance-3/output-1/host/sbin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin" PKG_CONFIG="/home/buildroot/autobuild/instance-3/output-1/host/bin/pkg-config" PKG_CONFIG_SYSROOT_DIR="/" PKG_CONFIG_ALLOW_SYSTEM_CFLAGS=1 PKG_CONFIG_ALLOW_SYSTEM_LIBS=1 PKG_CONFIG_LIBDIR="/home/buildroot/autobuild/instance-3/output-1/host/lib/pkgconfig:/home/buildroot/autobuild/instance-3/output-1/host/share/pkgconfig" /usr/bin/make -j4 -C /home/buildroot/autobuild/instance-3/output-1/build/host-vboot-utils-bbdd62f9b030db7ad8eef789aaf58a7ff9a25656 DESTDIR=/home/buildroot/autobuild/instance-3/output-1/host futil_install cgpt_install devkeys_install make[1]: Entering directory '/home/buildroot/autobuild/instance-3/output-1/build/host-vboot-utils-bbdd62f9b030db7ad8eef789aaf58a7ff9a25656' Package liblzma was not found in the pkg-config search path. Perhaps you should add the directory containing `liblzma.pc' to the PKG_CONFIG_PATH environment variable Package 'liblzma', required by 'virtual:world', not found Package yaml-0.1 was not found in the pkg-config search path. Perhaps you should add the directory containing `yaml-0.1.pc' to the PKG_CONFIG_PATH environment variable Package 'yaml-0.1', required by 'virtual:world', not found INSTALL futility INSTALL CGPT INSTALL DEVKEYS make[1]: Leaving directory '/home/buildroot/autobuild/instance-3/output-1/build/host-vboot-utils-bbdd62f9b030db7ad8eef789aaf58a7ff9a25656' >>> Finalizing host directory >>> Finalizing target directory mkdir -p /home/buildroot/autobuild/instance-3/output-1/host/etc/meson sed -e "s%@TARGET_CFLAGS@%'-D_LARGEFILE_SOURCE', '-D_LARGEFILE64_SOURCE', '-D_FILE_OFFSET_BITS=64', '-Os', '-g0', '-D_FORTIFY_SOURCE=2'@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', '-Os', '-g0', '-D_FORTIFY_SOURCE=2'@PKG_TARGET_CXXFLAGS@%g" -e "s%@TARGET_FCFLAGS@%'-Os', '-g0'@PKG_TARGET_FCFLAGS@%g" -e "s%@TARGET_CC@%/home/buildroot/autobuild/instance-3/output-1/host/bin/aarch64_be-buildroot-linux-gnu-gcc%g" -e "s%@TARGET_CXX@%/bin/false%g" -e "s%@TARGET_AR@%/home/buildroot/autobuild/instance-3/output-1/host/bin/aarch64_be-buildroot-linux-gnu-gcc-ar%g" -e "s%@TARGET_FC@%/bin/false%g" -e "s%@TARGET_STRIP@%/bin/true%g" -e "s%@TARGET_ARCH@%aarch64%g" -e "s%@TARGET_CPU@%cortex-a53%g" -e "s%@TARGET_ENDIAN@%big%g" -e "s%@TARGET_FCFLAGS@%%g" -e "s%@TARGET_CFLAGS@%%g" -e "s%@TARGET_LDFLAGS@%%g" -e "s%@TARGET_CXXFLAGS@%%g" -e "s%@BR2_CMAKE@%/home/buildroot/autobuild/instance-3/output-1/host/bin/cmake%g" -e "s%@PKGCONF_HOST_BINARY@%/home/buildroot/autobuild/instance-3/output-1/host/bin/pkgconf%g" -e "s%@HOST_DIR@%/home/buildroot/autobuild/instance-3/output-1/host%g" -e "s%@STAGING_DIR@%/home/buildroot/autobuild/instance-3/output-1/host/aarch64_be-buildroot-linux-gnu/sysroot%g" -e "s%@STATIC@%false%g" /home/buildroot/autobuild/instance-3/buildroot/support/misc/cross-compilation.conf.in > /home/buildroot/autobuild/instance-3/output-1/host/etc/meson/cross-compilation.conf.in sed -e "s%@TARGET_CC@%/home/buildroot/autobuild/instance-3/output-1/host/bin/aarch64_be-buildroot-linux-gnu-gcc%g" -e "s%@TARGET_CXX@%/bin/false%g" -e "s%@TARGET_AR@%/home/buildroot/autobuild/instance-3/output-1/host/bin/aarch64_be-buildroot-linux-gnu-gcc-ar%g" -e "s%@TARGET_FC@%/bin/false%g" -e "s%@TARGET_STRIP@%/bin/true%g" -e "s%@TARGET_ARCH@%aarch64%g" -e "s%@TARGET_CPU@%cortex-a53%g" -e "s%@TARGET_ENDIAN@%big%g" -e "s%@TARGET_FCFLAGS@%'-Os', '-g0'%g" -e "s%@TARGET_CFLAGS@%'-D_LARGEFILE_SOURCE', '-D_LARGEFILE64_SOURCE', '-D_FILE_OFFSET_BITS=64', '-Os', '-g0', '-D_FORTIFY_SOURCE=2'%g" -e "s%@TARGET_LDFLAGS@%%g" -e "s%@TARGET_CXXFLAGS@%'-D_LARGEFILE_SOURCE', '-D_LARGEFILE64_SOURCE', '-D_FILE_OFFSET_BITS=64', '-Os', '-g0', '-D_FORTIFY_SOURCE=2'%g" -e "s%@BR2_CMAKE@%/home/buildroot/autobuild/instance-3/output-1/host/bin/cmake%g" -e "s%@PKGCONF_HOST_BINARY@%/home/buildroot/autobuild/instance-3/output-1/host/bin/pkgconf%g" -e "s%@HOST_DIR@%/home/buildroot/autobuild/instance-3/output-1/host%g" -e "s%@STAGING_DIR@%/home/buildroot/autobuild/instance-3/output-1/host/aarch64_be-buildroot-linux-gnu/sysroot%g" -e "s%@STATIC@%false%g" /home/buildroot/autobuild/instance-3/buildroot/support/misc/cross-compilation.conf.in > /home/buildroot/autobuild/instance-3/output-1/host/etc/meson/cross-compilation.conf /usr/bin/sed -i -e '/# GENERIC_SERIAL$/s~^.*#~#ttyS0::respawn:/sbin/getty -L ttyS0 115200 vt100 #~' /home/buildroot/autobuild/instance-3/output-1/target/etc/inittab /usr/bin/sed -i -e '/^[^#].*-o remount,rw \/$/s~^~#~' /home/buildroot/autobuild/instance-3/output-1/target/etc/inittab if grep -q CONFIG_ASH=y /home/buildroot/autobuild/instance-3/output-1/build/busybox-1.36.1/.config; then grep -qsE '^/bin/ash$' /home/buildroot/autobuild/instance-3/output-1/target/etc/shells || echo "/bin/ash" >> /home/buildroot/autobuild/instance-3/output-1/target/etc/shells; fi if grep -q CONFIG_HUSH=y /home/buildroot/autobuild/instance-3/output-1/build/busybox-1.36.1/.config; then grep -qsE '^/bin/hush$' /home/buildroot/autobuild/instance-3/output-1/target/etc/shells || echo "/bin/hush" >> /home/buildroot/autobuild/instance-3/output-1/target/etc/shells; fi rm -f /home/buildroot/autobuild/instance-3/output-1/target/usr/share/glib-2.0/schemas/*.xml /home/buildroot/autobuild/instance-3/output-1/target/usr/share/glib-2.0/schemas/*.dtd /home/buildroot/autobuild/instance-3/output-1/host/bin/glib-compile-schemas /home/buildroot/autobuild/instance-3/output-1/host/aarch64_be-buildroot-linux-gnu/sysroot/usr/share/glib-2.0/schemas --targetdir=/home/buildroot/autobuild/instance-3/output-1/target/usr/share/glib-2.0/schemas No schema files found: doing nothing. mkdir -p /home/buildroot/autobuild/instance-3/output-1/target/etc echo "buildroot" > /home/buildroot/autobuild/instance-3/output-1/target/etc/hostname /usr/bin/sed -i -e '$a \127.0.1.1\tbuildroot' -e '/^127.0.1.1/d' /home/buildroot/autobuild/instance-3/output-1/target/etc/hosts mkdir -p /home/buildroot/autobuild/instance-3/output-1/target/etc echo "Welcome to Buildroot" > /home/buildroot/autobuild/instance-3/output-1/target/etc/issue /usr/bin/sed -i -e s,^root:[^:]*:,root:"*":, /home/buildroot/autobuild/instance-3/output-1/target/etc/shadow grep -qsE '^/bin/sh$' /home/buildroot/autobuild/instance-3/output-1/target/etc/shells || echo "/bin/sh" >> /home/buildroot/autobuild/instance-3/output-1/target/etc/shells if [ -x /home/buildroot/autobuild/instance-3/output-1/target/sbin/swapon -a -x /home/buildroot/autobuild/instance-3/output-1/target/sbin/swapoff ]; then /usr/bin/sed -i -e '/^#.*\/sbin\/swap/s/^#\+[[:blank:]]*//' /home/buildroot/autobuild/instance-3/output-1/target/etc/inittab; else /usr/bin/sed -i -e '/^[^#].*\/sbin\/swap/s/^/#/' /home/buildroot/autobuild/instance-3/output-1/target/etc/inittab; fi rm -rf /home/buildroot/autobuild/instance-3/output-1/target/usr/include /home/buildroot/autobuild/instance-3/output-1/target/usr/share/aclocal \ /home/buildroot/autobuild/instance-3/output-1/target/usr/lib/pkgconfig /home/buildroot/autobuild/instance-3/output-1/target/usr/share/pkgconfig \ /home/buildroot/autobuild/instance-3/output-1/target/usr/lib/cmake /home/buildroot/autobuild/instance-3/output-1/target/usr/share/cmake \ /home/buildroot/autobuild/instance-3/output-1/target/usr/lib/rpm /home/buildroot/autobuild/instance-3/output-1/target/usr/doc find /home/buildroot/autobuild/instance-3/output-1/target/usr/{lib,share}/ -name '*.cmake' -print0 | xargs -0 rm -f find /home/buildroot/autobuild/instance-3/output-1/target/lib/ /home/buildroot/autobuild/instance-3/output-1/target/usr/lib/ /home/buildroot/autobuild/instance-3/output-1/target/usr/libexec/ \ \( -name '*.a' -o -name '*.la' -o -name '*.prl' \) -print0 | xargs -0 rm -f rm -rf /home/buildroot/autobuild/instance-3/output-1/target/usr/share/gdb rm -rf /home/buildroot/autobuild/instance-3/output-1/target/usr/share/bash-completion rm -rf /home/buildroot/autobuild/instance-3/output-1/target/etc/bash_completion.d rm -rf /home/buildroot/autobuild/instance-3/output-1/target/usr/share/zsh rm -rf /home/buildroot/autobuild/instance-3/output-1/target/usr/man /home/buildroot/autobuild/instance-3/output-1/target/usr/share/man rm -rf /home/buildroot/autobuild/instance-3/output-1/target/usr/info /home/buildroot/autobuild/instance-3/output-1/target/usr/share/info rm -rf /home/buildroot/autobuild/instance-3/output-1/target/usr/doc /home/buildroot/autobuild/instance-3/output-1/target/usr/share/doc rm -rf /home/buildroot/autobuild/instance-3/output-1/target/usr/share/gtk-doc rmdir /home/buildroot/autobuild/instance-3/output-1/target/usr/share 2>/dev/null || true rm -rf /home/buildroot/autobuild/instance-3/output-1/target/lib/debug /home/buildroot/autobuild/instance-3/output-1/target/usr/lib/debug find /home/buildroot/autobuild/instance-3/output-1/target -type f \( -perm /111 -o -name '*.so*' \) -not \( -name 'libpthread*.so*' -o -name 'ld-*.so*' -o -name '*.ko' \) -print0 | xargs -0 /bin/true 2>/dev/null || true find /home/buildroot/autobuild/instance-3/output-1/target \( -name 'ld-*.so*' -o -name 'libpthread*.so*' \) -print0 | xargs -0 -r /bin/true 2>/dev/null || true test -f /home/buildroot/autobuild/instance-3/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/autobuild/instance-3/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/autobuild/instance-3/output-1/target/etc ( \ echo "NAME=Buildroot"; \ echo "VERSION=2023.05-650-gff14f0ee5a"; \ echo "ID=buildroot"; \ echo "VERSION_ID=2023.08-git"; \ echo "PRETTY_NAME=\"Buildroot 2023.08-git\"" \ ) > /home/buildroot/autobuild/instance-3/output-1/target/usr/lib/os-release ln -sf ../usr/lib/os-release /home/buildroot/autobuild/instance-3/output-1/target/etc >>> Sanitizing RPATH in target tree PER_PACKAGE_DIR=/home/buildroot/autobuild/instance-3/output-1/per-package /home/buildroot/autobuild/instance-3/buildroot/support/scripts/fix-rpath target touch /home/buildroot/autobuild/instance-3/output-1/target/usr >>> Generating root filesystems common tables rm -rf /home/buildroot/autobuild/instance-3/output-1/build/buildroot-fs mkdir -p /home/buildroot/autobuild/instance-3/output-1/build/buildroot-fs printf ' - - input -1 * - - - Input device group\n - - kvm -1 * - - - kvm nodes\n\n' >> /home/buildroot/autobuild/instance-3/output-1/build/buildroot-fs/full_users_table.txt printf ' /bin/busybox f 4755 0 0 - - - - -\n\n' > /home/buildroot/autobuild/instance-3/output-1/build/buildroot-fs/full_devices_table.txt cat system/device_table.txt >> /home/buildroot/autobuild/instance-3/output-1/build/buildroot-fs/full_devices_table.txt >>> Generating filesystem image rootfs.yaffs2 mkdir -p /home/buildroot/autobuild/instance-3/output-1/images rm -rf /home/buildroot/autobuild/instance-3/output-1/build/buildroot-fs/yaffs2 mkdir -p /home/buildroot/autobuild/instance-3/output-1/build/buildroot-fs/yaffs2 rsync -auH --exclude=/THIS_IS_NOT_YOUR_ROOT_FILESYSTEM /home/buildroot/autobuild/instance-3/output-1/target/ /home/buildroot/autobuild/instance-3/output-1/build/buildroot-fs/yaffs2/target echo '#!/bin/sh' > /home/buildroot/autobuild/instance-3/output-1/build/buildroot-fs/yaffs2/fakeroot echo "set -e" >> /home/buildroot/autobuild/instance-3/output-1/build/buildroot-fs/yaffs2/fakeroot echo "chown -h -R 0:0 /home/buildroot/autobuild/instance-3/output-1/build/buildroot-fs/yaffs2/target" >> /home/buildroot/autobuild/instance-3/output-1/build/buildroot-fs/yaffs2/fakeroot PATH="/home/buildroot/autobuild/instance-3/output-1/host/bin:/home/buildroot/autobuild/instance-3/output-1/host/sbin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin" /home/buildroot/autobuild/instance-3/buildroot/support/scripts/mkusers /home/buildroot/autobuild/instance-3/output-1/build/buildroot-fs/full_users_table.txt /home/buildroot/autobuild/instance-3/output-1/build/buildroot-fs/yaffs2/target >> /home/buildroot/autobuild/instance-3/output-1/build/buildroot-fs/yaffs2/fakeroot echo "/home/buildroot/autobuild/instance-3/output-1/host/bin/makedevs -d /home/buildroot/autobuild/instance-3/output-1/build/buildroot-fs/full_devices_table.txt /home/buildroot/autobuild/instance-3/output-1/build/buildroot-fs/yaffs2/target" >> /home/buildroot/autobuild/instance-3/output-1/build/buildroot-fs/yaffs2/fakeroot printf ' rm -rf /home/buildroot/autobuild/instance-3/output-1/build/buildroot-fs/yaffs2/target/usr/lib/udev/hwdb.d/ /home/buildroot/autobuild/instance-3/output-1/build/buildroot-fs/yaffs2/target/etc/udev/hwdb.d/\n' >> /home/buildroot/autobuild/instance-3/output-1/build/buildroot-fs/yaffs2/fakeroot echo "find /home/buildroot/autobuild/instance-3/output-1/build/buildroot-fs/yaffs2/target/run/ -mindepth 1 -prune -print0 | xargs -0r rm -rf --" >> /home/buildroot/autobuild/instance-3/output-1/build/buildroot-fs/yaffs2/fakeroot echo "find /home/buildroot/autobuild/instance-3/output-1/build/buildroot-fs/yaffs2/target/tmp/ -mindepth 1 -prune -print0 | xargs -0r rm -rf --" >> /home/buildroot/autobuild/instance-3/output-1/build/buildroot-fs/yaffs2/fakeroot printf ' \n' >> /home/buildroot/autobuild/instance-3/output-1/build/buildroot-fs/yaffs2/fakeroot printf ' \n' >> /home/buildroot/autobuild/instance-3/output-1/build/buildroot-fs/yaffs2/fakeroot printf ' /home/buildroot/autobuild/instance-3/output-1/host/bin/mkyaffs2 --all-root /home/buildroot/autobuild/instance-3/output-1/build/buildroot-fs/yaffs2/target /home/buildroot/autobuild/instance-3/output-1/images/rootfs.yaffs2\n' >> /home/buildroot/autobuild/instance-3/output-1/build/buildroot-fs/yaffs2/fakeroot chmod a+x /home/buildroot/autobuild/instance-3/output-1/build/buildroot-fs/yaffs2/fakeroot PATH="/home/buildroot/autobuild/instance-3/output-1/host/bin:/home/buildroot/autobuild/instance-3/output-1/host/sbin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin" FAKEROOTDONTTRYCHOWN=1 /home/buildroot/autobuild/instance-3/output-1/host/bin/fakeroot -- /home/buildroot/autobuild/instance-3/output-1/build/buildroot-fs/yaffs2/fakeroot rootdir=/home/buildroot/autobuild/instance-3/output-1/build/buildroot-fs/yaffs2/target table='/home/buildroot/autobuild/instance-3/output-1/build/buildroot-fs/full_devices_table.txt' mkyaffs2 0.2.9: image building tool for YAFFS2. stage 1: scanning directory '/home/buildroot/autobuild/instance-3/output-1/build/buildroot-fs/yaffs2/target'... [*][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][done] scanning complete, total 849 objects. stage 2: creating image '/home/buildroot/autobuild/instance-3/output-1/images/rootfs.yaffs2' [ ] 1/849 0% [ ] 2/849 0% [ ] 3/849 0% [ ] 4/849 0% [ ] 5/849 0% [ ] 6/849 0% [ ] 7/849 0% [ ] 8/849 0% [ ] 9/849 1% [ ] 10/849 1% [ ] 11/849 1% [ ] 12/849 1% [ ] 13/849 1% [= ] 14/849 1% [= ] 15/849 1% [= ] 16/849 1% [= ] 17/849 2% [= ] 18/849 2% [= ] 19/849 2% [= ] 20/849 2% [= ] 21/849 2% [= ] 22/849 2% [= ] 23/849 2% [= ] 24/849 2% [= ] 25/849 2% [= ] 26/849 3% [== ] 27/849 3% [== ] 28/849 3% [== ] 29/849 3% [== ] 30/849 3% [== ] 31/849 3% [== ] 32/849 3% [== ] 33/849 3% [== ] 34/849 4% [== ] 35/849 4% [== ] 36/849 4% [== ] 37/849 4% [== ] 38/849 4% [== ] 39/849 4% [=== ] 40/849 4% [=== ] 41/849 4% [=== ] 42/849 4% [=== ] 43/849 5% [=== ] 44/849 5% [=== ] 45/849 5% [=== ] 46/849 5% [=== ] 47/849 5% [=== ] 48/849 5% [=== ] 49/849 5% [=== ] 50/849 5% [=== ] 51/849 6% [=== ] 52/849 6% [=== ] 53/849 6% [==== ] 54/849 6% [==== ] 55/849 6% [==== ] 56/849 6% [==== ] 57/849 6% [==== ] 58/849 6% [==== ] 59/849 6% [==== ] 60/849 7% [==== ] 61/849 7% [==== ] 62/849 7% [==== ] 63/849 7% [==== ] 64/849 7% [==== ] 65/849 7% [==== ] 66/849 7% [===== ] 67/849 7% [===== ] 68/849 8% [===== ] 69/849 8% [===== ] 70/849 8% [===== ] 71/849 8% [===== ] 72/849 8% [===== ] 73/849 8% [===== ] 74/849 8% [===== ] 75/849 8% [===== ] 76/849 8% [===== ] 77/849 9% [===== ] 78/849 9% [===== ] 79/849 9% [====== ] 80/849 9% [====== ] 81/849 9% [====== ] 82/849 9% [====== ] 83/849 9% [====== ] 84/849 9% [====== ] 85/849 10% [====== ] 86/849 10% [====== ] 87/849 10% [====== ] 88/849 10% [====== ] 89/849 10% [====== ] 90/849 10% [====== ] 91/849 10% [====== ] 92/849 10% [======= ] 93/849 10% [======= ] 94/849 11% [======= ] 95/849 11% [======= ] 96/849 11% [======= ] 97/849 11% [======= ] 98/849 11% [======= ] 99/849 11% [======= ] 100/849 11% [======= ] 101/849 11% [======= ] 102/849 12% [======= ] 103/849 12% [======= ] 104/849 12% [======= ] 105/849 12% [======= ] 106/849 12% [======== ] 107/849 12% [======== ] 108/849 12% [======== ] 109/849 12% [======== ] 110/849 12% [======== ] 111/849 13% [======== ] 112/849 13% [======== ] 113/849 13% [======== ] 114/849 13% [======== ] 115/849 13% [======== ] 116/849 13% [======== ] 117/849 13% [======== ] 118/849 13% [======== ] 119/849 14% [========= ] 120/849 14% [========= ] 121/849 14% [========= ] 122/849 14% [========= ] 123/849 14% [========= ] 124/849 14% [========= ] 125/849 14% [========= ] 126/849 14% [========= ] 127/849 14% [========= ] 128/849 15% [========= ] 129/849 15% [========= ] 130/849 15% [========= ] 131/849 15% [========= ] 132/849 15% [========== ] 133/849 15% [========== ] 134/849 15% [========== ] 135/849 15% [========== ] 136/849 16% [========== ] 137/849 16% [========== ] 138/849 16% [========== ] 139/849 16% [========== ] 140/849 16% [========== ] 141/849 16% [========== ] 142/849 16% [========== ] 143/849 16% [========== ] 144/849 16% [========== ] 145/849 17% [=========== ] 146/849 17% [=========== ] 147/849 17% [=========== ] 148/849 17% [=========== ] 149/849 17% [=========== ] 150/849 17% [=========== ] 151/849 17% [=========== ] 152/849 17% [=========== ] 153/849 18% [=========== ] 154/849 18% [=========== ] 155/849 18% [=========== ] 156/849 18% [=========== ] 157/849 18% [=========== ] 158/849 18% [=========== ] 159/849 18% [============ ] 160/849 18% [============ ] 161/849 18% [============ ] 162/849 19% [============ ] 163/849 19% [============ ] 164/849 19% [============ ] 165/849 19% [============ ] 166/849 19% [============ ] 167/849 19% [============ ] 168/849 19% [============ ] 169/849 19% [============ ] 170/849 20% [============ ] 171/849 20% [============ ] 172/849 20% [============= ] 173/849 20% [============= ] 174/849 20% [============= ] 175/849 20% [============= ] 176/849 20% [============= ] 177/849 20% [============= ] 178/849 20% [============= ] 179/849 21% [============= ] 180/849 21% [============= ] 181/849 21% [============= ] 182/849 21% [============= ] 183/849 21% [============= ] 184/849 21% [============= ] 185/849 21% [============== ] 186/849 21% [============== ] 187/849 22% [============== ] 188/849 22% [============== ] 189/849 22% [============== ] 190/849 22% [============== ] 191/849 22% [============== ] 192/849 22% [============== ] 193/849 22% [============== ] 194/849 22% [============== ] 195/849 22% [============== ] 196/849 23% [============== ] 197/849 23% [============== ] 198/849 23% [=============== ] 199/849 23% [=============== ] 200/849 23% [=============== ] 201/849 23% [=============== ] 202/849 23% [=============== ] 203/849 23% [=============== ] 204/849 24% [=============== ] 205/849 24% [=============== ] 206/849 24% [=============== ] 207/849 24% [=============== ] 208/849 24% [=============== ] 209/849 24% [=============== ] 210/849 24% [=============== ] 211/849 24% [=============== ] 212/849 24% [================ ] 213/849 25% [================ ] 214/849 25% [================ ] 215/849 25% [================ ] 216/849 25% [================ ] 217/849 25% [================ ] 218/849 25% [================ ] 219/849 25% [================ ] 220/849 25% [================ ] 221/849 26% [================ ] 222/849 26% [================ ] 223/849 26% [================ ] 224/849 26% [================ ] 225/849 26% [================= ] 226/849 26% [================= ] 227/849 26% [================= ] 228/849 26% [================= ] 229/849 26% [================= ] 230/849 27% [================= ] 231/849 27% [================= ] 232/849 27% [================= ] 233/849 27% [================= ] 234/849 27% [================= ] 235/849 27% [================= ] 236/849 27% [================= ] 237/849 27% [================= ] 238/849 28% [================== ] 239/849 28% [================== ] 240/849 28% [================== ] 241/849 28% [================== ] 242/849 28% [================== ] 243/849 28% [================== ] 244/849 28% [================== ] 245/849 28% [================== ] 246/849 28% [================== ] 247/849 29% [================== ] 248/849 29% [================== ] 249/849 29% [================== ] 250/849 29% [================== ] 251/849 29% [================== ] 252/849 29% [=================== ] 253/849 29% [=================== ] 254/849 29% [=================== ] 255/849 30% [=================== ] 256/849 30% [=================== ] 257/849 30% [=================== ] 258/849 30% [=================== ] 259/849 30% [=================== ] 260/849 30% [=================== ] 261/849 30% [=================== ] 262/849 30% [=================== ] 263/849 30% [=================== ] 264/849 31% [=================== ] 265/849 31% [==================== ] 266/849 31% [==================== ] 267/849 31% [==================== ] 268/849 31% [==================== ] 269/849 31% [==================== ] 270/849 31% [==================== ] 271/849 31% [==================== ] 272/849 32% [==================== ] 273/849 32% [==================== ] 274/849 32% [==================== ] 275/849 32% [==================== ] 276/849 32% [==================== ] 277/849 32% [==================== ] 278/849 32% [===================== ] 279/849 32% [===================== ] 280/849 32% [===================== ] 281/849 33% [===================== ] 282/849 33% [===================== ] 283/849 33% [===================== ] 284/849 33% [===================== ] 285/849 33% [===================== ] 286/849 33% [===================== ] 287/849 33% [===================== ] 288/849 33% [===================== ] 289/849 34% [===================== ] 290/849 34% [===================== ] 291/849 34% [====================== ] 292/849 34% [====================== ] 293/849 34% [====================== ] 294/849 34% [====================== ] 295/849 34% [====================== ] 296/849 34% [====================== ] 297/849 34% [====================== ] 298/849 35% [====================== ] 299/849 35% [====================== ] 300/849 35% [====================== ] 301/849 35% [====================== ] 302/849 35% [====================== ] 303/849 35% [====================== ] 304/849 35% [====================== ] 305/849 35% [======================= ] 306/849 36% [======================= ] 307/849 36% [======================= ] 308/849 36% [======================= ] 309/849 36% [======================= ] 310/849 36% [======================= ] 311/849 36% [======================= ] 312/849 36% [======================= ] 313/849 36% [======================= ] 314/849 36% [======================= ] 315/849 37% [======================= ] 316/849 37% [======================= ] 317/849 37% [======================= ] 318/849 37% [======================== ] 319/849 37% [======================== ] 320/849 37% [======================== ] 321/849 37% [======================== ] 322/849 37% [======================== ] 323/849 38% [======================== ] 324/849 38% [======================== ] 325/849 38% [======================== ] 326/849 38% [======================== ] 327/849 38% [======================== ] 328/849 38% [======================== ] 329/849 38% [======================== ] 330/849 38% [======================== ] 331/849 38% [========================= ] 332/849 39% [========================= ] 333/849 39% [========================= ] 334/849 39% [========================= ] 335/849 39% [========================= ] 336/849 39% [========================= ] 337/849 39% [========================= ] 338/849 39% [========================= ] 339/849 39% [========================= ] 340/849 40% [========================= ] 341/849 40% [========================= ] 342/849 40% [========================= ] 343/849 40% [========================= ] 344/849 40% [========================== ] 345/849 40% [========================== ] 346/849 40% [========================== ] 347/849 40% [========================== ] 348/849 40% [========================== ] 349/849 41% [========================== ] 350/849 41% [========================== ] 351/849 41% [========================== ] 352/849 41% [========================== ] 353/849 41% [========================== ] 354/849 41% [========================== ] 355/849 41% [========================== ] 356/849 41% [========================== ] 357/849 42% [========================== ] 358/849 42% [=========================== ] 359/849 42% [=========================== ] 360/849 42% [=========================== ] 361/849 42% [=========================== ] 362/849 42% [=========================== ] 363/849 42% [=========================== ] 364/849 42% [=========================== ] 365/849 42% [=========================== ] 366/849 43% [=========================== ] 367/849 43% [=========================== ] 368/849 43% [=========================== ] 369/849 43% [=========================== ] 370/849 43% [=========================== ] 371/849 43% [============================ ] 372/849 43% [============================ ] 373/849 43% [============================ ] 374/849 44% [============================ ] 375/849 44% [============================ ] 376/849 44% [============================ ] 377/849 44% [============================ ] 378/849 44% [============================ ] 379/849 44% [============================ ] 380/849 44% [============================ ] 381/849 44% [============================ ] 382/849 44% [============================ ] 383/849 45% [============================ ] 384/849 45% [============================= ] 385/849 45% [============================= ] 386/849 45% [============================= ] 387/849 45% [============================= ] 388/849 45% [============================= ] 389/849 45% [============================= ] 390/849 45% [============================= ] 391/849 46% [============================= ] 392/849 46% [============================= ] 393/849 46% [============================= ] 394/849 46% [============================= ] 395/849 46% [============================= ] 396/849 46% [============================= ] 397/849 46% [============================== ] 398/849 46% [============================== ] 399/849 46% [============================== ] 400/849 47% [============================== ] 401/849 47% [============================== ] 402/849 47% [============================== ] 403/849 47% [============================== ] 404/849 47% [============================== ] 405/849 47% [============================== ] 406/849 47% [============================== ] 407/849 47% [============================== ] 408/849 48% [============================== ] 409/849 48% [============================== ] 410/849 48% [============================== ] 411/849 48% [=============================== ] 412/849 48% [=============================== ] 413/849 48% [=============================== ] 414/849 48% [=============================== ] 415/849 48% [=============================== ] 416/849 48% [=============================== ] 417/849 49% [=============================== ] 418/849 49% [=============================== ] 419/849 49% [=============================== ] 420/849 49% [=============================== ] 421/849 49% [=============================== ] 422/849 49% [=============================== ] 423/849 49% [=============================== ] 424/849 49% [================================ ] 425/849 50% [================================ ] 426/849 50% [================================ ] 427/849 50% [================================ ] 428/849 50% [================================ ] 429/849 50% [================================ ] 430/849 50% [================================ ] 431/849 50% [================================ ] 432/849 50% [================================ ] 433/849 51% [================================ ] 434/849 51% [================================ ] 435/849 51% [================================ ] 436/849 51% [================================ ] 437/849 51% [================================= ] 438/849 51% [================================= ] 439/849 51% [================================= ] 440/849 51% [================================= ] 441/849 51% [================================= ] 442/849 52% [================================= ] 443/849 52% [================================= ] 444/849 52% [================================= ] 445/849 52% [================================= ] 446/849 52% [================================= ] 447/849 52% [================================= ] 448/849 52% [================================= ] 449/849 52% [================================= ] 450/849 53% [================================= ] 451/849 53% [================================== ] 452/849 53% [================================== ] 453/849 53% [================================== ] 454/849 53% [================================== ] 455/849 53% [================================== ] 456/849 53% [================================== ] 457/849 53% [================================== ] 458/849 53% [================================== ] 459/849 54% [================================== ] 460/849 54% [================================== ] 461/849 54% [================================== ] 462/849 54% [================================== ] 463/849 54% [================================== ] 464/849 54% [=================================== ] 465/849 54% [=================================== ] 466/849 54% [=================================== ] 467/849 55% [=================================== ] 468/849 55% [=================================== ] 469/849 55% [=================================== ] 470/849 55% [=================================== ] 471/849 55% [=================================== ] 472/849 55% [=================================== ] 473/849 55% [=================================== ] 474/849 55% [=================================== ] 475/849 55% [=================================== ] 476/849 56% [=================================== ] 477/849 56% [==================================== ] 478/849 56% [==================================== ] 479/849 56% [==================================== ] 480/849 56% [==================================== ] 481/849 56% [==================================== ] 482/849 56% [==================================== ] 483/849 56% [==================================== ] 484/849 57% [==================================== ] 485/849 57% [==================================== ] 486/849 57% [==================================== ] 487/849 57% [==================================== ] 488/849 57% [==================================== ] 489/849 57% [==================================== ] 490/849 57% [===================================== ] 491/849 57% [===================================== ] 492/849 57% [===================================== ] 493/849 58% [===================================== ] 494/849 58% [===================================== ] 495/849 58% [===================================== ] 496/849 58% [===================================== ] 497/849 58% [===================================== ] 498/849 58% [===================================== ] 499/849 58% [===================================== ] 500/849 58% [===================================== ] 501/849 59% [===================================== ] 502/849 59% [===================================== ] 503/849 59% [===================================== ] 504/849 59% [====================================== ] 505/849 59% [====================================== ] 506/849 59% [====================================== ] 507/849 59% [====================================== ] 508/849 59% [====================================== ] 509/849 59% [====================================== ] 510/849 60% [====================================== ] 511/849 60% [====================================== ] 512/849 60% [====================================== ] 513/849 60% [====================================== ] 514/849 60% [====================================== ] 515/849 60% [====================================== ] 516/849 60% [====================================== ] 517/849 60% [======================================= ] 518/849 61% [======================================= ] 519/849 61% [======================================= ] 520/849 61% [======================================= ] 521/849 61% [======================================= ] 522/849 61% [======================================= ] 523/849 61% [======================================= ] 524/849 61% [======================================= ] 525/849 61% [======================================= ] 526/849 61% [======================================= ] 527/849 62% [======================================= ] 528/849 62% [======================================= ] 529/849 62% [======================================= ] 530/849 62% [======================================== ] 531/849 62% [======================================== ] 532/849 62% [======================================== ] 533/849 62% [======================================== ] 534/849 62% [======================================== ] 535/849 63% [======================================== ] 536/849 63% [======================================== ] 537/849 63% [======================================== ] 538/849 63% [======================================== ] 539/849 63% [======================================== ] 540/849 63% [======================================== ] 541/849 63% [======================================== ] 542/849 63% [======================================== ] 543/849 63% [========================================= ] 544/849 64% [========================================= ] 545/849 64% [========================================= ] 546/849 64% [========================================= ] 547/849 64% [========================================= ] 548/849 64% [========================================= ] 549/849 64% [========================================= ] 550/849 64% [========================================= ] 551/849 64% [========================================= ] 552/849 65% [========================================= ] 553/849 65% [========================================= ] 554/849 65% [========================================= ] 555/849 65% [========================================= ] 556/849 65% [========================================= ] 557/849 65% [========================================== ] 558/849 65% [========================================== ] 559/849 65% [========================================== ] 560/849 65% [========================================== ] 561/849 66% [========================================== ] 562/849 66% [========================================== ] 563/849 66% [========================================== ] 564/849 66% [========================================== ] 565/849 66% [========================================== ] 566/849 66% [========================================== ] 567/849 66% [========================================== ] 568/849 66% [========================================== ] 569/849 67% [========================================== ] 570/849 67% [=========================================== ] 571/849 67% [=========================================== ] 572/849 67% [=========================================== ] 573/849 67% [=========================================== ] 574/849 67% [=========================================== ] 575/849 67% [=========================================== ] 576/849 67% [=========================================== ] 577/849 67% [=========================================== ] 578/849 68% [=========================================== ] 579/849 68% [=========================================== ] 580/849 68% [=========================================== ] 581/849 68% [=========================================== ] 582/849 68% [=========================================== ] 583/849 68% [============================================ ] 584/849 68% [============================================ ] 585/849 68% [============================================ ] 586/849 69% [============================================ ] 587/849 69% [============================================ ] 588/849 69% [============================================ ] 589/849 69% [============================================ ] 590/849 69% [============================================ ] 591/849 69% [============================================ ] 592/849 69% [============================================ ] 593/849 69% [============================================ ] 594/849 69% [============================================ ] 595/849 70% [============================================ ] 596/849 70% [============================================= ] 597/849 70% [============================================= ] 598/849 70% [============================================= ] 599/849 70% [============================================= ] 600/849 70% [============================================= ] 601/849 70% [============================================= ] 602/849 70% [============================================= ] 603/849 71% [============================================= ] 604/849 71% [============================================= ] 605/849 71% [============================================= ] 606/849 71% [============================================= ] 607/849 71% [============================================= ] 608/849 71% [============================================= ] 609/849 71% [============================================= ] 610/849 71% [============================================== ] 611/849 71% [============================================== ] 612/849 72% [============================================== ] 613/849 72% [============================================== ] 614/849 72% [============================================== ] 615/849 72% [============================================== ] 616/849 72% [============================================== ] 617/849 72% [============================================== ] 618/849 72% [============================================== ] 619/849 72% [============================================== ] 620/849 73% [============================================== ] 621/849 73% [============================================== ] 622/849 73% [============================================== ] 623/849 73% [=============================================== ] 624/849 73% [=============================================== ] 625/849 73% [=============================================== ] 626/849 73% [=============================================== ] 627/849 73% [=============================================== ] 628/849 73% [=============================================== ] 629/849 74% [=============================================== ] 630/849 74% [=============================================== ] 631/849 74% [=============================================== ] 632/849 74% [=============================================== ] 633/849 74% [=============================================== ] 634/849 74% [=============================================== ] 635/849 74% [=============================================== ] 636/849 74% [================================================ ] 637/849 75% [================================================ ] 638/849 75% [================================================ ] 639/849 75% [================================================ ] 640/849 75% [================================================ ] 641/849 75% [================================================ ] 642/849 75% [================================================ ] 643/849 75% [================================================ ] 644/849 75% [================================================ ] 645/849 75% [================================================ ] 646/849 76% [================================================ ] 647/849 76% [================================================ ] 648/849 76% [================================================ ] 649/849 76% [================================================ ] 650/849 76% [================================================= ] 651/849 76% [================================================= ] 652/849 76% [================================================= ] 653/849 76% [================================================= ] 654/849 77% [================================================= ] 655/849 77% [================================================= ] 656/849 77% [================================================= ] 657/849 77% [================================================= ] 658/849 77% [================================================= ] 659/849 77% [================================================= ] 660/849 77% [================================================= ] 661/849 77% [================================================= ] 662/849 77% [================================================= ] 663/849 78% [================================================== ] 664/849 78% [================================================== ] 665/849 78% [================================================== ] 666/849 78% [================================================== ] 667/849 78% [================================================== ] 668/849 78% [================================================== ] 669/849 78% [================================================== ] 670/849 78% [================================================== ] 671/849 79% [================================================== ] 672/849 79% [================================================== ] 673/849 79% [================================================== ] 674/849 79% [================================================== ] 675/849 79% [================================================== ] 676/849 79% [=================================================== ] 677/849 79% [=================================================== ] 678/849 79% [=================================================== ] 679/849 79% [=================================================== ] 680/849 80% [=================================================== ] 681/849 80% [=================================================== ] 682/849 80% [=================================================== ] 683/849 80% [=================================================== ] 684/849 80% [=================================================== ] 685/849 80% [=================================================== ] 686/849 80% [=================================================== ] 687/849 80% [=================================================== ] 688/849 81% [=================================================== ] 689/849 81% [==================================================== ] 690/849 81% [==================================================== ] 691/849 81% [==================================================== ] 692/849 81% [==================================================== ] 693/849 81% [==================================================== ] 694/849 81% [==================================================== ] 695/849 81% [==================================================== ] 696/849 81% [==================================================== ] 697/849 82% [==================================================== ] 698/849 82% [==================================================== ] 699/849 82% [==================================================== ] 700/849 82% [==================================================== ] 701/849 82% [==================================================== ] 702/849 82% [==================================================== ] 703/849 82% [===================================================== ] 704/849 82% [===================================================== ] 705/849 83% [===================================================== ] 706/849 83% [===================================================== ] 707/849 83% [===================================================== ] 708/849 83% [===================================================== ] 709/849 83% [===================================================== ] 710/849 83% [===================================================== ] 711/849 83% [===================================================== ] 712/849 83% [===================================================== ] 713/849 83% [===================================================== ] 714/849 84% [===================================================== ] 715/849 84% [===================================================== ] 716/849 84% [====================================================== ] 717/849 84% [====================================================== ] 718/849 84% [====================================================== ] 719/849 84% [====================================================== ] 720/849 84% [====================================================== ] 721/849 84% [====================================================== ] 722/849 85% [====================================================== ] 723/849 85% [====================================================== ] 724/849 85% [====================================================== ] 725/849 85% [====================================================== ] 726/849 85% [====================================================== ] 727/849 85% [====================================================== ] 728/849 85% [====================================================== ] 729/849 85% [======================================================= ] 730/849 85% [======================================================= ] 731/849 86% [======================================================= ] 732/849 86% [======================================================= ] 733/849 86% [======================================================= ] 734/849 86% [======================================================= ] 735/849 86% [======================================================= ] 736/849 86% [======================================================= ] 737/849 86% [======================================================= ] 738/849 86% [======================================================= ] 739/849 87% [======================================================= ] 740/849 87% [======================================================= ] 741/849 87% [======================================================= ] 742/849 87% [======================================================== ] 743/849 87% [======================================================== ] 744/849 87% [======================================================== ] 745/849 87% [======================================================== ] 746/849 87% [======================================================== ] 747/849 87% [======================================================== ] 748/849 88% [======================================================== ] 749/849 88% [======================================================== ] 750/849 88% [======================================================== ] 751/849 88% [======================================================== ] 752/849 88% [======================================================== ] 753/849 88% [======================================================== ] 754/849 88% [======================================================== ] 755/849 88% [======================================================== ] 756/849 89% [========================================================= ] 757/849 89% [========================================================= ] 758/849 89% [========================================================= ] 759/849 89% [========================================================= ] 760/849 89% [========================================================= ] 761/849 89% [========================================================= ] 762/849 89% [========================================================= ] 763/849 89% [========================================================= ] 764/849 89% [========================================================= ] 765/849 90% [========================================================= ] 766/849 90% [========================================================= ] 767/849 90% [========================================================= ] 768/849 90% [========================================================= ] 769/849 90% [========================================================== ] 770/849 90% [========================================================== ] 771/849 90% [========================================================== ] 772/849 90% [========================================================== ] 773/849 91% [========================================================== ] 774/849 91% [========================================================== ] 775/849 91% [========================================================== ] 776/849 91% [========================================================== ] 777/849 91% [========================================================== ] 778/849 91% [========================================================== ] 779/849 91% [========================================================== ] 780/849 91% [========================================================== ] 781/849 91% [========================================================== ] 782/849 92% [=========================================================== ] 783/849 92% [=========================================================== ] 784/849 92% [=========================================================== ] 785/849 92% [=========================================================== ] 786/849 92% [=========================================================== ] 787/849 92% [=========================================================== ] 788/849 92% [=========================================================== ] 789/849 92% [=========================================================== ] 790/849 93% [=========================================================== ] 791/849 93% [=========================================================== ] 792/849 93% [=========================================================== ] 793/849 93% [=========================================================== ] 794/849 93% [=========================================================== ] 795/849 93% [============================================================ ] 796/849 93% [============================================================ ] 797/849 93% [============================================================ ] 798/849 93% [============================================================ ] 799/849 94% [============================================================ ] 800/849 94% [============================================================ ] 801/849 94% [============================================================ ] 802/849 94% [============================================================ ] 803/849 94% [============================================================ ] 804/849 94% [============================================================ ] 805/849 94% [============================================================ ] 806/849 94% [============================================================ ] 807/849 95% [============================================================ ] 808/849 95% [============================================================ ] 809/849 95% [============================================================= ] 810/849 95% [============================================================= ] 811/849 95% [============================================================= ] 812/849 95% [============================================================= ] 813/849 95% [============================================================= ] 814/849 95% [============================================================= ] 815/849 95% [============================================================= ] 816/849 96% [============================================================= ] 817/849 96% [============================================================= ] 818/849 96% [============================================================= ] 819/849 96% [============================================================= ] 820/849 96% [============================================================= ] 821/849 96% [============================================================= ] 822/849 96% [============================================================== ] 823/849 96% [============================================================== ] 824/849 97% [============================================================== ] 825/849 97% [============================================================== ] 826/849 97% [============================================================== ] 827/849 97% [============================================================== ] 828/849 97% [============================================================== ] 829/849 97% [============================================================== ] 830/849 97% [============================================================== ] 831/849 97% [============================================================== ] 832/849 97% [============================================================== ] 833/849 98% [============================================================== ] 834/849 98% [============================================================== ] 835/849 98% [=============================================================== ] 836/849 98% [=============================================================== ] 837/849 98% [=============================================================== ] 838/849 98% [=============================================================== ] 839/849 98% [=============================================================== ] 840/849 98% [=============================================================== ] 841/849 99% [=============================================================== ] 842/849 99% [=============================================================== ] 843/849 99% [=============================================================== ] 844/849 99% [=============================================================== ] 845/849 99% [=============================================================== ] 846/849 99% [=============================================================== ] 847/849 99% [=============================================================== ] 848/849 99% [================================================================] 849/849 100% operation complete, 849 objects in 17019 NAND pages. ln -snf /home/buildroot/autobuild/instance-3/output-1/host/aarch64_be-buildroot-linux-gnu/sysroot /home/buildroot/autobuild/instance-3/output-1/staging make: Leaving directory '/home/buildroot/autobuild/instance-3/buildroot' make: Entering directory '/home/buildroot/autobuild/instance-3/buildroot' >>> Buildroot 2023.05-650-gff14f0ee5a Collecting legal info COPYING: OK (sha256: 9755181e27175cb3510b4da8629caa406fb355a19aa8e7d55f06bf8ab33323c4) >>> toolchain-buildroot Collecting legal info >>> host-gcc-final 12.3.0 Collecting legal info >>> glibc 2.37-2-g9f8513dc64119a424b312db97cef5d87d376defa Collecting legal info COPYING: OK (sha256: 8177f97513213526df2cf6184d8ff986c675afb514d4e68a404010521b880643) COPYING.LIB: OK (sha256: dc626520dcd53a22f727af3ee42c770e56c97a64fe3adb063799d8ab032fe551) LICENSES: OK (sha256: b33d0bd9f685b46853548814893a6135e74430d12f6d94ab3eba42fc591f83bc) >>> host-bison 3.8.2 Collecting legal info COPYING: OK (sha256: 3972dc9744f6499f0f9b2dbf76696f2ae7ad8af9b23dde66d6af86c9dfb36986) >>> host-m4 1.4.19 Collecting legal info COPYING: OK (sha256: 3972dc9744f6499f0f9b2dbf76696f2ae7ad8af9b23dde66d6af86c9dfb36986) >>> host-skeleton Collecting legal info >>> host-gawk 5.2.2 Collecting legal info COPYING: OK (sha256: 8ceb4b9ee5adedde47b31e975c1d90c73ad27b6b165a1dcd80c7c545eb65b903) >>> host-gcc-initial 12.3.0 Collecting legal info >>> host-binutils 2.39 Collecting legal info COPYING3: OK (sha256: 8ceb4b9ee5adedde47b31e975c1d90c73ad27b6b165a1dcd80c7c545eb65b903) COPYING.LIB: OK (sha256: 56bdea73b6145ef6ac5259b3da390b981d840c24cb03b8e1cbc678de7ecfa18d) >>> host-gmp 6.2.1 Collecting legal info COPYING.LESSERv3: OK (sha256: a853c2ffec17057872340eee242ae4d96cbf2b520ae27d903e1b2fef1a5f9d1c) COPYINGv2: OK (sha256: 8177f97513213526df2cf6184d8ff986c675afb514d4e68a404010521b880643) >>> host-mpc 1.2.1 Collecting legal info COPYING.LESSER: OK (sha256: da7eabb7bafdf7d3ae5e9f223aa5bdc1eece45ac569dc21b3b037520b4464768) >>> host-mpfr 4.1.1 Collecting legal info COPYING.LESSER: OK (sha256: e3a994d82e644b03a792a930f574002658412f62407f5fee083f2555c5f23118) >>> linux-headers 6.4.7 Collecting legal info COPYING: OK (sha256: fb5a425bd3b3cd6071a3a9aff9909a859e7c1158d54d32e07658398cd67eb6a0) LICENSES/preferred/GPL-2.0: OK (sha256: f6b78c087c3ebdf0f3c13415070dd480a3f35d8fc76f3d02180a407c1c812f79) LICENSES/exceptions/Linux-syscall-note: OK (sha256: 8e378ab93586eb55135d3bc119cce787f7324f48394777d00c34fa3d0be3303f) >>> skeleton Collecting legal info >>> skeleton-init-sysv Collecting legal info >>> skeleton-init-common Collecting legal info >>> toolchain Collecting legal info >>> busybox 1.36.1 Collecting legal info LICENSE: OK (sha256: bbfc9843646d483c334664f651c208b9839626891d8f17604db2146962f43548) archival/libarchive/bz/LICENSE: OK (sha256: b5a136ed67798e51fe2e0ca0b2a21cb01b904ff0c9f7d563a6292e276607e58f) >>> kmod 30 Collecting legal info libkmod/COPYING: OK (sha256: 6095e9ffa777dd22839f7801aa845b31c9ed07f3d6bf8a26dc5d2dec8ccc0ef3) >>> host-pkgconf 1.6.3 Collecting legal info COPYING: OK (sha256: 07ee94b50a41ee3fc4e13a9b9c60b26fc28488494c465639f7e5f07a3952ec04) >>> openssl Collecting legal info >>> libopenssl 3.0.9 Collecting legal info LICENSE.txt: OK (sha256: 7d5450cb2d142651b8afa315b5f238efc805dad827d91ba367d8516bc9d49e7a) >>> zlib Collecting legal info >>> libzlib 1.2.13 Collecting legal info LICENSE: OK (sha256: 845efc77857d485d91fb3e0b884aaa929368c717ae8186b66fe1ed2495753243) >>> util-linux 2.39.1 Collecting legal info README.licensing: OK (sha256: 64dfeae1519bf0e27563d905a71264310fb6a8fa74e5cf99bb36e4d30d7ef455) 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.42 Collecting legal info LICENCE: OK (sha256: 87d884eceb7fc54611470ce9f74280d28612b0c877adfc767e9676892a638987) >>> udev Collecting legal info >>> eudev 3.2.12 Collecting legal info COPYING: OK (sha256: ab15fd526bd8dd18a9e77ebc139656bf4d33e97fc7238cd11bf60e2b9b8666c6) >>> host-gperf 3.1 Collecting legal info COPYING: OK (sha256: 8ceb4b9ee5adedde47b31e975c1d90c73ad27b6b165a1dcd80c7c545eb65b903) >>> util-linux-libs 2.39.1 Collecting legal info README.licensing: OK (sha256: 64dfeae1519bf0e27563d905a71264310fb6a8fa74e5cf99bb36e4d30d7ef455) Documentation/licenses/COPYING.BSD-3-Clause: OK (sha256: 9b718a9460fed5952466421235bc79eb49d4e9eacc920d7a9dd6285ab8fd6c6d) Documentation/licenses/COPYING.LGPL-2.1-or-later: OK (sha256: dc626520dcd53a22f727af3ee42c770e56c97a64fe3adb063799d8ab032fe551) >>> cmocka 1.1.5 Collecting legal info COPYING: OK (sha256: cfc7749b96f63bd31c3c42b5c471bf756814053e847c10f3eb003417bc523d30) >>> host-cmake 3.27.1 Collecting legal info Copyright.txt: OK (sha256: 4a01ccf2dc580ba570d02bc015bbe0ec92f1f318717aae9540ba841ba7946756) >>> expat 2.5.0 Collecting legal info COPYING: OK (sha256: 122f2c27000472a201d337b9b31f7eb2b52d091b02857061a8880371612d9534) >>> initscripts Collecting legal info >>> jasper 2.0.33 Collecting legal info LICENSE: OK (sha256: 4ad1bb42aff888c4403d792e6e2c5f1716d6c279fea70b296333c9d577d30b81) >>> libb2 0.98.1 Collecting legal info COPYING: OK (sha256: 6a1ee543e5282cd9061881edf462e6fdab181f328da71fc2c9a6950a80e94d01) >>> host-autoconf 2.71 Collecting legal info COPYINGv3: OK (sha256: 3972dc9744f6499f0f9b2dbf76696f2ae7ad8af9b23dde66d6af86c9dfb36986) COPYING.EXCEPTION: OK (sha256: 1f1cde9fb68b9b3cff18c420894bec5bd4defacd700b7d13df54a887301e5350) >>> host-libtool 2.4.6 Collecting legal info COPYING: OK (sha256: 8177f97513213526df2cf6184d8ff986c675afb514d4e68a404010521b880643) libltdl/COPYING.LIB: OK (sha256: dc626520dcd53a22f727af3ee42c770e56c97a64fe3adb063799d8ab032fe551) >>> host-automake 1.16.5 Collecting legal info COPYING: OK (sha256: ab15fd526bd8dd18a9e77ebc139656bf4d33e97fc7238cd11bf60e2b9b8666c6) >>> libcurl 8.2.1 Collecting legal info COPYING: OK (sha256: b1d7feb949ea5023552029fbe0bf5db4f23c2f85e9b8e51e18536f0ecbf9c524) >>> libffi 3.4.4 Collecting legal info LICENSE: OK (sha256: 2c9c2acb9743e6b007b91350475308aee44691d96aa20eacef8e199988c8c388) >>> 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-libffi 3.4.4 Collecting legal info LICENSE: OK (sha256: 2c9c2acb9743e6b007b91350475308aee44691d96aa20eacef8e199988c8c388) >>> host-meson 1.2.0 Collecting legal info COPYING: OK (sha256: cfc7749b96f63bd31c3c42b5c471bf756814053e847c10f3eb003417bc523d30) >>> host-ninja 1.11.1.g95dee.kitware.jobserver-1 Collecting legal info COPYING: OK (sha256: eb7e9ab9690124c5c9f42bdc81383d886a3dede26345b6ed15bbad7caf81f7ea) >>> host-python-setuptools 68.0.0 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-python3 3.11.4 Collecting legal info LICENSE: OK (sha256: 3b2f81fe21d181c499c59a256c8e1968455d6689d269aa85373bfb6af41da3bf) >>> host-autoconf-archive 2023.02.20 Collecting legal info COPYING: OK (sha256: e6037104443f9a7829b2aa7c5370d0789a7bda3ca65a0b904cdc0c2e285d9195) COPYING.EXCEPTION: OK (sha256: 23ed0b84fa023bfa33433b498192cd08a3bfb1f4864a8ed791a84f3eb48b2dd2) >>> host-expat 2.5.0 Collecting legal info COPYING: OK (sha256: 122f2c27000472a201d337b9b31f7eb2b52d091b02857061a8880371612d9534) >>> host-zlib Collecting legal info >>> host-libzlib 1.2.13 Collecting legal info LICENSE: OK (sha256: 845efc77857d485d91fb3e0b884aaa929368c717ae8186b66fe1ed2495753243) >>> host-python-pypa-build 0.10.0 Collecting legal info LICENSE: OK (sha256: aaf9a29ca5907971ccf07de025375db34539a8d5eeebce20b46099805722106f) >>> host-python-packaging 23.1 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) >>> host-pcre2 10.42 Collecting legal info LICENCE: OK (sha256: 87d884eceb7fc54611470ce9f74280d28612b0c877adfc767e9676892a638987) >>> host-util-linux 2.39.1 Collecting legal info README.licensing: OK (sha256: 64dfeae1519bf0e27563d905a71264310fb6a8fa74e5cf99bb36e4d30d7ef455) 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) >>> libmicrohttpd 0.9.77 Collecting legal info COPYING: OK (sha256: 7399547209438c93f9b90297954698773d4846cea44cde5ca982c84c45952a3b) >>> libtool 2.4.6 Collecting legal info libltdl/COPYING.LIB: OK (sha256: dc626520dcd53a22f727af3ee42c770e56c97a64fe3adb063799d8ab032fe551) >>> libucl 0.8.1 Collecting legal info COPYING: OK (sha256: 1bf976835764c1d827e07472a0a75adb098682df56681878af05fc0db7439b03) >>> ncftp 3.2.6 Collecting legal info doc/LICENSE.txt: OK (sha256: 4fe2f063d25d79c49712a272ebb68e050c703eed9c66c80108427edfe3285580) >>> host-patchelf 0.13 Collecting legal info COPYING: OK (sha256: 8ceb4b9ee5adedde47b31e975c1d90c73ad27b6b165a1dcd80c7c545eb65b903) >>> slirp 4.7.0 Collecting legal info COPYRIGHT: OK (sha256: b28aecf4796a6a22054167f0a976de13d9db335669d37afd2dc7ea4c335e1e13) >>> tpm-tools 1.3.9.1 Collecting legal info LICENSE: OK (sha256: 7b47225a5b77cb7825efc6a4d7e0ac57864c790542cf92f5080ec2bf310c00e5) >>> trousers 0.3.15 Collecting legal info LICENSE: OK (sha256: 1ad596d12e7471549663c03e280b5b5d084a2e853fb86e4d766109818f9d7dae) >>> host-vboot-utils bbdd62f9b030db7ad8eef789aaf58a7ff9a25656 Collecting legal info LICENSE: OK (sha256: cb9dc8e96aedf9120b6757a60387db10f3c1a8e3fd97bb9d0f11327be5a7ed4d) >>> host-openssl Collecting legal info >>> host-libopenssl 3.0.9 Collecting legal info LICENSE.txt: OK (sha256: 7d5450cb2d142651b8afa315b5f238efc805dad827d91ba367d8516bc9d49e7a) >>> host-acl 2.3.1 Collecting legal info doc/COPYING: OK (sha256: a45a845012742796534f7e91fe623262ccfb99460a2bd04015bd28d66fba95b8) doc/COPYING.LGPL: OK (sha256: 01b1f9f2c8ee648a7a596a1abe8aa4ed7899b1c9e5551bda06da6e422b04aa55) >>> host-attr 2.5.1 Collecting legal info doc/COPYING: OK (sha256: 98f318493be6b08bff3cd295791cde06c54e17882a3c74a1ed245eaa02533d52) doc/COPYING.LGPL: OK (sha256: 5decad7e58d90d44335bf2f45ce27563bd911065c6a1a02dfa7647c4efee75c8) >>> host-fakeroot 1.32.1 Collecting legal info COPYING: OK (sha256: fc82ca8b6fdb18d4e3e85cfd8ab58d1bcd3f1b29abe782895abd91d64763f8e7) >>> host-makedevs Collecting legal info >>> host-mkpasswd Collecting legal info >>> host-yaffs2utils 0.2.9 Collecting legal info COPYING: OK (sha256: 8177f97513213526df2cf6184d8ff986c675afb514d4e68a404010521b880643) WARNING: the Buildroot source code has not been saved WARNING: gcc-final-12.3.0: cannot save license (HOST_GCC_FINAL_LICENSE_FILES not defined) WARNING: gcc-initial-12.3.0: cannot save license (HOST_GCC_INITIAL_LICENSE_FILES not defined) Legal info produced in /home/buildroot/autobuild/instance-3/output-1/legal-info make: Leaving directory '/home/buildroot/autobuild/instance-3/buildroot'