rm -rf /tmp/instance-5/output-1/target/etc/bash_completion.d rm -rf /tmp/instance-5/output-1/target/usr/share/zsh rm -rf /tmp/instance-5/output-1/target/usr/man /tmp/instance-5/output-1/target/usr/share/man rm -rf /tmp/instance-5/output-1/target/usr/info /tmp/instance-5/output-1/target/usr/share/info rm -rf /tmp/instance-5/output-1/target/usr/doc /tmp/instance-5/output-1/target/usr/share/doc rm -rf /tmp/instance-5/output-1/target/usr/share/gtk-doc rmdir /tmp/instance-5/output-1/target/usr/share 2>/dev/null || true rm -rf /tmp/instance-5/output-1/target/lib/debug /tmp/instance-5/output-1/target/usr/lib/debug find /tmp/instance-5/output-1/target -type f \( -perm /111 -o -name '*.so*' \) -not \( -name 'libpthread*.so*' -o -name 'ld-*.so*' -o -name '*.ko' \) -print0 | xargs -0 /bin/true 2>/dev/null || true find /tmp/instance-5/output-1/target \( -name 'ld-*.so*' -o -name 'libpthread*.so*' \) -print0 | xargs -0 -r /bin/true 2>/dev/null || true test -f /tmp/instance-5/output-1/target/etc/ld.so.conf && \ { echo "ERROR: we shouldn't have a /etc/ld.so.conf file"; exit 1; } || true test -d /tmp/instance-5/output-1/target/etc/ld.so.conf.d && \ { echo "ERROR: we shouldn't have a /etc/ld.so.conf.d directory"; exit 1; } || true mkdir -p /tmp/instance-5/output-1/target/etc ( \ echo "NAME=Buildroot"; \ echo "VERSION=2023.02-93-gd3051892eb"; \ echo "ID=buildroot"; \ echo "VERSION_ID=2023.05-git"; \ echo "PRETTY_NAME=\"Buildroot 2023.05-git\"" \ ) > /tmp/instance-5/output-1/target/usr/lib/os-release ln -sf ../usr/lib/os-release /tmp/instance-5/output-1/target/etc >>> Sanitizing RPATH in target tree PER_PACKAGE_DIR=/tmp/instance-5/output-1/per-package /tmp/instance-5/buildroot/support/scripts/fix-rpath target touch /tmp/instance-5/output-1/target/usr >>> Generating root filesystems common tables rm -rf /tmp/instance-5/output-1/build/buildroot-fs mkdir -p /tmp/instance-5/output-1/build/buildroot-fs printf ' - - sudo -1 - - - -\n\n' >> /tmp/instance-5/output-1/build/buildroot-fs/full_users_table.txt printf ' /bin/busybox f 4755 0 0 - - - - -\n /usr/bin/sudo f 4755 0 0 - - - - -\n\n' > /tmp/instance-5/output-1/build/buildroot-fs/full_devices_table.txt cat system/device_table.txt >> /tmp/instance-5/output-1/build/buildroot-fs/full_devices_table.txt >>> Generating filesystem image rootfs.cpio mkdir -p /tmp/instance-5/output-1/images rm -rf /tmp/instance-5/output-1/build/buildroot-fs/cpio mkdir -p /tmp/instance-5/output-1/build/buildroot-fs/cpio rsync -auH --exclude=/THIS_IS_NOT_YOUR_ROOT_FILESYSTEM /tmp/instance-5/output-1/target/ /tmp/instance-5/output-1/build/buildroot-fs/cpio/target echo '#!/bin/sh' > /tmp/instance-5/output-1/build/buildroot-fs/cpio/fakeroot echo "set -e" >> /tmp/instance-5/output-1/build/buildroot-fs/cpio/fakeroot echo "chown -h -R 0:0 /tmp/instance-5/output-1/build/buildroot-fs/cpio/target" >> /tmp/instance-5/output-1/build/buildroot-fs/cpio/fakeroot PATH="/tmp/instance-5/output-1/host/bin:/tmp/instance-5/output-1/host/sbin:/home/autobuild/make:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" /tmp/instance-5/buildroot/support/scripts/mkusers /tmp/instance-5/output-1/build/buildroot-fs/full_users_table.txt /tmp/instance-5/output-1/build/buildroot-fs/cpio/target >> /tmp/instance-5/output-1/build/buildroot-fs/cpio/fakeroot echo "/tmp/instance-5/output-1/host/bin/makedevs -d /tmp/instance-5/output-1/build/buildroot-fs/full_devices_table.txt /tmp/instance-5/output-1/build/buildroot-fs/cpio/target" >> /tmp/instance-5/output-1/build/buildroot-fs/cpio/fakeroot printf ' rm -rf /tmp/instance-5/output-1/build/buildroot-fs/cpio/target/usr/lib/udev/hwdb.d/ /tmp/instance-5/output-1/build/buildroot-fs/cpio/target/etc/udev/hwdb.d/\n' >> /tmp/instance-5/output-1/build/buildroot-fs/cpio/fakeroot printf ' if [ ! -e /tmp/instance-5/output-1/build/buildroot-fs/cpio/target/init ]; then /usr/bin/install -m 0755 fs/cpio/init /tmp/instance-5/output-1/build/buildroot-fs/cpio/target/init; fi\n mkdir -p /tmp/instance-5/output-1/build/buildroot-fs/cpio/target/dev\n mknod -m 0622 /tmp/instance-5/output-1/build/buildroot-fs/cpio/target/dev/console c 5 1\n' >> /tmp/instance-5/output-1/build/buildroot-fs/cpio/fakeroot echo "find /tmp/instance-5/output-1/build/buildroot-fs/cpio/target/run/ -mindepth 1 -prune -print0 | xargs -0r rm -rf --" >> /tmp/instance-5/output-1/build/buildroot-fs/cpio/fakeroot echo "find /tmp/instance-5/output-1/build/buildroot-fs/cpio/target/tmp/ -mindepth 1 -prune -print0 | xargs -0r rm -rf --" >> /tmp/instance-5/output-1/build/buildroot-fs/cpio/fakeroot printf ' \n' >> /tmp/instance-5/output-1/build/buildroot-fs/cpio/fakeroot printf ' \n' >> /tmp/instance-5/output-1/build/buildroot-fs/cpio/fakeroot printf ' cd /tmp/instance-5/output-1/build/buildroot-fs/cpio/target && find . | LC_ALL=C sort | cpio --quiet -o -H newc > /tmp/instance-5/output-1/images/rootfs.cpio\n' >> /tmp/instance-5/output-1/build/buildroot-fs/cpio/fakeroot chmod a+x /tmp/instance-5/output-1/build/buildroot-fs/cpio/fakeroot PATH="/tmp/instance-5/output-1/host/bin:/tmp/instance-5/output-1/host/sbin:/home/autobuild/make:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" FAKEROOTDONTTRYCHOWN=1 /tmp/instance-5/output-1/host/bin/fakeroot -- /tmp/instance-5/output-1/build/buildroot-fs/cpio/fakeroot rootdir=/tmp/instance-5/output-1/build/buildroot-fs/cpio/target table='/tmp/instance-5/output-1/build/buildroot-fs/full_devices_table.txt' PATH="/tmp/instance-5/output-1/host/bin:/tmp/instance-5/output-1/host/sbin:/home/autobuild/make:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" zstd -19 -z -f -T1 /tmp/instance-5/output-1/images/rootfs.cpio > /tmp/instance-5/output-1/images/rootfs.cpio.zst /tmp/instance-5/output-1/images/rootfs.cpio : 55.36% ( 261 MiB => 145 MiB, /tmp/instance-5/output-1/images/rootfs.cpio.zst) >>> Generating filesystem image rootfs.ext2 mkdir -p /tmp/instance-5/output-1/images rm -rf /tmp/instance-5/output-1/build/buildroot-fs/ext2 mkdir -p /tmp/instance-5/output-1/build/buildroot-fs/ext2 rsync -auH --exclude=/THIS_IS_NOT_YOUR_ROOT_FILESYSTEM /tmp/instance-5/output-1/target/ /tmp/instance-5/output-1/build/buildroot-fs/ext2/target echo '#!/bin/sh' > /tmp/instance-5/output-1/build/buildroot-fs/ext2/fakeroot echo "set -e" >> /tmp/instance-5/output-1/build/buildroot-fs/ext2/fakeroot echo "chown -h -R 0:0 /tmp/instance-5/output-1/build/buildroot-fs/ext2/target" >> /tmp/instance-5/output-1/build/buildroot-fs/ext2/fakeroot PATH="/tmp/instance-5/output-1/host/bin:/tmp/instance-5/output-1/host/sbin:/home/autobuild/make:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" /tmp/instance-5/buildroot/support/scripts/mkusers /tmp/instance-5/output-1/build/buildroot-fs/full_users_table.txt /tmp/instance-5/output-1/build/buildroot-fs/ext2/target >> /tmp/instance-5/output-1/build/buildroot-fs/ext2/fakeroot echo "/tmp/instance-5/output-1/host/bin/makedevs -d /tmp/instance-5/output-1/build/buildroot-fs/full_devices_table.txt /tmp/instance-5/output-1/build/buildroot-fs/ext2/target" >> /tmp/instance-5/output-1/build/buildroot-fs/ext2/fakeroot printf ' rm -rf /tmp/instance-5/output-1/build/buildroot-fs/ext2/target/usr/lib/udev/hwdb.d/ /tmp/instance-5/output-1/build/buildroot-fs/ext2/target/etc/udev/hwdb.d/\n' >> /tmp/instance-5/output-1/build/buildroot-fs/ext2/fakeroot echo "find /tmp/instance-5/output-1/build/buildroot-fs/ext2/target/run/ -mindepth 1 -prune -print0 | xargs -0r rm -rf --" >> /tmp/instance-5/output-1/build/buildroot-fs/ext2/fakeroot echo "find /tmp/instance-5/output-1/build/buildroot-fs/ext2/target/tmp/ -mindepth 1 -prune -print0 | xargs -0r rm -rf --" >> /tmp/instance-5/output-1/build/buildroot-fs/ext2/fakeroot printf ' \n' >> /tmp/instance-5/output-1/build/buildroot-fs/ext2/fakeroot printf ' \n' >> /tmp/instance-5/output-1/build/buildroot-fs/ext2/fakeroot printf ' rm -f /tmp/instance-5/output-1/images/rootfs.ext2\n /tmp/instance-5/output-1/host/sbin/mkfs.ext2 -d /tmp/instance-5/output-1/build/buildroot-fs/ext2/target -r 1 -N 0 -m 5 -L "rootfs" -I 256 -O ^64bit /tmp/instance-5/output-1/images/rootfs.ext2 "5G" || { ret=$?; echo "*** Maybe you need to increase the filesystem size (BR2_TARGET_ROOTFS_EXT2_SIZE)" 1>&2; exit $ret; }\n' >> /tmp/instance-5/output-1/build/buildroot-fs/ext2/fakeroot chmod a+x /tmp/instance-5/output-1/build/buildroot-fs/ext2/fakeroot PATH="/tmp/instance-5/output-1/host/bin:/tmp/instance-5/output-1/host/sbin:/home/autobuild/make:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" FAKEROOTDONTTRYCHOWN=1 /tmp/instance-5/output-1/host/bin/fakeroot -- /tmp/instance-5/output-1/build/buildroot-fs/ext2/fakeroot rootdir=/tmp/instance-5/output-1/build/buildroot-fs/ext2/target table='/tmp/instance-5/output-1/build/buildroot-fs/full_devices_table.txt' mke2fs 1.46.5 (30-Dec-2021) Creating regular file /tmp/instance-5/output-1/images/rootfs.ext2 Creating filesystem with 1310720 4k blocks and 327680 inodes Filesystem UUID: b1d1f184-1356-4b37-bbba-f51b40f6266e Superblock backups stored on blocks: 32768, 98304, 163840, 229376, 294912, 819200, 884736 Allocating group tables: 0/40 done Writing inode tables: 0/40 done Copying files into the device: done Writing superblocks and filesystem accounting information: 0/40 done PATH="/tmp/instance-5/output-1/host/bin:/tmp/instance-5/output-1/host/sbin:/home/autobuild/make:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" zstd -19 -z -f -T1 /tmp/instance-5/output-1/images/rootfs.ext2 > /tmp/instance-5/output-1/images/rootfs.ext2.zst /tmp/instance-5/output-1/images/rootfs.ext2 : 2.83% ( 5.00 GiB => 145 MiB, /tmp/instance-5/output-1/images/rootfs.ext2.zst) >>> Generating filesystem image rootfs.jffs2 mkdir -p /tmp/instance-5/output-1/images rm -rf /tmp/instance-5/output-1/build/buildroot-fs/jffs2 mkdir -p /tmp/instance-5/output-1/build/buildroot-fs/jffs2 rsync -auH --exclude=/THIS_IS_NOT_YOUR_ROOT_FILESYSTEM /tmp/instance-5/output-1/target/ /tmp/instance-5/output-1/build/buildroot-fs/jffs2/target echo '#!/bin/sh' > /tmp/instance-5/output-1/build/buildroot-fs/jffs2/fakeroot echo "set -e" >> /tmp/instance-5/output-1/build/buildroot-fs/jffs2/fakeroot echo "chown -h -R 0:0 /tmp/instance-5/output-1/build/buildroot-fs/jffs2/target" >> /tmp/instance-5/output-1/build/buildroot-fs/jffs2/fakeroot PATH="/tmp/instance-5/output-1/host/bin:/tmp/instance-5/output-1/host/sbin:/home/autobuild/make:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" /tmp/instance-5/buildroot/support/scripts/mkusers /tmp/instance-5/output-1/build/buildroot-fs/full_users_table.txt /tmp/instance-5/output-1/build/buildroot-fs/jffs2/target >> /tmp/instance-5/output-1/build/buildroot-fs/jffs2/fakeroot echo "/tmp/instance-5/output-1/host/bin/makedevs -d /tmp/instance-5/output-1/build/buildroot-fs/full_devices_table.txt /tmp/instance-5/output-1/build/buildroot-fs/jffs2/target" >> /tmp/instance-5/output-1/build/buildroot-fs/jffs2/fakeroot printf ' rm -rf /tmp/instance-5/output-1/build/buildroot-fs/jffs2/target/usr/lib/udev/hwdb.d/ /tmp/instance-5/output-1/build/buildroot-fs/jffs2/target/etc/udev/hwdb.d/\n' >> /tmp/instance-5/output-1/build/buildroot-fs/jffs2/fakeroot echo "find /tmp/instance-5/output-1/build/buildroot-fs/jffs2/target/run/ -mindepth 1 -prune -print0 | xargs -0r rm -rf --" >> /tmp/instance-5/output-1/build/buildroot-fs/jffs2/fakeroot echo "find /tmp/instance-5/output-1/build/buildroot-fs/jffs2/target/tmp/ -mindepth 1 -prune -print0 | xargs -0r rm -rf --" >> /tmp/instance-5/output-1/build/buildroot-fs/jffs2/fakeroot printf ' \n' >> /tmp/instance-5/output-1/build/buildroot-fs/jffs2/fakeroot printf ' \n' >> /tmp/instance-5/output-1/build/buildroot-fs/jffs2/fakeroot printf ' /tmp/instance-5/output-1/host/sbin/mkfs.jffs2 -e 0x4000 --with-xattr -l -n -d /tmp/instance-5/output-1/build/buildroot-fs/jffs2/target -o /tmp/instance-5/output-1/images/rootfs.jffs2.nosummary\n /tmp/instance-5/output-1/host/sbin/sumtool -e 0x4000 -l -n -i /tmp/instance-5/output-1/images/rootfs.jffs2.nosummary -o /tmp/instance-5/output-1/images/rootfs.jffs2\n rm /tmp/instance-5/output-1/images/rootfs.jffs2.nosummary\n' >> /tmp/instance-5/output-1/build/buildroot-fs/jffs2/fakeroot chmod a+x /tmp/instance-5/output-1/build/buildroot-fs/jffs2/fakeroot PATH="/tmp/instance-5/output-1/host/bin:/tmp/instance-5/output-1/host/sbin:/home/autobuild/make:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" FAKEROOTDONTTRYCHOWN=1 /tmp/instance-5/output-1/host/bin/fakeroot -- /tmp/instance-5/output-1/build/buildroot-fs/jffs2/fakeroot rootdir=/tmp/instance-5/output-1/build/buildroot-fs/jffs2/target table='/tmp/instance-5/output-1/build/buildroot-fs/full_devices_table.txt' >>> Generating filesystem image rootfs.yaffs2 mkdir -p /tmp/instance-5/output-1/images rm -rf /tmp/instance-5/output-1/build/buildroot-fs/yaffs2 mkdir -p /tmp/instance-5/output-1/build/buildroot-fs/yaffs2 rsync -auH --exclude=/THIS_IS_NOT_YOUR_ROOT_FILESYSTEM /tmp/instance-5/output-1/target/ /tmp/instance-5/output-1/build/buildroot-fs/yaffs2/target echo '#!/bin/sh' > /tmp/instance-5/output-1/build/buildroot-fs/yaffs2/fakeroot echo "set -e" >> /tmp/instance-5/output-1/build/buildroot-fs/yaffs2/fakeroot echo "chown -h -R 0:0 /tmp/instance-5/output-1/build/buildroot-fs/yaffs2/target" >> /tmp/instance-5/output-1/build/buildroot-fs/yaffs2/fakeroot PATH="/tmp/instance-5/output-1/host/bin:/tmp/instance-5/output-1/host/sbin:/home/autobuild/make:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" /tmp/instance-5/buildroot/support/scripts/mkusers /tmp/instance-5/output-1/build/buildroot-fs/full_users_table.txt /tmp/instance-5/output-1/build/buildroot-fs/yaffs2/target >> /tmp/instance-5/output-1/build/buildroot-fs/yaffs2/fakeroot echo "/tmp/instance-5/output-1/host/bin/makedevs -d /tmp/instance-5/output-1/build/buildroot-fs/full_devices_table.txt /tmp/instance-5/output-1/build/buildroot-fs/yaffs2/target" >> /tmp/instance-5/output-1/build/buildroot-fs/yaffs2/fakeroot printf ' rm -rf /tmp/instance-5/output-1/build/buildroot-fs/yaffs2/target/usr/lib/udev/hwdb.d/ /tmp/instance-5/output-1/build/buildroot-fs/yaffs2/target/etc/udev/hwdb.d/\n' >> /tmp/instance-5/output-1/build/buildroot-fs/yaffs2/fakeroot echo "find /tmp/instance-5/output-1/build/buildroot-fs/yaffs2/target/run/ -mindepth 1 -prune -print0 | xargs -0r rm -rf --" >> /tmp/instance-5/output-1/build/buildroot-fs/yaffs2/fakeroot echo "find /tmp/instance-5/output-1/build/buildroot-fs/yaffs2/target/tmp/ -mindepth 1 -prune -print0 | xargs -0r rm -rf --" >> /tmp/instance-5/output-1/build/buildroot-fs/yaffs2/fakeroot printf ' \n' >> /tmp/instance-5/output-1/build/buildroot-fs/yaffs2/fakeroot printf ' \n' >> /tmp/instance-5/output-1/build/buildroot-fs/yaffs2/fakeroot printf ' /tmp/instance-5/output-1/host/bin/mkyaffs2 --all-root /tmp/instance-5/output-1/build/buildroot-fs/yaffs2/target /tmp/instance-5/output-1/images/rootfs.yaffs2\n' >> /tmp/instance-5/output-1/build/buildroot-fs/yaffs2/fakeroot chmod a+x /tmp/instance-5/output-1/build/buildroot-fs/yaffs2/fakeroot PATH="/tmp/instance-5/output-1/host/bin:/tmp/instance-5/output-1/host/sbin:/home/autobuild/make:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" FAKEROOTDONTTRYCHOWN=1 /tmp/instance-5/output-1/host/bin/fakeroot -- /tmp/instance-5/output-1/build/buildroot-fs/yaffs2/fakeroot rootdir=/tmp/instance-5/output-1/build/buildroot-fs/yaffs2/target table='/tmp/instance-5/output-1/build/buildroot-fs/full_devices_table.txt' mkyaffs2 0.2.9: image building tool for YAFFS2. stage 1: scanning directory '/tmp/instance-5/output-1/build/buildroot-fs/yaffs2/target'... [*][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][/][-][\][|][done] scanning complete, total 994 objects. stage 2: creating image '/tmp/instance-5/output-1/images/rootfs.yaffs2' [ ] 1/994 0% [ ] 2/994 0% [ ] 3/994 0% [ ] 4/994 0% [ ] 5/994 0% [ ] 6/994 0% [ ] 7/994 0% [ ] 8/994 0% [ ] 9/994 0% [ ] 10/994 1% [ ] 11/994 1% [ ] 12/994 1% [ ] 13/994 1% [ ] 14/994 1% [ ] 15/994 1% [= ] 16/994 1% [= ] 17/994 1% [= ] 18/994 1% [= ] 19/994 1% [= ] 20/994 2% [= ] 21/994 2% [= ] 22/994 2% [= ] 23/994 2% [= ] 24/994 2% [= ] 25/994 2% [= ] 26/994 2% [= ] 27/994 2% [= ] 28/994 2% [= ] 29/994 2% [= ] 30/994 3% [= ] 31/994 3% [== ] 32/994 3% [== ] 33/994 3% [== ] 34/994 3% [== ] 35/994 3% [== ] 36/994 3% [== ] 37/994 3% [== ] 38/994 3% [== ] 39/994 3% [== ] 40/994 4% [== ] 41/994 4% [== ] 42/994 4% [== ] 43/994 4% [== ] 44/994 4% [== ] 45/994 4% [== ] 46/994 4% [=== ] 47/994 4% [=== ] 48/994 4% [=== ] 49/994 4% [=== ] 50/994 5% [=== ] 51/994 5% [=== ] 52/994 5% [=== ] 53/994 5% [=== ] 54/994 5% [=== ] 55/994 5% [=== ] 56/994 5% [=== ] 57/994 5% [=== ] 58/994 5% [=== ] 59/994 5% [=== ] 60/994 6% [=== ] 61/994 6% [=== ] 62/994 6% [==== ] 63/994 6% [==== ] 64/994 6% [==== ] 65/994 6% [==== ] 66/994 6% [==== ] 67/994 6% [==== ] 68/994 6% [==== ] 69/994 6% [==== ] 70/994 7% [==== ] 71/994 7% [==== ] 72/994 7% [==== ] 73/994 7% [==== ] 74/994 7% [==== ] 75/994 7% [==== ] 76/994 7% [==== ] 77/994 7% [===== ] 78/994 7% [===== ] 79/994 7% [===== ] 80/994 8% [===== ] 81/994 8% [===== ] 82/994 8% [===== ] 83/994 8% [===== ] 84/994 8% [===== ] 85/994 8% [===== ] 86/994 8% [===== ] 87/994 8% [===== ] 88/994 8% [===== ] 89/994 8% [===== ] 90/994 9% [===== ] 91/994 9% [===== ] 92/994 9% [===== ] 93/994 9% [====== ] 94/994 9% [====== ] 95/994 9% [====== ] 96/994 9% [====== ] 97/994 9% [====== ] 98/994 9% [====== ] 99/994 9% [====== ] 100/994 10% [====== ] 101/994 10% [====== ] 102/994 10% [====== ] 103/994 10% [====== ] 104/994 10% [====== ] 105/994 10% [====== ] 106/994 10% [====== ] 107/994 10% [====== ] 108/994 10% [======= ] 109/994 10% [======= ] 110/994 11% [======= ] 111/994 11% [======= ] 112/994 11% [======= ] 113/994 11% [======= ] 114/994 11% [======= ] 115/994 11% [======= ] 116/994 11% [======= ] 117/994 11% [======= ] 118/994 11% [======= ] 119/994 11% [======= ] 120/994 12% [======= ] 121/994 12% [======= ] 122/994 12% [======= ] 123/994 12% [======= ] 124/994 12% [======== ] 125/994 12% [======== ] 126/994 12% [======== ] 127/994 12% [======== ] 128/994 12% [======== ] 129/994 12% [======== ] 130/994 13% [======== ] 131/994 13% [======== ] 132/994 13% [======== ] 133/994 13% [======== ] 134/994 13% [======== ] 135/994 13% [======== ] 136/994 13% [======== ] 137/994 13% [======== ] 138/994 13% [======== ] 139/994 13% [========= ] 140/994 14% [========= ] 141/994 14% [========= ] 142/994 14% [========= ] 143/994 14% [========= ] 144/994 14% [========= ] 145/994 14% [========= ] 146/994 14% [========= ] 147/994 14% [========= ] 148/994 14% [========= ] 149/994 14% [========= ] 150/994 15% [========= ] 151/994 15% [========= ] 152/994 15% [========= ] 153/994 15% [========= ] 154/994 15% [========= ] 155/994 15% [========== ] 156/994 15% [========== ] 157/994 15% [========== ] 158/994 15% [========== ] 159/994 15% [========== ] 160/994 16% [========== ] 161/994 16% [========== ] 162/994 16% [========== ] 163/994 16% [========== ] 164/994 16% [========== ] 165/994 16% [========== ] 166/994 16% [========== ] 167/994 16% [========== ] 168/994 16% [========== ] 169/994 17% [========== ] 170/994 17% [=========== ] 171/994 17% [=========== ] 172/994 17% [=========== ] 173/994 17% [=========== ] 174/994 17% [=========== ] 175/994 17% [=========== ] 176/994 17% [=========== ] 177/994 17% [=========== ] 178/994 17% [=========== ] 179/994 18% [=========== ] 180/994 18% [=========== ] 181/994 18% [=========== ] 182/994 18% [=========== ] 183/994 18% [=========== ] 184/994 18% [=========== ] 185/994 18% [=========== ] 186/994 18% [============ ] 187/994 18% [============ ] 188/994 18% [============ ] 189/994 19% [============ ] 190/994 19% [============ ] 191/994 19% [============ ] 192/994 19% [============ ] 193/994 19% [============ ] 194/994 19% [============ ] 195/994 19% [============ ] 196/994 19% [============ ] 197/994 19% [============ ] 198/994 19% [============ ] 199/994 20% [============ ] 200/994 20% [============ ] 201/994 20% [============= ] 202/994 20% [============= ] 203/994 20% [============= ] 204/994 20% [============= ] 205/994 20% [============= ] 206/994 20% [============= ] 207/994 20% [============= ] 208/994 20% [============= ] 209/994 21% [============= ] 210/994 21% [============= ] 211/994 21% [============= ] 212/994 21% [============= ] 213/994 21% [============= ] 214/994 21% [============= ] 215/994 21% [============= ] 216/994 21% [============= ] 217/994 21% [============== ] 218/994 21% [============== ] 219/994 22% [============== ] 220/994 22% [============== ] 221/994 22% [============== ] 222/994 22% [============== ] 223/994 22% [============== ] 224/994 22% [============== ] 225/994 22% [============== ] 226/994 22% [============== ] 227/994 22% [============== ] 228/994 22% [============== ] 229/994 23% [============== ] 230/994 23% [============== ] 231/994 23% [============== ] 232/994 23% [=============== ] 233/994 23% [=============== ] 234/994 23% [=============== ] 235/994 23% [=============== ] 236/994 23% [=============== ] 237/994 23% [=============== ] 238/994 23% [=============== ] 239/994 24% [=============== ] 240/994 24% [=============== ] 241/994 24% [=============== ] 242/994 24% [=============== ] 243/994 24% [=============== ] 244/994 24% [=============== ] 245/994 24% [=============== ] 246/994 24% [=============== ] 247/994 24% [=============== ] 248/994 24% [================ ] 249/994 25% [================ ] 250/994 25% [================ ] 251/994 25% [================ ] 252/994 25% [================ ] 253/994 25% [================ ] 254/994 25% [================ ] 255/994 25% [================ ] 256/994 25% [================ ] 257/994 25% [================ ] 258/994 25% [================ ] 259/994 26% [================ ] 260/994 26% [================ ] 261/994 26% [================ ] 262/994 26% [================ ] 263/994 26% [================ ] 264/994 26% [================= ] 265/994 26% [================= ] 266/994 26% [================= ] 267/994 26% [================= ] 268/994 26% [================= ] 269/994 27% [================= ] 270/994 27% [================= ] 271/994 27% [================= ] 272/994 27% [================= ] 273/994 27% [================= ] 274/994 27% [================= ] 275/994 27% [================= ] 276/994 27% [================= ] 277/994 27% [================= ] 278/994 27% [================= ] 279/994 28% [================== ] 280/994 28% [================== ] 281/994 28% [================== ] 282/994 28% [================== ] 283/994 28% [================== ] 284/994 28% [================== ] 285/994 28% [================== ] 286/994 28% [================== ] 287/994 28% [================== ] 288/994 28% [================== ] 289/994 29% [================== ] 290/994 29% [================== ] 291/994 29% [================== ] 292/994 29% [================== ] 293/994 29% [================== ] 294/994 29% [================== ] 295/994 29% [=================== ] 296/994 29% [=================== ] 297/994 29% [=================== ] 298/994 29% [=================== ] 299/994 30% [=================== ] 300/994 30% [=================== ] 301/994 30% [=================== ] 302/994 30% [=================== ] 303/994 30% [=================== ] 304/994 30% [=================== ] 305/994 30% [=================== ] 306/994 30% [=================== ] 307/994 30% [=================== ] 308/994 30% [=================== ] 309/994 31% [=================== ] 310/994 31% [==================== ] 311/994 31% [==================== ] 312/994 31% [==================== ] 313/994 31% [==================== ] 314/994 31% [==================== ] 315/994 31% [==================== ] 316/994 31% [==================== ] 317/994 31% [==================== ] 318/994 31% [==================== ] 319/994 32% [==================== ] 320/994 32% [==================== ] 321/994 32% [==================== ] 322/994 32% [==================== ] 323/994 32% [==================== ] 324/994 32% [==================== ] 325/994 32% [==================== ] 326/994 32% [===================== ] 327/994 32% [===================== ] 328/994 32% [===================== ] 329/994 33% [===================== ] 330/994 33% [===================== ] 331/994 33% [===================== ] 332/994 33% [===================== ] 333/994 33% [===================== ] 334/994 33% [===================== ] 335/994 33% [===================== ] 336/994 33% [===================== ] 337/994 33% [===================== ] 338/994 34% [===================== ] 339/994 34% [===================== ] 340/994 34% [===================== ] 341/994 34% [====================== ] 342/994 34% [====================== ] 343/994 34% [====================== ] 344/994 34% [====================== ] 345/994 34% [====================== ] 346/994 34% [====================== ] 347/994 34% [====================== ] 348/994 35% [====================== ] 349/994 35% [====================== ] 350/994 35% [====================== ] 351/994 35% [====================== ] 352/994 35% [====================== ] 353/994 35% [====================== ] 354/994 35% [====================== ] 355/994 35% [====================== ] 356/994 35% [====================== ] 357/994 35% [======================= ] 358/994 36% [======================= ] 359/994 36% [======================= ] 360/994 36% [======================= ] 361/994 36% [======================= ] 362/994 36% [======================= ] 363/994 36% [======================= ] 364/994 36% [======================= ] 365/994 36% [======================= ] 366/994 36% [======================= ] 367/994 36% [======================= ] 368/994 37% [======================= ] 369/994 37% [======================= ] 370/994 37% [======================= ] 371/994 37% [======================= ] 372/994 37% [======================== ] 373/994 37% [======================== ] 374/994 37% [======================== ] 375/994 37% [======================== ] 376/994 37% [======================== ] 377/994 37% [======================== ] 378/994 38% [======================== ] 379/994 38% [======================== ] 380/994 38% [======================== ] 381/994 38% [======================== ] 382/994 38% [======================== ] 383/994 38% [======================== ] 384/994 38% [======================== ] 385/994 38% [======================== ] 386/994 38% [======================== ] 387/994 38% [======================== ] 388/994 39% [========================= ] 389/994 39% [========================= ] 390/994 39% [========================= ] 391/994 39% [========================= ] 392/994 39% [========================= ] 393/994 39% [========================= ] 394/994 39% [========================= ] 395/994 39% [========================= ] 396/994 39% [========================= ] 397/994 39% [========================= ] 398/994 40% [========================= ] 399/994 40% [========================= ] 400/994 40% [========================= ] 401/994 40% [========================= ] 402/994 40% [========================= ] 403/994 40% [========================== ] 404/994 40% [========================== ] 405/994 40% [========================== ] 406/994 40% [========================== ] 407/994 40% [========================== ] 408/994 41% [========================== ] 409/994 41% [========================== ] 410/994 41% [========================== ] 411/994 41% [========================== ] 412/994 41% [========================== ] 413/994 41% [========================== ] 414/994 41% [========================== ] 415/994 41% [========================== ] 416/994 41% [========================== ] 417/994 41% [========================== ] 418/994 42% [========================== ] 419/994 42% [=========================== ] 420/994 42% [=========================== ] 421/994 42% [=========================== ] 422/994 42% [=========================== ] 423/994 42% [=========================== ] 424/994 42% [=========================== ] 425/994 42% [=========================== ] 426/994 42% [=========================== ] 427/994 42% [=========================== ] 428/994 43% [=========================== ] 429/994 43% [=========================== ] 430/994 43% [=========================== ] 431/994 43% [=========================== ] 432/994 43% [=========================== ] 433/994 43% [=========================== ] 434/994 43% [============================ ] 435/994 43% [============================ ] 436/994 43% [============================ ] 437/994 43% [============================ ] 438/994 44% [============================ ] 439/994 44% [============================ ] 440/994 44% [============================ ] 441/994 44% [============================ ] 442/994 44% [============================ ] 443/994 44% [============================ ] 444/994 44% [============================ ] 445/994 44% [============================ ] 446/994 44% [============================ ] 447/994 44% [============================ ] 448/994 45% [============================ ] 449/994 45% [============================ ] 450/994 45% [============================= ] 451/994 45% [============================= ] 452/994 45% [============================= ] 453/994 45% [============================= ] 454/994 45% [============================= ] 455/994 45% [============================= ] 456/994 45% [============================= ] 457/994 45% [============================= ] 458/994 46% [============================= ] 459/994 46% [============================= ] 460/994 46% [============================= ] 461/994 46% [============================= ] 462/994 46% [============================= ] 463/994 46% [============================= ] 464/994 46% [============================= ] 465/994 46% [============================== ] 466/994 46% [============================== ] 467/994 46% [============================== ] 468/994 47% [============================== ] 469/994 47% [============================== ] 470/994 47% [============================== ] 471/994 47% [============================== ] 472/994 47% [============================== ] 473/994 47% [============================== ] 474/994 47% [============================== ] 475/994 47% [============================== ] 476/994 47% [============================== ] 477/994 47% [============================== ] 478/994 48% [============================== ] 479/994 48% [============================== ] 480/994 48% [============================== ] 481/994 48% [=============================== ] 482/994 48% [=============================== ] 483/994 48% [=============================== ] 484/994 48% [=============================== ] 485/994 48% [=============================== ] 486/994 48% [=============================== ] 487/994 48% [=============================== ] 488/994 49% [=============================== ] 489/994 49% [=============================== ] 490/994 49% [=============================== ] 491/994 49% [=============================== ] 492/994 49% [=============================== ] 493/994 49% [=============================== ] 494/994 49% [=============================== ] 495/994 49% [=============================== ] 496/994 49% [================================ ] 497/994 50% [================================ ] 498/994 50% [================================ ] 499/994 50% [================================ ] 500/994 50% [================================ ] 501/994 50% [================================ ] 502/994 50% [================================ ] 503/994 50% [================================ ] 504/994 50% [================================ ] 505/994 50% [================================ ] 506/994 50% [================================ ] 507/994 51% [================================ ] 508/994 51% [================================ ] 509/994 51% [================================ ] 510/994 51% [================================ ] 511/994 51% [================================ ] 512/994 51% [================================= ] 513/994 51% [================================= ] 514/994 51% [================================= ] 515/994 51% [================================= ] 516/994 51% [================================= ] 517/994 52% [================================= ] 518/994 52% [================================= ] 519/994 52% [================================= ] 520/994 52% [================================= ] 521/994 52% [================================= ] 522/994 52% [================================= ] 523/994 52% [================================= ] 524/994 52% [================================= ] 525/994 52% [================================= ] 526/994 52% [================================= ] 527/994 53% [================================= ] 528/994 53% [================================== ] 529/994 53% [================================== ] 530/994 53% [================================== ] 531/994 53% [================================== ] 532/994 53% [================================== ] 533/994 53% [================================== ] 534/994 53% [================================== ] 535/994 53% [================================== ] 536/994 53% [================================== ] 537/994 54% [================================== ] 538/994 54% [================================== ] 539/994 54% [================================== ] 540/994 54% [================================== ] 541/994 54% [================================== ] 542/994 54% [================================== ] 543/994 54% [=================================== ] 544/994 54% [=================================== ] 545/994 54% [=================================== ] 546/994 54% [=================================== ] 547/994 55% [=================================== ] 548/994 55% [=================================== ] 549/994 55% [=================================== ] 550/994 55% [=================================== ] 551/994 55% [=================================== ] 552/994 55% [=================================== ] 553/994 55% [=================================== ] 554/994 55% [=================================== ] 555/994 55% [=================================== ] 556/994 55% [=================================== ] 557/994 56% [=================================== ] 558/994 56% [=================================== ] 559/994 56% [==================================== ] 560/994 56% [==================================== ] 561/994 56% [==================================== ] 562/994 56% [==================================== ] 563/994 56% [==================================== ] 564/994 56% [==================================== ] 565/994 56% [==================================== ] 566/994 56% [==================================== ] 567/994 57% [==================================== ] 568/994 57% [==================================== ] 569/994 57% [==================================== ] 570/994 57% [==================================== ] 571/994 57% [==================================== ] 572/994 57% [==================================== ] 573/994 57% [==================================== ] 574/994 57% [===================================== ] 575/994 57% [===================================== ] 576/994 57% [===================================== ] 577/994 58% [===================================== ] 578/994 58% [===================================== ] 579/994 58% [===================================== ] 580/994 58% [===================================== ] 581/994 58% [===================================== ] 582/994 58% [===================================== ] 583/994 58% [===================================== ] 584/994 58% [===================================== ] 585/994 58% [===================================== ] 586/994 58% [===================================== ] 587/994 59% [===================================== ] 588/994 59% [===================================== ] 589/994 59% [===================================== ] 590/994 59% [====================================== ] 591/994 59% [====================================== ] 592/994 59% [====================================== ] 593/994 59% [====================================== ] 594/994 59% [====================================== ] 595/994 59% [====================================== ] 596/994 59% [====================================== ] 597/994 60% [====================================== ] 598/994 60% [====================================== ] 599/994 60% [====================================== ] 600/994 60% [====================================== ] 601/994 60% [====================================== ] 602/994 60% [====================================== ] 603/994 60% [====================================== ] 604/994 60% [====================================== ] 605/994 60% [======================================= ] 606/994 60% [======================================= ] 607/994 61% [======================================= ] 608/994 61% [======================================= ] 609/994 61% [======================================= ] 610/994 61% [======================================= ] 611/994 61% [======================================= ] 612/994 61% [======================================= ] 613/994 61% [======================================= ] 614/994 61% [======================================= ] 615/994 61% [======================================= ] 616/994 61% [======================================= ] 617/994 62% [======================================= ] 618/994 62% [======================================= ] 619/994 62% [======================================= ] 620/994 62% [======================================= ] 621/994 62% [======================================== ] 622/994 62% [======================================== ] 623/994 62% [======================================== ] 624/994 62% [======================================== ] 625/994 62% [======================================== ] 626/994 62% [======================================== ] 627/994 63% [======================================== ] 628/994 63% [======================================== ] 629/994 63% [======================================== ] 630/994 63% [======================================== ] 631/994 63% [======================================== ] 632/994 63% [======================================== ] 633/994 63% [======================================== ] 634/994 63% [======================================== ] 635/994 63% [======================================== ] 636/994 63% [========================================= ] 637/994 64% [========================================= ] 638/994 64% [========================================= ] 639/994 64% [========================================= ] 640/994 64% [========================================= ] 641/994 64% [========================================= ] 642/994 64% [========================================= ] 643/994 64% [========================================= ] 644/994 64% [========================================= ] 645/994 64% [========================================= ] 646/994 64% [========================================= ] 647/994 65% [========================================= ] 648/994 65% [========================================= ] 649/994 65% [========================================= ] 650/994 65% [========================================= ] 651/994 65% [========================================= ] 652/994 65% [========================================== ] 653/994 65% [========================================== ] 654/994 65% [========================================== ] 655/994 65% [========================================== ] 656/994 65% [========================================== ] 657/994 66% [========================================== ] 658/994 66% [========================================== ] 659/994 66% [========================================== ] 660/994 66% [========================================== ] 661/994 66% [========================================== ] 662/994 66% [========================================== ] 663/994 66% [========================================== ] 664/994 66% [========================================== ] 665/994 66% [========================================== ] 666/994 67% [========================================== ] 667/994 67% [=========================================== ] 668/994 67% [=========================================== ] 669/994 67% [=========================================== ] 670/994 67% [=========================================== ] 671/994 67% [=========================================== ] 672/994 67% [=========================================== ] 673/994 67% [=========================================== ] 674/994 67% [=========================================== ] 675/994 67% [=========================================== ] 676/994 68% [=========================================== ] 677/994 68% [=========================================== ] 678/994 68% [=========================================== ] 679/994 68% [=========================================== ] 680/994 68% [=========================================== ] 681/994 68% [=========================================== ] 682/994 68% [=========================================== ] 683/994 68% [============================================ ] 684/994 68% [============================================ ] 685/994 68% [============================================ ] 686/994 69% [============================================ ] 687/994 69% [============================================ ] 688/994 69% [============================================ ] 689/994 69% [============================================ ] 690/994 69% [============================================ ] 691/994 69% [============================================ ] 692/994 69% [============================================ ] 693/994 69% [============================================ ] 694/994 69% [============================================ ] 695/994 69% [============================================ ] 696/994 70% [============================================ ] 697/994 70% [============================================ ] 698/994 70% [============================================= ] 699/994 70% [============================================= ] 700/994 70% [============================================= ] 701/994 70% [============================================= ] 702/994 70% [============================================= ] 703/994 70% [============================================= ] 704/994 70% [============================================= ] 705/994 70% [============================================= ] 706/994 71% [============================================= ] 707/994 71% [============================================= ] 708/994 71% [============================================= ] 709/994 71% [============================================= ] 710/994 71% [============================================= ] 711/994 71% [============================================= ] 712/994 71% [============================================= ] 713/994 71% [============================================= ] 714/994 71% [============================================== ] 715/994 71% [============================================== ] 716/994 72% [============================================== ] 717/994 72% [============================================== ] 718/994 72% [============================================== ] 719/994 72% [============================================== ] 720/994 72% [============================================== ] 721/994 72% [============================================== ] 722/994 72% [============================================== ] 723/994 72% [============================================== ] 724/994 72% [============================================== ] 725/994 72% [============================================== ] 726/994 73% [============================================== ] 727/994 73% [============================================== ] 728/994 73% [============================================== ] 729/994 73% [=============================================== ] 730/994 73% [=============================================== ] 731/994 73% [=============================================== ] 732/994 73% [=============================================== ] 733/994 73% [=============================================== ] 734/994 73% [=============================================== ] 735/994 73% [=============================================== ] 736/994 74% [=============================================== ] 737/994 74% [=============================================== ] 738/994 74% [=============================================== ] 739/994 74% [=============================================== ] 740/994 74% [=============================================== ] 741/994 74% [=============================================== ] 742/994 74% [=============================================== ] 743/994 74% [=============================================== ] 744/994 74% [=============================================== ] 745/994 74% [================================================ ] 746/994 75% [================================================ ] 747/994 75% [================================================ ] 748/994 75% [================================================ ] 749/994 75% [================================================ ] 750/994 75% [================================================ ] 751/994 75% [================================================ ] 752/994 75% [================================================ ] 753/994 75% [================================================ ] 754/994 75% [================================================ ] 755/994 75% [================================================ ] 756/994 76% [================================================ ] 757/994 76% [================================================ ] 758/994 76% [================================================ ] 759/994 76% [================================================ ] 760/994 76% [================================================ ] 761/994 76% [================================================= ] 762/994 76% [================================================= ] 763/994 76% [================================================= ] 764/994 76% [================================================= ] 765/994 76% [================================================= ] 766/994 77% [================================================= ] 767/994 77% [================================================= ] 768/994 77% [================================================= ] 769/994 77% [================================================= ] 770/994 77% [================================================= ] 771/994 77% [================================================= ] 772/994 77% [================================================= ] 773/994 77% [================================================= ] 774/994 77% [================================================= ] 775/994 77% [================================================= ] 776/994 78% [================================================== ] 777/994 78% [================================================== ] 778/994 78% [================================================== ] 779/994 78% [================================================== ] 780/994 78% [================================================== ] 781/994 78% [================================================== ] 782/994 78% [================================================== ] 783/994 78% [================================================== ] 784/994 78% [================================================== ] 785/994 78% [================================================== ] 786/994 79% [================================================== ] 787/994 79% [================================================== ] 788/994 79% [================================================== ] 789/994 79% [================================================== ] 790/994 79% [================================================== ] 791/994 79% [================================================== ] 792/994 79% [=================================================== ] 793/994 79% [=================================================== ] 794/994 79% [=================================================== ] 795/994 79% [=================================================== ] 796/994 80% [=================================================== ] 797/994 80% [=================================================== ] 798/994 80% [=================================================== ] 799/994 80% [=================================================== ] 800/994 80% [=================================================== ] 801/994 80% [=================================================== ] 802/994 80% [=================================================== ] 803/994 80% [=================================================== ] 804/994 80% [=================================================== ] 805/994 80% [=================================================== ] 806/994 81% [=================================================== ] 807/994 81% [==================================================== ] 808/994 81% [==================================================== ] 809/994 81% [==================================================== ] 810/994 81% [==================================================== ] 811/994 81% [==================================================== ] 812/994 81% [==================================================== ] 813/994 81% [==================================================== ] 814/994 81% [==================================================== ] 815/994 81% [==================================================== ] 816/994 82% [==================================================== ] 817/994 82% [==================================================== ] 818/994 82% [==================================================== ] 819/994 82% [==================================================== ] 820/994 82% [==================================================== ] 821/994 82% [==================================================== ] 822/994 82% [==================================================== ] 823/994 82% [===================================================== ] 824/994 82% [===================================================== ] 825/994 82% [===================================================== ] 826/994 83% [===================================================== ] 827/994 83% [===================================================== ] 828/994 83% [===================================================== ] 829/994 83% [===================================================== ] 830/994 83% [===================================================== ] 831/994 83% [===================================================== ] 832/994 83% [===================================================== ] 833/994 83% [===================================================== ] 834/994 83% [===================================================== ] 835/994 84% [===================================================== ] 836/994 84% [===================================================== ] 837/994 84% [===================================================== ] 838/994 84% [====================================================== ] 839/994 84% [====================================================== ] 840/994 84% [====================================================== ] 841/994 84% [====================================================== ] 842/994 84% [====================================================== ] 843/994 84% [====================================================== ] 844/994 84% [====================================================== ] 845/994 85% [====================================================== ] 846/994 85% [====================================================== ] 847/994 85% [====================================================== ] 848/994 85% [====================================================== ] 849/994 85% [====================================================== ] 850/994 85% [====================================================== ] 851/994 85% [====================================================== ] 852/994 85% [====================================================== ] 853/994 85% [====================================================== ] 854/994 85% [======================================================= ] 855/994 86% [======================================================= ] 856/994 86% [======================================================= ] 857/994 86% [======================================================= ] 858/994 86% [======================================================= ] 859/994 86% [======================================================= ] 860/994 86% [======================================================= ] 861/994 86% [======================================================= ] 862/994 86% [======================================================= ] 863/994 86% [======================================================= ] 864/994 86% [======================================================= ] 865/994 87% [======================================================= ] 866/994 87% [======================================================= ] 867/994 87% [======================================================= ] 868/994 87% [======================================================= ] 869/994 87% [======================================================== ] 870/994 87% [======================================================== ] 871/994 87% [======================================================== ] 872/994 87% [======================================================== ] 873/994 87% [======================================================== ] 874/994 87% [======================================================== ] 875/994 88% [======================================================== ] 876/994 88% [======================================================== ] 877/994 88% [======================================================== ] 878/994 88% [======================================================== ] 879/994 88% [======================================================== ] 880/994 88% [======================================================== ] 881/994 88% [======================================================== ] 882/994 88% [======================================================== ] 883/994 88% [======================================================== ] 884/994 88% [======================================================== ] 885/994 89% [========================================================= ] 886/994 89% [========================================================= ] 887/994 89% [========================================================= ] 888/994 89% [========================================================= ] 889/994 89% [========================================================= ] 890/994 89% [========================================================= ] 891/994 89% [========================================================= ] 892/994 89% [========================================================= ] 893/994 89% [========================================================= ] 894/994 89% [========================================================= ] 895/994 90% [========================================================= ] 896/994 90% [========================================================= ] 897/994 90% [========================================================= ] 898/994 90% [========================================================= ] 899/994 90% [========================================================= ] 900/994 90% [========================================================== ] 901/994 90% [========================================================== ] 902/994 90% [========================================================== ] 903/994 90% [========================================================== ] 904/994 90% [========================================================== ] 905/994 91% [========================================================== ] 906/994 91% [========================================================== ] 907/994 91% [========================================================== ] 908/994 91% [========================================================== ] 909/994 91% [========================================================== ] 910/994 91% [========================================================== ] 911/994 91% [========================================================== ] 912/994 91% [========================================================== ] 913/994 91% [========================================================== ] 914/994 91% [========================================================== ] 915/994 92% [========================================================== ] 916/994 92% [=========================================================== ] 917/994 92% [=========================================================== ] 918/994 92% [=========================================================== ] 919/994 92% [=========================================================== ] 920/994 92% [=========================================================== ] 921/994 92% [=========================================================== ] 922/994 92% [=========================================================== ] 923/994 92% [=========================================================== ] 924/994 92% [=========================================================== ] 925/994 93% [=========================================================== ] 926/994 93% [=========================================================== ] 927/994 93% [=========================================================== ] 928/994 93% [=========================================================== ] 929/994 93% [=========================================================== ] 930/994 93% [=========================================================== ] 931/994 93% [============================================================ ] 932/994 93% [============================================================ ] 933/994 93% [============================================================ ] 934/994 93% [============================================================ ] 935/994 94% [============================================================ ] 936/994 94% [============================================================ ] 937/994 94% [============================================================ ] 938/994 94% [============================================================ ] 939/994 94% [============================================================ ] 940/994 94% [============================================================ ] 941/994 94% [============================================================ ] 942/994 94% [============================================================ ] 943/994 94% [============================================================ ] 944/994 94% [============================================================ ] 945/994 95% [============================================================ ] 946/994 95% [============================================================ ] 947/994 95% [============================================================= ] 948/994 95% [============================================================= ] 949/994 95% [============================================================= ] 950/994 95% [============================================================= ] 951/994 95% [============================================================= ] 952/994 95% [============================================================= ] 953/994 95% [============================================================= ] 954/994 95% [============================================================= ] 955/994 96% [============================================================= ] 956/994 96% [============================================================= ] 957/994 96% [============================================================= ] 958/994 96% [============================================================= ] 959/994 96% [============================================================= ] 960/994 96% [============================================================= ] 961/994 96% [============================================================= ] 962/994 96% [============================================================== ] 963/994 96% [============================================================== ] 964/994 96% [============================================================== ] 965/994 97% [============================================================== ] 966/994 97% [============================================================== ] 967/994 97% [============================================================== ] 968/994 97% [============================================================== ] 969/994 97% [============================================================== ] 970/994 97% [============================================================== ] 971/994 97% [============================================================== ] 972/994 97% [============================================================== ] 973/994 97% [============================================================== ] 974/994 97% [============================================================== ] 975/994 98% [============================================================== ] 976/994 98% [============================================================== ] 977/994 98% [============================================================== ] 978/994 98% [=============================================================== ] 979/994 98% [=============================================================== ] 980/994 98% [=============================================================== ] 981/994 98% [=============================================================== ] 982/994 98% [=============================================================== ] 983/994 98% [=============================================================== ] 984/994 98% [=============================================================== ] 985/994 99% [=============================================================== ] 986/994 99% [=============================================================== ] 987/994 99% [=============================================================== ] 988/994 99% [=============================================================== ] 989/994 99% [=============================================================== ] 990/994 99% [=============================================================== ] 991/994 99% [=============================================================== ] 992/994 99% [=============================================================== ] 993/994 99% [================================================================] 994/994 100% operation complete, 994 objects in 135113 NAND pages. ln -snf /tmp/instance-5/output-1/host/arc-buildroot-linux-uclibc/sysroot /tmp/instance-5/output-1/staging make: Leaving directory '/tmp/instance-5/buildroot' make: Entering directory '/tmp/instance-5/buildroot' >>> Buildroot 2023.02-93-gd3051892eb Collecting legal info COPYING: OK (sha256: 9755181e27175cb3510b4da8629caa406fb355a19aa8e7d55f06bf8ab33323c4) >>> toolchain-buildroot Collecting legal info >>> host-gcc-final arc-2020.09-release Collecting legal info >>> host-binutils 2.37 Collecting legal info COPYING3: OK (sha256: 8ceb4b9ee5adedde47b31e975c1d90c73ad27b6b165a1dcd80c7c545eb65b903) COPYING.LIB: OK (sha256: 56bdea73b6145ef6ac5259b3da390b981d840c24cb03b8e1cbc678de7ecfa18d) >>> host-skeleton Collecting legal info >>> 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-flex 2.6.4 Collecting legal info COPYING: OK (sha256: 97fd685958d93be7f8dab939bb8161dbd6afb0718c63bfc337c24321aea44273) >>> host-autoconf 2.71 Collecting legal info COPYINGv3: OK (sha256: 3972dc9744f6499f0f9b2dbf76696f2ae7ad8af9b23dde66d6af86c9dfb36986) COPYING.EXCEPTION: OK (sha256: 1f1cde9fb68b9b3cff18c420894bec5bd4defacd700b7d13df54a887301e5350) >>> host-libtool 2.4.6 Collecting legal info COPYING: OK (sha256: 8177f97513213526df2cf6184d8ff986c675afb514d4e68a404010521b880643) libltdl/COPYING.LIB: OK (sha256: dc626520dcd53a22f727af3ee42c770e56c97a64fe3adb063799d8ab032fe551) >>> host-automake 1.16.5 Collecting legal info COPYING: OK (sha256: ab15fd526bd8dd18a9e77ebc139656bf4d33e97fc7238cd11bf60e2b9b8666c6) >>> host-gettext Collecting legal info >>> host-gettext-tiny 0.3.2 Collecting legal info LICENSE: OK (sha256: 4c938aa3d8fa3c184bba5e87a8a2febc89560627c9d0567536879e3eca1a7b4f) extra/COPYING: OK (sha256: e79e9c8a0c85d735ff98185918ec94ed7d175efc377012787aebcf3b80f0d90b) >>> 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) >>> uclibc 1.0.42 Collecting legal info COPYING.LIB: OK (sha256: 6095e9ffa777dd22839f7801aa845b31c9ed07f3d6bf8a26dc5d2dec8ccc0ef3) >>> host-gcc-initial arc-2020.09-release Collecting legal info >>> linux-headers 4.19.274 Collecting legal info >>> skeleton Collecting legal info >>> skeleton-init-sysv Collecting legal info >>> skeleton-init-common Collecting legal info >>> toolchain Collecting legal info >>> alsa-lib 1.2.8 Collecting legal info COPYING: OK (sha256: 32434afcc8666ba060e111d715bfdb6c2d5dd8a35fa4d3ab8ad67d8f850d2f2b) aserver/COPYING: OK (sha256: bfe16cf823bcff261fc6a062c07ee96660e3c39678f42f39a788a68dbc234ced) >>> angularjs 1.8.2 Collecting legal info angular.js: OK (sha256: 237656fae6e39d02cd71cbcfbf91b7964eba5796aafca1bfcfff3b054ce3fed6) >>> apg 2.3.0b Collecting legal info COPYING: OK (sha256: 5d0c892ea452c3828f1e311637cde4e3a04eb6431554308b3fcdac8c1b330168) >>> host-asn1c 0.9.28 Collecting legal info LICENSE: OK (sha256: bcc636802a52ace2255212be15fb707084af87061b5cfd37eb84dcf6a02cc48b) >>> atest 895b0183a89c15f5e2305a6795bb1667753cd3f0 Collecting legal info COPYING: OK (sha256: 204d8eff92f95aac4df6c8122bc1505f468f3a901e5a4cc08940e0ede1938994) >>> host-pkgconf 1.6.3 Collecting legal info COPYING: OK (sha256: 07ee94b50a41ee3fc4e13a9b9c60b26fc28488494c465639f7e5f07a3952ec04) >>> libev 4.33 Collecting legal info LICENSE: OK (sha256: c4dd1a5bc38b041a320b93c5d6c08f5c41a63f2ce718ee16cfcb757fad448199) >>> bitstream-vera 1.10 Collecting legal info COPYRIGHT.TXT: OK (sha256: 3361d054759a2fc686a2c058be82deaf9c2e6fe549be9004d7935a6c1736315d) >>> bitwise 0.43 Collecting legal info COPYING: OK (sha256: 3972dc9744f6499f0f9b2dbf76696f2ae7ad8af9b23dde66d6af86c9dfb36986) >>> ncurses 6.3-20221224 Collecting legal info COPYING: OK (sha256: 63de87399e9fc8860236082b6b0520e068e9eb1fad0ebd30202aa30bb6f690ac) >>> host-ncurses 6.3-20221224 Collecting legal info COPYING: OK (sha256: 63de87399e9fc8860236082b6b0520e068e9eb1fad0ebd30202aa30bb6f690ac) >>> readline 8.2 Collecting legal info COPYING: OK (sha256: 8ceb4b9ee5adedde47b31e975c1d90c73ad27b6b165a1dcd80c7c545eb65b903) >>> host-bootgen xilinx_v2022.2 Collecting legal info LICENSE: OK (sha256: 4da5f5eff0592e5d275f1871faf9e9a4fc0f6346027bfb777fa59d0aa6a59aa3) >>> host-openssl Collecting legal info >>> host-libopenssl 1.1.1t Collecting legal info LICENSE: OK (sha256: c32913b33252e71190af2066f08115c69bc9fddadf3bf29296e20c835389841c) >>> host-zlib Collecting legal info >>> host-libzlib 1.2.13 Collecting legal info LICENSE: OK (sha256: 845efc77857d485d91fb3e0b884aaa929368c717ae8186b66fe1ed2495753243) >>> brcm-patchram-plus 95b7b6916d661a4da3f9c0adf52d5e1f4f8ab042 Collecting legal info COPYING: OK (sha256: 26324f5c563b7e338c2876c8abe90c3681c1e9a6163fc59b494c94ad6493eda4) >>> host-btrfs-progs 5.16.2 Collecting legal info COPYING: OK (sha256: 0d5bf346df9e635a29dcdddf832dc5b002ca6cdc1c5c9c6c567d2a61bb0c5c15) libbtrfsutil/COPYING: OK (sha256: dc626520dcd53a22f727af3ee42c770e56c97a64fe3adb063799d8ab032fe551) >>> host-lzo 2.10 Collecting legal info COPYING: OK (sha256: 8177f97513213526df2cf6184d8ff986c675afb514d4e68a404010521b880643) >>> host-cmake 3.22.3 Collecting legal info Copyright.txt: OK (sha256: f1a4326266aada65b307dac05161a9d02d3dba4fb08b50cb26e3c24cc8a86e97) >>> host-util-linux 2.38 Collecting legal info README.licensing: OK (sha256: 869660b5269f4f40a8a679da7f403ea3a6e71d46087aab5e14871b09bcb55955) Documentation/licenses/COPYING.BSD-3-Clause: OK (sha256: 9b718a9460fed5952466421235bc79eb49d4e9eacc920d7a9dd6285ab8fd6c6d) Documentation/licenses/COPYING.BSD-4-Clause-UC: OK (sha256: ba7640f00d93e72e92b94b9d71f25ec53bac2f1682f5c4adcccb0018359f60f8) Documentation/licenses/COPYING.GPL-2.0-or-later: OK (sha256: 8177f97513213526df2cf6184d8ff986c675afb514d4e68a404010521b880643) Documentation/licenses/COPYING.ISC: OK (sha256: e53348ce276358e9997014071c5294b36a18c4b34f32f00ee57b9acce0aafd63) Documentation/licenses/COPYING.LGPL-2.1-or-later: OK (sha256: dc626520dcd53a22f727af3ee42c770e56c97a64fe3adb063799d8ab032fe551) >>> busybox 1.36.0 Collecting legal info LICENSE: OK (sha256: bbfc9843646d483c334664f651c208b9839626891d8f17604db2146962f43548) archival/libarchive/bz/LICENSE: OK (sha256: b5a136ed67798e51fe2e0ca0b2a21cb01b904ff0c9f7d563a6292e276607e58f) >>> e2fsprogs 1.46.5 Collecting legal info NOTICE: OK (sha256: 5da5ef153e559c1d990d4c3eedbedd4442db892d37eae1f35fff069de8ec9020) lib/ss/mit-sipb-copyright.h: OK (sha256: 032989b508f1a72ebee5b3417e55d06d473f9ee203e45ab11864a7e49cdec63d) lib/et/internal.h: OK (sha256: 47182fe6631a32f271a15bbe210751b3825b7199f588879aac7d4804fc8b4b8f) >>> util-linux 2.38 Collecting legal info README.licensing: OK (sha256: 869660b5269f4f40a8a679da7f403ea3a6e71d46087aab5e14871b09bcb55955) Documentation/licenses/COPYING.BSD-3-Clause: OK (sha256: 9b718a9460fed5952466421235bc79eb49d4e9eacc920d7a9dd6285ab8fd6c6d) Documentation/licenses/COPYING.BSD-4-Clause-UC: OK (sha256: ba7640f00d93e72e92b94b9d71f25ec53bac2f1682f5c4adcccb0018359f60f8) Documentation/licenses/COPYING.GPL-2.0-or-later: OK (sha256: 8177f97513213526df2cf6184d8ff986c675afb514d4e68a404010521b880643) Documentation/licenses/COPYING.ISC: OK (sha256: e53348ce276358e9997014071c5294b36a18c4b34f32f00ee57b9acce0aafd63) Documentation/licenses/COPYING.LGPL-2.1-or-later: OK (sha256: dc626520dcd53a22f727af3ee42c770e56c97a64fe3adb063799d8ab032fe551) >>> pcre2 10.42 Collecting legal info LICENCE: OK (sha256: 87d884eceb7fc54611470ce9f74280d28612b0c877adfc767e9676892a638987) >>> zlib Collecting legal info >>> libzlib 1.2.13 Collecting legal info LICENSE: OK (sha256: 845efc77857d485d91fb3e0b884aaa929368c717ae8186b66fe1ed2495753243) >>> iproute2 6.1.0 Collecting legal info COPYING: OK (sha256: e6d6a009505e345fe949e1310334fcb0747f28dae2856759de102ab66b722cb4) >>> libmnl 1.0.5 Collecting legal info COPYING: OK (sha256: dc626520dcd53a22f727af3ee42c770e56c97a64fe3adb063799d8ab032fe551) >>> bwm-ng 0.6.3 Collecting legal info COPYING: OK (sha256: 8556cc15ba3c0a411bf7d94bac5870829fb725f294b450c724c1e0856a601556) >>> host-cramfs 2.1 Collecting legal info COPYING: OK (sha256: 204d8eff92f95aac4df6c8122bc1505f468f3a901e5a4cc08940e0ede1938994) >>> ding-libs 0.6.2 Collecting legal info COPYING: OK (sha256: 8ceb4b9ee5adedde47b31e975c1d90c73ad27b6b165a1dcd80c7c545eb65b903) COPYING.LESSER: OK (sha256: 6c57f43c939054fd4b831f271a14c97a488c38f98cdda5e887c5d396e3b3bc58) >>> libiconv 1.15 Collecting legal info COPYING: OK (sha256: 8ceb4b9ee5adedde47b31e975c1d90c73ad27b6b165a1dcd80c7c545eb65b903) COPYING.LIB: OK (sha256: 56bdea73b6145ef6ac5259b3da390b981d840c24cb03b8e1cbc678de7ecfa18d) >>> drbd-utils 9.21.4 Collecting legal info COPYING: OK (sha256: 1ca3e8f71b7de618968e7ea9fe47822d9e704dc476aef8544033abedec355225) >>> host-e2fsprogs 1.46.5 Collecting legal info NOTICE: OK (sha256: 5da5ef153e559c1d990d4c3eedbedd4442db892d37eae1f35fff069de8ec9020) lib/ss/mit-sipb-copyright.h: OK (sha256: 032989b508f1a72ebee5b3417e55d06d473f9ee203e45ab11864a7e49cdec63d) lib/et/internal.h: OK (sha256: 47182fe6631a32f271a15bbe210751b3825b7199f588879aac7d4804fc8b4b8f) >>> enscript 1.6.6 Collecting legal info COPYING: OK (sha256: fc82ca8b6fdb18d4e3e85cfd8ab58d1bcd3f1b29abe782895abd91d64763f8e7) >>> fbv 1.0b Collecting legal info COPYING: OK (sha256: bf21d97bafcaacb5d6bc3d5502030c340f0e0593614078ab017af91e950083af) >>> flex 2.6.4 Collecting legal info COPYING: OK (sha256: 97fd685958d93be7f8dab939bb8161dbd6afb0718c63bfc337c24321aea44273) >>> fluid-soundfont 3.1 Collecting legal info COPYING: OK (sha256: 8ef830b65c97a976b86e34bb5fde08d99dfb1db13c4149b5b20bc837ac6c4568) >>> gensio 2.5.5 Collecting legal info COPYING.LIB: OK (sha256: dcac7d447dd81ab96d28dce00a07a6486e623f7ded94e2a2a8e83312405cdf89) COPYING: OK (sha256: 501f3108e6c03e5a0a5585ebaaa369171aead5319cd0a7a4dc1f66211c1f09f1) >>> openssl Collecting legal info >>> libressl 3.6.2 Collecting legal info COPYING: OK (sha256: 5c63613f008f16a9c0025c096bbd736cecf720494d121b5c5203e0ec6e5955b1) >>> geoip 1.6.12 Collecting legal info COPYING: OK (sha256: 36b6d3fa47916943fd5fec313c584784946047ec1337a78b440e5992cb595f89) >>> host-gptfdisk 1.0.9 Collecting legal info COPYING: OK (sha256: 231f7edcc7352d7734a96eef0b8030f77982678c516876fcb81e25b32d68564c) >>> host-popt 1.19 Collecting legal info COPYING: OK (sha256: 2b488b239927935f34769a39309c0680be16e3725a1f55dbb06ed20d53852801) >>> hwloc 2.8.0 Collecting legal info COPYING: OK (sha256: d79a936a42f3c6cb7c8375a023d43f4435f4664d3a5a2ea6b4623cff83c7fc06) >>> libxml2 2.10.3 Collecting legal info Copyright: OK (sha256: c5c63674f8a83c4d2e385d96d1c670a03cb871ba2927755467017317878574bd) >>> initscripts Collecting legal info >>> iperf3 3.13 Collecting legal info LICENSE: OK (sha256: 35aa7c4618b9884d6faa9b43a4e70291b35ea9f89329d5d33becd852e85221b0) >>> jbig2dec 0.19 Collecting legal info LICENSE: OK (sha256: 1bf5258afe453934484fd0cea97508b72301633a6a78b0ae8a9ee44ac78f26d9) >>> jo 1.6 Collecting legal info COPYING: OK (sha256: 41d8b23dc6e76731f4920b9ce42d0d4a248d243a510319e2441d174a115f35cf) >>> jquery 3.5.1 Collecting legal info >>> host-jsmin 1bf6ce5f74a9f8752ac7f5d115b8d7ccb31cfe1b Collecting legal info jsmin.c: OK (sha256: b420f61778af09534adc836a5086f5625b8499124051c50baefa218e7c03a58c) >>> lft 3.91 Collecting legal info COPYING: OK (sha256: e3b7634630e6800eccca6ecafb5d40153d4f8f7a20e2b2399bf3c0ea92f44614) >>> libpcap 1.10.3 Collecting legal info LICENSE: OK (sha256: 8a54594d257e14a5260ac770f1633516cb51e3fc28c40136ce2697014eda7afd) >>> libb2 0.98.1 Collecting legal info COPYING: OK (sha256: 6a1ee543e5282cd9061881edf462e6fdab181f328da71fc2c9a6950a80e94d01) >>> libb64 1.2.1 Collecting legal info LICENSE: OK (sha256: 834b7afa1b3c40289a3be775d3625016be1c0d7ea7a4a26c1eb207f53dc961d8) >>> libbson 1.9.5 Collecting legal info COPYING: OK (sha256: cfc7749b96f63bd31c3c42b5c471bf756814053e847c10f3eb003417bc523d30) THIRD_PARTY_NOTICES: OK (sha256: 8dc5cb3146b026715e6c145621c7732f36c295d825b7b3a03076ad3f238db48e) >>> libcodec2 1.0.5 Collecting legal info COPYING: OK (sha256: 9ebb6f82b7380a62ac74c5f0322c88e6744dedf2ebe1f54d6f088282b39844bf) >>> libcurl 7.88.1 Collecting legal info COPYING: OK (sha256: b1d7feb949ea5023552029fbe0bf5db4f23c2f85e9b8e51e18536f0ecbf9c524) >>> nghttp2 1.41.0 Collecting legal info COPYING: OK (sha256: 6b94f3abc1aabd0c72a7c7d92a77f79dda7c8a0cb3df839a97890b4116a2de2a) >>> libee 0.4.1 Collecting legal info COPYING: OK (sha256: 275fecbf835387e042ba96884f0f05356a485a6ea8449b2c5295cc11652ad439) >>> libestr 0.1.11 Collecting legal info COPYING: OK (sha256: 835b4793da5cbb8965fbd63905b55a4cb4310b7d1b882077d23066b08f901ff8) >>> libevent 2.1.12 Collecting legal info LICENSE: OK (sha256: ff02effc9b331edcdac387d198691bfa3e575e7d244ad10cb826aa51ef085670) >>> libgphoto2 2.5.27 Collecting legal info COPYING: OK (sha256: ebc385a0b1d477be5177ed6d9129557aa59a3ad0f26ebe7dd97ee942a0fb68ee) >>> libtool 2.4.6 Collecting legal info libltdl/COPYING.LIB: OK (sha256: dc626520dcd53a22f727af3ee42c770e56c97a64fe3adb063799d8ab032fe551) >>> libusb 1.0.26 Collecting legal info COPYING: OK (sha256: 5df07007198989c622f5d41de8d703e7bef3d0e79d62e24332ee739a452af62a) >>> libid3tag 0.15.1b Collecting legal info COPYING: OK (sha256: 32b1062f7da84967e7019d01ab805935caa7ab7321a7ced0e30ebe75e5df1670) COPYRIGHT: OK (sha256: 7f12ad28dc075763e91b91bfa60fad04062380011ddad8f6bac21dd7b1f44367) >>> host-gperf 3.1 Collecting legal info COPYING: OK (sha256: 8ceb4b9ee5adedde47b31e975c1d90c73ad27b6b165a1dcd80c7c545eb65b903) >>> libidn 1.41 Collecting legal info COPYINGv2: OK (sha256: 8177f97513213526df2cf6184d8ff986c675afb514d4e68a404010521b880643) COPYINGv3: OK (sha256: e6037104443f9a7829b2aa7c5370d0789a7bda3ca65a0b904cdc0c2e285d9195) COPYING.LESSERv3: OK (sha256: da7eabb7bafdf7d3ae5e9f223aa5bdc1eece45ac569dc21b3b037520b4464768) >>> libmad 0.15.1b Collecting legal info COPYING: OK (sha256: 32b1062f7da84967e7019d01ab805935caa7ab7321a7ced0e30ebe75e5df1670) >>> libnetfilter_acct 1.0.3 Collecting legal info COPYING: OK (sha256: dc626520dcd53a22f727af3ee42c770e56c97a64fe3adb063799d8ab032fe551) >>> liboauth 1.0.3 Collecting legal info COPYING.MIT: OK (sha256: c30608672733bf3abd2ccf6f3206be8d91b7ee58b007b2fdbcfbc61c655e7fb7) >>> libosip2 5.3.1 Collecting legal info COPYING: OK (sha256: 8d9e95ed0e48df46dc758eb0d86df611f771eab4eed94bebb77dca87f1c897de) >>> libpfm4 4.12.0 Collecting legal info COPYING: OK (sha256: beef323d68fc5db9c67b20e8e9de7ccde371d20cdbcdd686804055b18b926d90) >>> libsepol 3.3 Collecting legal info COPYING: OK (sha256: 6095e9ffa777dd22839f7801aa845b31c9ed07f3d6bf8a26dc5d2dec8ccc0ef3) >>> libsndfile 1.2.0 Collecting legal info COPYING: OK (sha256: ad01ea5cd2755f6048383c8d54c88459cd6fcb17757c5c8892f8c5ea060f6140) >>> libsolv 0.7.22 Collecting legal info LICENSE.BSD: OK (sha256: 57f15acfb29fbef7749779e096a5885c60b716633e34484a21bb717554c0198f) >>> libtommath 1.2.0 Collecting legal info LICENSE: OK (sha256: 2fa64b163659f41965c9815882a8296d3d03ff546b76153e11445f9bdecf955a) >>> libucl 0.8.1 Collecting legal info COPYING: OK (sha256: 1bf976835764c1d827e07472a0a75adb098682df56681878af05fc0db7439b03) >>> libyaml 0.2.5 Collecting legal info License: OK (sha256: c40112449f254b9753045925248313e9270efa36d226b22d82d4cc6c43c57f29) >>> lsscsi 0.32 Collecting legal info COPYING: OK (sha256: dcc100d4161cc0b7177545ab6e47216f84857cda3843847c792a25289852dcaa) >>> madplay 0.15.2b Collecting legal info COPYING: OK (sha256: 32b1062f7da84967e7019d01ab805935caa7ab7321a7ced0e30ebe75e5df1670) COPYRIGHT: OK (sha256: 915bfd70548f31d11f9b4ffb21f343d1196af96c79d6aaac5663ea46c39dd3a3) >>> host-mtd 2.1.5 Collecting legal info COPYING: OK (sha256: dcc100d4161cc0b7177545ab6e47216f84857cda3843847c792a25289852dcaa) >>> 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-zstd 1.5.4 Collecting legal info LICENSE: OK (sha256: 7055266497633c9025b777c78eb7235af13922117480ed5c674677adc381c9d8) COPYING: OK (sha256: f9c375a1be4a41f7b70301dd83c91cb89e41567478859b77eef375a52d782505) >>> murata-cyw-fw 8d87950bfad28c65926695b7357bd8995b60016a Collecting legal info LICENCE.cypress: OK (sha256: 3a892759b73e8b459f1a750954b316118b0061fd9d1868d11fa258c104ee7e0c) >>> nanocom 1.0 Collecting legal info COPYING: OK (sha256: e6d6a009505e345fe949e1310334fcb0747f28dae2856759de102ab66b722cb4) >>> ndisc6 1.0.6 Collecting legal info COPYING: OK (sha256: ab15fd526bd8dd18a9e77ebc139656bf4d33e97fc7238cd11bf60e2b9b8666c6) >>> neon 0.32.4 Collecting legal info src/COPYING.LIB: OK (sha256: d7bf9d064ac3e5840f9dd02422b7eeec4f1fd03f37fadbd043602be5e882304f) test/COPYING: OK (sha256: 91df39d1816bfb17a4dda2d3d2c83b1f6f2d38d53e53e41e8f97ad5ac46a0cad) README.md: OK (sha256: ce2421ee38d6c0e02c85ac076478a0f92da6ef92b92b7a174877cabf01b2e531) >>> nfacct 1.0.2 Collecting legal info COPYING: OK (sha256: 91df39d1816bfb17a4dda2d3d2c83b1f6f2d38d53e53e41e8f97ad5ac46a0cad) >>> ngrep 1.47 Collecting legal info LICENSE: OK (sha256: d46e593e048e0b9fc803561ed4c283f37a2d5447e4dcfa10cad29b394c2b8b9e) >>> pcre 8.45 Collecting legal info LICENCE: OK (sha256: 51b3dea44f63338b84b9c97b3d793826a8397309068cf9379a423216ab8ea5b2) >>> host-nodejs 16.18.1 Collecting legal info LICENSE: OK (sha256: 0bec08634ba79b5404f6b7f92ea850f3c2a06e27e6f83f2267e4f5e55ae33334) >>> host-icu 70-1 Collecting legal info LICENSE: OK (sha256: 861671f8c712aa046f8f5ac89239e6c33821636516c5d0cc8c4e1973085f27a6) >>> host-ninja 1.11.1.g95dee.kitware.jobserver-1 Collecting legal info COPYING: OK (sha256: eb7e9ab9690124c5c9f42bdc81383d886a3dede26345b6ed15bbad7caf81f7ea) >>> host-python3 3.11.2 Collecting legal info LICENSE: OK (sha256: 3b2f81fe21d181c499c59a256c8e1968455d6689d269aa85373bfb6af41da3bf) >>> host-autoconf-archive 2022.09.03 Collecting legal info COPYING: OK (sha256: e6037104443f9a7829b2aa7c5370d0789a7bda3ca65a0b904cdc0c2e285d9195) COPYING.EXCEPTION: OK (sha256: 23ed0b84fa023bfa33433b498192cd08a3bfb1f4864a8ed791a84f3eb48b2dd2) >>> host-bzip2 1.0.8 Collecting legal info LICENSE: OK (sha256: c6dbbf828498be844a89eaa3b84adbab3199e342eb5cb2ed2f0d4ba7ec0f38a3) >>> host-expat 2.5.0 Collecting legal info COPYING: OK (sha256: 122f2c27000472a201d337b9b31f7eb2b52d091b02857061a8880371612d9534) >>> host-libffi 3.4.4 Collecting legal info LICENSE: OK (sha256: 2c9c2acb9743e6b007b91350475308aee44691d96aa20eacef8e199988c8c388) >>> host-openocd 0.11.0 Collecting legal info COPYING: OK (sha256: 8177f97513213526df2cf6184d8ff986c675afb514d4e68a404010521b880643) >>> host-jimtcl 0.81 Collecting legal info LICENSE: OK (sha256: 419f1146334e57fb258d6c957d1f94d43455ec0d24b1b54c4447e5f61a353950) >>> host-libftdi 0.20 Collecting legal info LICENSE: OK (sha256: 6bd354f4b9beca001b1b5395be48cef1d749a3ed27dddb8114bf09eb0ab2d88c) COPYING.LIB: OK (sha256: c340cbee4974bb96019e782f2279df016c92fb1e7f5299347e779d9acedbb991) >>> host-libusb 1.0.26 Collecting legal info COPYING: OK (sha256: 5df07007198989c622f5d41de8d703e7bef3d0e79d62e24332ee739a452af62a) >>> host-libusb-compat 0.1.7 Collecting legal info COPYING: OK (sha256: 5df07007198989c622f5d41de8d703e7bef3d0e79d62e24332ee739a452af62a) >>> host-patchelf 0.13 Collecting legal info COPYING: OK (sha256: 8ceb4b9ee5adedde47b31e975c1d90c73ad27b6b165a1dcd80c7c545eb65b903) >>> pixman 0.42.2 Collecting legal info COPYING: OK (sha256: fac9270f0987b96ff4533fca3548c633e02083cbba4a0172a3b149b2e4019793) >>> rapidxml 1.13 Collecting legal info license.txt: OK (sha256: 794bf3b2ecf5cf0c740ac6c524d66ce6284c4b1de1f983d21a242b8abbeb9720) >>> redir 3.3 Collecting legal info COPYING: OK (sha256: 8177f97513213526df2cf6184d8ff986c675afb514d4e68a404010521b880643) >>> rs485conf 5c8d00cf70950fab3454549b81dea843d844492a Collecting legal info LICENSE: OK (sha256: 3e5c80d50879a9572ac9e463215a942490a67b56dfd8a3e27004d7c62e0493c8) >>> host-rust-bin 1.67.1 Collecting legal info LICENSE-APACHE: OK (sha256: 62c7a1e35f56406896d7aa7ca52d0cc0d272ac022b5d2796e7d6905db8a3636a) LICENSE-MIT: OK (sha256: 23f18e03dc49df91622fe2a76176497404e46ced8a715d9d2b67a7446571cca3) >>> host-sdbusplus 4212292bcf136d04b38ba5116aa568b0fa312798 Collecting legal info LICENSE: OK (sha256: b40930bbcf80744c86c46a12bc9da056641d722716c378f5659b9e555ef833e1) >>> host-python-inflection 0.5.1 Collecting legal info LICENSE: OK (sha256: 9e9f9b4b2e7543ad1486f1328bf9ec50e5a5e2bb9caceb59652496dd61e64133) >>> host-python-setuptools 65.6.3 Collecting legal info LICENSE: OK (sha256: db3f0246b1f9278f15845b99fec478b8b506eb76487993722f8c6e254285faf8) >>> host-python-mako 1.2.4 Collecting legal info LICENSE: OK (sha256: 760f22b3e9ea4a50eb99201bd8dd118869f28108cfb64ccce6d1b305cf9ae9fa) >>> host-python-markupsafe 2.1.1 Collecting legal info LICENSE.rst: OK (sha256: 489a8e1108509ed98a37bb983e11e0f7e1d31f0bd8f99a79c8448e7ff37d07ea) >>> host-python-pyyaml 6.0 Collecting legal info LICENSE: OK (sha256: 8d3928f9dc4490fd635707cb88eb26bd764102a7282954307d3e5167a577e8a4) >>> host-libyaml 0.2.5 Collecting legal info License: OK (sha256: c40112449f254b9753045925248313e9270efa36d226b22d82d4cc6c43c57f29) >>> host-sentry-cli 2.8.0 Collecting legal info LICENSE: OK (sha256: 9503def7b54ceb6e3cd182fd59bc05d3a30d7eae481e65aaba4b495133c83c14) >>> host-rustc Collecting legal info >>> ser2net 4.3.8 Collecting legal info COPYING: OK (sha256: 501f3108e6c03e5a0a5585ebaaa369171aead5319cd0a7a4dc1f66211c1f09f1) >>> sound-theme-borealis 0.9a Collecting legal info >>> sslh 1.22c Collecting legal info COPYING: OK (sha256: 8177f97513213526df2cf6184d8ff986c675afb514d4e68a404010521b880643) >>> sudo 1.9.12p2 Collecting legal info LICENSE.md: OK (sha256: d2f93a3b17ed5586fddd07be33ad767146c1a81a22682baa68bb4360a31d020a) >>> szip 2.1.1 Collecting legal info COPYING: OK (sha256: 98cc66747133b26563fefc4630ad4c8c7848c722c7b8a60ecd4afbc4c7d7eb01) >>> transmission 3.00 Collecting legal info COPYING: OK (sha256: 2b16da5bd02790d1e4d332cfd42b9dfd7d1b0ed3a16a75dc7e76b6ed239fdba9) >>> host-intltool 0.51.0 Collecting legal info COPYING: OK (sha256: 32b1062f7da84967e7019d01ab805935caa7ab7321a7ced0e30ebe75e5df1670) >>> host-libxml-parser-perl 2.46 Collecting legal info README: OK (sha256: 6a2e768443ed00f09d3d4bc4dd14451035eac13c6864d68d8e2f76edf5a044f2) >>> uboot-tools 2021.07 Collecting legal info Licenses/gpl-2.0.txt: OK (sha256: 8177f97513213526df2cf6184d8ff986c675afb514d4e68a404010521b880643) >>> utf8proc 2.8.0 Collecting legal info LICENSE.md: OK (sha256: 3b510150d34f248a221bb88e1d811238d6c6c18b51231822c42974c39bb07256) >>> host-utp_com dee512ced1e9367d223d22f10797fbf9aeacfab6 Collecting legal info LICENSE: OK (sha256: a45d0bb572ed792ed34627a72621834b3ba92aab6e2cc4e04301dee7a728d753) >>> host-sg3_utils 1.47 Collecting legal info COPYING: OK (sha256: d212debdb0a5d7754c977f6dc53bb6c88b4ace7ab784ddbccd06bb970adb1a37) BSD_LICENSE: OK (sha256: 8ddd1d82f2be2f5cbd5b5c3b5c2ee94a90d2ca7112958448da74dd78384fd96a) >>> wipe 2.3.1 Collecting legal info LICENSE: OK (sha256: 890cd89006bb57ce95b460e867c7bcc81d30cbc23067a9be4644bdac6882bc14) >>> wireguard-tools 1.0.20210914 Collecting legal info COPYING: OK (sha256: 8177f97513213526df2cf6184d8ff986c675afb514d4e68a404010521b880643) >>> zziplib 0.13.72 Collecting legal info docs/COPYING.LIB: OK (sha256: 94b03f1a60a7fd5007149530626a895a6ef5a8b9342abfd56860c5f3956f5d23) docs/COPYING.MPL: OK (sha256: c2aa7d58cebd24cb877bbf11d6b13a4bb7cd08b9d7db5d3037ca06c46bf4cfd8) docs/copying.htm: OK (sha256: 1c6da11efe8c43ee853fe5b21501dd72b81831ae84d58ea376bddc0620a5c361) >>> host-fakeroot 1.30.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-arc-2020.09-release: cannot save license (HOST_GCC_FINAL_LICENSE_FILES not defined) WARNING: gcc-initial-arc-2020.09-release: cannot save license (HOST_GCC_INITIAL_LICENSE_FILES not defined) WARNING: linux-headers-4.19.274: cannot save license (LINUX_HEADERS_LICENSE_FILES not defined) WARNING: jquery-3.5.1: cannot save license (JQUERY_LICENSE_FILES not defined) WARNING: sound-theme-borealis-0.9a: cannot save license (SOUND_THEME_BOREALIS_LICENSE_FILES not defined) Legal info produced in /tmp/instance-5/output-1/legal-info make: Leaving directory '/tmp/instance-5/buildroot'