View Single Post
Old 04-12-2024, 06:11 PM   #2
WuYung
Junior Member
WuYung began at the beginning.
 
Posts: 5
Karma: 10
Join Date: Apr 2024
Device: Kindle paperwhite 5
Sorry, I forgot to provide details about my specific runtime environment and script.

This is the script I used to execute the chroot, modified from the script found in alpine_kindle.
Code:
#!/bin/sh
ALREADYMOUNTED="no"
if [ "$(mount | grep /tmp/busyBoxRootfs)" ] ; then
    ALREADYMOUNTED="yes"
    echo "ATTENTION! busyBoxRootfs's rootfs is already mounted, thus you will be just dropped into it."
    echo "BE CAREFUL to leave this shell first, as there will be no umount either (To not disturb the other session)."
   else
    echo "Mounting busyBoxRootfs rootfs"
    mkdir -p /tmp/busyBoxRootfs
    mount -o loop,noatime -t ext3 /mnt/base-us//busybox_chroot/busyboxRootfs.ext3 /tmp/busyBoxRootfs
    mount -o bind /dev /tmp/busyBoxRootfs/dev
    mount -o bind /dev/pts /tmp/busyBoxRootfs/dev/pts
    mount -o bind /proc /tmp/busyBoxRootfs/proc
    mount -o bind /sys /tmp/busyBoxRootfs/sys
    mount -o bind /var/run/dbus/ /tmp/busyBoxRootfs/run/dbus/
    # mount -o bind /usr/lib /tmp/busyBoxRootfs/usr/lib
    cp /etc/hosts /tmp/busyBoxRootfs/etc/hosts
    chmod a+w /dev/shm
fi
echo "You're now being dropped into busyBoxRootfs's shell"
chroot /tmp/busyBoxRootfs /bin/sh /runChromium.sh
if [ $ALREADYMOUNTED = "yes" ] ; then
    echo "Umount is being skipped, as the rootfs was mounted already. You're now at your kindle's shell again."
else
    echo "You returned from busyBoxRootfs, killing remaining processes"
    kill $(pgrep Xephyr)
    kill -9 $(lsof -t /var/tmp/busyBoxRootfs/)
    echo "Unmounting busyBoxRootfs rootfs"
    LOOPDEV="$(mount | grep loop | grep /tmp/busyBoxRootfs | cut -d" " -f1)"
    umount /tmp/busyBoxRootfs/run/dbus/
    umount /tmp/busyBoxRootfs/sys
    sleep 1
    umount /tmp/busyBoxRootfs/proc
    umount /tmp/busyBoxRootfs/dev/pts
    umount /tmp/busyBoxRootfs/dev
    #umount /tmp/busyBoxRootfs/usr/lib
    # Sync beforehand so umount doesn't fail due to the device being busy still
    sync
    umount /tmp/busyBoxRootfs || true
    # Sometimes it fails still and only works by trying again
    while [ "$(mount | grep /tmp/busyBoxRootfs)" ]
    do
        echo "busyBoxRootfs is still mounted, trying again shortly.."
        sleep 3
        umount /tmp/busyBoxRootfs || true
    done
    echo "busyBoxRootfs unmounted"
    echo "Disassociating loop device >>$LOOPDEV<<"
    losetup -d $LOOPDEV
    echo "All done, you're now back at your kindle's shell."
fi
This is the script I used to run Chromium, simply copied from the instructions mentioned in the browser in 5.16.4 is chromium.
Code:
#!/bin/sh
export LD_LIBRARY_PATH="/usr/bin/chromium/lib:/usr/bin/chromium/usr/lib:/usr/lib/"
/usr/bin/chromium/bin/kindle_browser --no-zygote --no-sandbox --single-process --skia-resource-cache-limit-mb=64 \
     --disable-gpu --in-process-gpu --disable-gpu-sandbox --disable-gpu-compositing \
     --enable-dom-distiller --enable-distillability-service --force-device-scale-factor=2 --js-flags="jitless" \
     --content-shell-hide-toolbar --content-shell-host-window-cord=0,215 \
     --force-gpu-mem-available-mb=40 --enable-low-end-device-mode --enable-low-res-tiling --disable-site-isolation-trials \
     --user-agent="Mozilla/5.0 (X11; U; Linux armv7l like Android; en-us) AppleWebKit/531.2+ (KHTML, like Gecko) Version/5.0 Safari/533.2+ Kindle/3.0+"
This is the tree of my chroot.
Code:
.
├── sbin
│** ├── run-init -> ../bin/busybox
│** ├── arp -> ../bin/busybox
│** ├── switch_root -> ../bin/busybox
│** ├── acpid -> ../bin/busybox
│** ├── pivot_root -> ../bin/busybox
│** ├── mkfs.ext2 -> ../bin/busybox
│** ├── modinfo -> ../bin/busybox
│** ├── logread -> ../bin/busybox
│** ├── vconfig -> ../bin/busybox
│** ├── fsck.minix -> ../bin/busybox
│** ├── iproute -> ../bin/busybox
│** ├── uevent -> ../bin/busybox
│** ├── init -> ../bin/busybox
│** ├── ip -> ../bin/busybox
│** ├── mdev -> ../bin/busybox
│** ├── depmod -> ../bin/busybox
│** ├── hdparm -> ../bin/busybox
│** ├── lsmod -> ../bin/busybox
│** ├── mkfs.minix -> ../bin/busybox
│** ├── iptunnel -> ../bin/busybox
│** ├── fbsplash -> ../bin/busybox
│** ├── findfs -> ../bin/busybox
│** ├── runlevel -> ../bin/busybox
│** ├── route -> ../bin/busybox
│** ├── freeramdisk -> ../bin/busybox
│** ├── ifdown -> ../bin/busybox
│** ├── klogd -> ../bin/busybox
│** ├── raidautorun -> ../bin/busybox
│** ├── sysctl -> ../bin/busybox
│** ├── hwclock -> ../bin/busybox
│** ├── halt -> ../bin/busybox
│** ├── rmmod -> ../bin/busybox
│** ├── fstrim -> ../bin/busybox
│** ├── insmod -> ../bin/busybox
│** ├── modprobe -> ../bin/busybox
│** ├── syslogd -> ../bin/busybox
│** ├── ifconfig -> ../bin/busybox
│** ├── watchdog -> ../bin/busybox
│** ├── bootchartd -> ../bin/busybox
│** ├── blkid -> ../bin/busybox
│** ├── loadkmap -> ../bin/busybox
│** ├── mkdosfs -> ../bin/busybox
│** ├── adjtimex -> ../bin/busybox
│** ├── getty -> ../bin/busybox
│** ├── devmem -> ../bin/busybox
│** ├── ipaddr -> ../bin/busybox
│** ├── reboot -> ../bin/busybox
│** ├── tc -> ../bin/busybox
│** ├── iprule -> ../bin/busybox
│** ├── mke2fs -> ../bin/busybox
│** ├── makedevs -> ../bin/busybox
│** ├── ifup -> ../bin/busybox
│** ├── udhcpc -> ../bin/busybox
│** ├── slattach -> ../bin/busybox
│** ├── zcip -> ../bin/busybox
│** ├── start-stop-daemon -> ../bin/busybox
│** ├── tunctl -> ../bin/busybox
│** ├── swapoff -> ../bin/busybox
│** ├── mkfs.vfat -> ../bin/busybox
│** ├── ifenslave -> ../bin/busybox
│** ├── poweroff -> ../bin/busybox
│** ├── sulogin -> ../bin/busybox
│** ├── nameif -> ../bin/busybox
│** ├── losetup -> ../bin/busybox
│** ├── fsck -> ../bin/busybox
│** ├── setconsole -> ../bin/busybox
│** ├── fdisk -> ../bin/busybox
│** ├── iplink -> ../bin/busybox
│** ├── blockdev -> ../bin/busybox
│** ├── swapon -> ../bin/busybox
│** ├── mkswap -> ../bin/busybox
│** └── ipneigh -> ../bin/busybox
├── proc
├── lost+found
├── lib
│** ├── libnss_nisplus.so.2
│** ├── libanl.so.1
│** ├── libnss_files.so.2
│** ├── libnss_hesiod.so.2
│** ├── libusb-1.0.so.0.1.0
│** ├── libcom_err.so.2.1
│** ├── libss.so.2
│** ├── libuuid.so.1
│** ├── libcom_err.so.2
│** ├── libnss_compat.so.2
│** ├── librt.so.1
│** ├── libdl.so.2
│** ├── libcrypt.so.1
│** ├── libthread_db.so.1
│** ├── libgcc_s.so.1
│** ├── libext2fs.so.2.4
│** ├── libblkid.so.1.0
│** ├── libblkid.so.1
│** ├── libnss_nis.so.2
│** ├── libnsl.so.1
│** ├── libc.so.6
│** ├── libnss_db.so.2
│** ├── libpthread.so.0
│** ├── ld-linux-armhf.so.3
│** ├── libext2fs.so.2
│** ├── libm.so.6
│** ├── libss.so.2.0
│** ├── libBrokenLocale.so.1
│** ├── libusb-1.0.so.0
│** ├── libcidn.so.1
│** ├── libnss_dns.so.2
│** ├── libe2p.so.2
│** ├── libresolv.so.2
│** ├── libe2p.so.2.3
│** ├── libutil.so.1
│** └── libuuid.so.1.2
├── tmp
│** └── root
├── sys
├── run
│** └── dbus
├── runChromium.sh
├── linuxrc -> bin/busybox
├── linu
├── etc
│** └── hosts
├── usr
│** ├── sbin
│** │** ├── nbd-client -> ../../bin/busybox
│** │** ├── chpasswd -> ../../bin/busybox
│** │** ├── rdev -> ../../bin/busybox
│** │** ├── rtcwake -> ../../bin/busybox
│** │** ├── ubiattach -> ../../bin/busybox
│** │** ├── adduser -> ../../bin/busybox
│** │** ├── delgroup -> ../../bin/busybox
│** │** ├── fbset -> ../../bin/busybox
│** │** ├── dhcprelay -> ../../bin/busybox
│** │** ├── chroot -> ../../bin/busybox
│** │** ├── popmaildir -> ../../bin/busybox
│** │** ├── ubimkvol -> ../../bin/busybox
│** │** ├── deluser -> ../../bin/busybox
│** │** ├── i2ctransfer -> ../../bin/busybox
│** │** ├── add-shell -> ../../bin/busybox
│** │** ├── mim -> ../../bin/busybox
│** │** ├── dnsd -> ../../bin/busybox
│** │** ├── killall5 -> ../../bin/busybox
│** │** ├── i2cset -> ../../bin/busybox
│** │** ├── rdate -> ../../bin/busybox
│** │** ├── inetd -> ../../bin/busybox
│** │** ├── ubirename -> ../../bin/busybox
│** │** ├── readahead -> ../../bin/busybox
│** │** ├── telnetd -> ../../bin/busybox
│** │** ├── lpd -> ../../bin/busybox
│** │** ├── sendmail -> ../../bin/busybox
│** │** ├── ubirmvol -> ../../bin/busybox
│** │** ├── fdformat -> ../../bin/busybox
│** │** ├── ifplugd -> ../../bin/busybox
│** │** ├── readprofile -> ../../bin/busybox
│** │** ├── nanddump -> ../../bin/busybox
│** │** ├── arping -> ../../bin/busybox
│** │** ├── fsfreeze -> ../../bin/busybox
│** │** ├── tftpd -> ../../bin/busybox
│** │** ├── addgroup -> ../../bin/busybox
│** │** ├── ubiupdatevol -> ../../bin/busybox
│** │** ├── i2cget -> ../../bin/busybox
│** │** ├── chat -> ../../bin/busybox
│** │** ├── setlogcons -> ../../bin/busybox
│** │** ├── i2cdump -> ../../bin/busybox
│** │** ├── partprobe -> ../../bin/busybox
│** │** ├── fakeidentd -> ../../bin/busybox
│** │** ├── powertop -> ../../bin/busybox
│** │** ├── crond -> ../../bin/busybox
│** │** ├── brctl -> ../../bin/busybox
│** │** ├── httpd -> ../../bin/busybox
│** │** ├── ether-wake -> ../../bin/busybox
│** │** ├── ubidetach -> ../../bin/busybox
│** │** ├── svlogd -> ../../bin/busybox
│** │** ├── setfont -> ../../bin/busybox
│** │** ├── remove-shell -> ../../bin/busybox
│** │** ├── nandwrite -> ../../bin/busybox
│** │** ├── ntpd -> ../../bin/busybox
│** │** ├── loadfont -> ../../bin/busybox
│** │** ├── ubirsvol -> ../../bin/busybox
│** │** ├── i2cdetect -> ../../bin/busybox
│** │** ├── nologin -> ../../bin/busybox
│** │** ├── ftpd -> ../../bin/busybox
│** │** └── udhcpd -> ../../bin/busybox
│** ├── lib
│** │** ├── libpangoxft-1.0.so.0
│** │** ├── libfuse.so.2
│** │** ├── libgstcdda-0.10.so.0.18.0
│** │** ├── libhogweed.so.2.5
│** │** ├── libgdk_pixbuf_xlib-2.0.so.0
│** │** ├── libacehal_kv_storage.so.1
│** │** ├── libmesquiteutil.so.1
│** │** ├── libdaemon-monitor.so.1.0
│** │** ├── libglib-2.0.so.0
│** │** ├── libgstbase-0.10.so.0.22.0
│** │** ├── libxcb-xvmc.so.0.0.0
│** │** ├── libgpg-error.so.0
│** │** ├── libwavparser.so.1.0
│** │** ├── libxcb-image.so.0.0.0
│** │** ├── libxcb-dpms.so.0.0.0
│** │** ├── libappmgr.so.1
│** │** ├── libICE.so.6
│** │** ├── libatk-1.0.so.0.3009.1
│** │** ├── libcurl-extras.so.1.0
│** │** ├── libnl-route-3.so.200.17.0
│** │** ├── libelektra.so.3
│** │** ├── libbsd.so.0.9.1
│** │** ├── libogg.so.0.7.0
│** │** ├── libconnection-utils.so.1
│** │** ├── libasrwidgets.so.1.0
│** │** ├── libncurses.so.5
│** │** ├── libgstrtsp-0.10.so.0.18.0
│** │** ├── libxcb-reply.so.1
│** │** ├── libgmodule-2.0.so.0.2918.0
│** │** ├── libwavparser.so.1
│** │** ├── libxcb-dpms.so.0
│** │** ├── libxcb-res.so.0
│** │** ├── libxcb.so.1
│** │** ├── libasrevents.so.1
│** │** ├── libgstrtp-0.10.so.0
│** │** ├── libol.so.0.0.0
│** │** ├── libXdamage.so.1.1.0
│** │** ├── liblab126utils_advanced.so.1
│** │** ├── liblab126IGL.so.1.0
│** │** ├── libgio-2.0.so.0
│** │** ├── libXfont.so.1.4.1
│** │** ├── libol.so.0
│** │** ├── liblab126utils.so.1
│** │** ├── libICE.so.6.3.0
│** │** ├── libXt.so.6.0.0
│** │** ├── libXdamage.so.1
│** │** ├── libXss.so.1.0.0
│** │** ├── libhistory.so.5.2
│** │** ├── libdynconf.so.1
│** │** ├── libasrutils.so.1.0
│** │** ├── libnss3.so
│** │** ├── libxcb-xv.so.0.0.0
│** │** ├── libncursesw.so.5
│** │** ├── libgstbase-0.10.so.0
│** │** ├── libnspr4.so
│** │** ├── libXpm.so.4.11.0
│** │** ├── libip6tc.so.0.1.0
│** │** ├── libelektratools.so.2.0.0
│** │** ├── libxcb-xv.so.0
│** │** ├── libgstvideo-0.10.so.0.18.0
│** │** ├── libmesquiteconnectivity.so.1.0
│** │** ├── libmenuw.so.5.6
│** │** ├── libctest.so.1.0
│** │** ├── libidme.so.2.0
│** │** ├── libxcb-sync.so.1
│** │** ├── libxcb-xfixes.so.0
│** │** ├── libcares.so.2.2.0
│** │** ├── libXmuu.so.1
│** │** ├── libSM.so.6.0.1
│** │** ├── libenvload.so.1
│** │** ├── libgstrtp-0.10.so.0.18.0
│** │** ├── libgstcontroller-0.10.so.0.22.0
│** │** ├── libframebuffer_utils.so.1
│** │** ├── libscanner.so.1.0
│** │** ├── libasrwindowutils.so.1.0
│** │** ├── libasricuutils.so.1
│** │** ├── libzhsegmenter-icuplugin.so.1
│** │** ├── libnl-cli-3.so.200
│** │** ├── libaescrypt.so.1.0
│** │** ├── libgomp.so.1
│** │** ├── libxml2.so.2
│** │** ├── libnl-3.so.200
│** │** ├── libgailutil.so.18.0.1
│** │** ├── libGL.so.1.5.070601
│** │** ├── libiwnn.so.1
│** │** ├── libogg.so.0
│** │** ├── libprocessutils.so.1.0
│** │** ├── libxcb-screensaver.so.0.0.0
│** │** ├── libgtk-x11-2.0.so.0.2000.1
│** │** ├── libnettle.so.4
│** │** ├── libexslt.so.0
│** │** ├── libconfigutils.so.1
│** │** ├── libxcb-icccm.so.1
│** │** ├── libxcb-render-util.so.0
│** │** ├── libxcb-render-util.so.0.0.0
│** │** ├── libxcb-sync.so.1.0.0
│** │** ├── libacehal_bt.so.1.0
│** │** ├── libexpat.so.1
│** │** ├── libcrypto.so.1.0.0
│** │** ├── libgstcheck-0.10.so.0.22.0
│** │** ├── libasrgestureutils.so.1
│** │** ├── libgstnet-0.10.so.0.22.0
│** │** ├── libXinerama.so.1.0.0
│** │** ├── libpanelw.so.5
│** │** ├── libatomic.so.1.1.0
│** │** ├── liburiparser.so.1
│** │** ├── libxt9a.so.1
│** │** ├── libxmlsec1.so.1
│** │** ├── libxcb-damage.so.0
│** │** ├── libxcb-aux.so.0.0.0
│** │** ├── libltdl.so.3.1.6
│** │** ├── libxmlsec1-openssl.so.1
│** │** ├── libamzn_dha.so.2.1
│** │** ├── libsqlite3.so.0
│** │** ├── libmbedcrypto.so.2.12.0
│** │** ├── libteec.so.1.0
│** │** ├── libkb.so.1.0
│** │** ├── libperfutils.so..
│** │** ├── libip6tc.so.0
│** │** ├── libpillow.so.1.0
│** │** ├── libdatrie.so.1.3.5
│** │** ├── libprocessutils.so.1
│** │** ├── libota_utils.so.1.0
│** │** ├── libxkbfile.so.1
│** │** ├── libbz2.so.1.0
│** │** ├── libpango-1.0.so.0
│** │** ├── libxtables.so.7.1.0
│** │** ├── libiw.so.29
│** │** ├── libxcb-xinerama.so.0.0.0
│** │** ├── libenvload.so.1.0
│** │** ├── libxcb-glx.so.0.0.0
│** │** ├── libasrtts.so.1.0
│** │** ├── libpng16.so.16
│** │** ├── libXt.so.6
│** │** ├── libreadline.so.5
│** │** ├── libvoiceviewbringup.so..
│** │** ├── libMobi.so.1.0
│** │** ├── libpangocairo-1.0.so.0.2600.2
│** │** ├── libgstcdda-0.10.so.0
│** │** ├── libX11.so.6.3.0
│** │** ├── libxslt.so.1
│** │** ├── libpangox-1.0.so.0
│** │** ├── libauth.so.1
│** │** ├── libasrwindowutils.so.1
│** │** ├── libpillow.so.1
│** │** ├── libgsttag-0.10.so.0
│** │** ├── libXaw6.so.6.0.1
│** │** ├── libFoxitWrapper.so.1.0
│** │** ├── libgnutlsxx.so.28.1.0
│** │** ├── libasrflashUtils.so.1
│** │** ├── libmesquitedevice.so.1.0
│** │** ├── liboil-0.3.so.0
│** │** ├── libxcb-event.so.1.0.0
│** │** ├── libcurl.so.4
│** │** ├── libXau.so.6
│** │** ├── libmesquitedevice.so.1
│** │** ├── libperfutils.so.
│** │** ├── libstdc++.so.6.0.28
│** │** ├── libgstnetbuffer-0.10.so.0
│** │** ├── libXv.so.1
│** │** ├── libImlib2.so.1.4.6
│** │** ├── libharfbuzz.so.0.10102.0
│** │** ├── libscm.so.1.0
│** │** ├── libasrflashUtils.so.1.0
│** │** ├── libnih-dbus.so.1.0.0
│** │** ├── libssp.so.0
│** │** ├── libXfixes.so.3
│** │** ├── libpdc.so.1
│** │** ├── libspeex.so.1.5.0
│** │** ├── libarchive.so.1
│** │** ├── libgstsdp-0.10.so.0.18.0
│** │** ├── libpangoxft-1.0.so.0.2600.2
│** │** ├── libmenuw.so.5
│** │** ├── libasrEarcon.so.1
│** │** ├── libtodo.so.1
│** │** ├── libmesquiteconnectivity.so.1
│** │** ├── libpowerutil.so.1
│** │** ├── libhyphen.so.0.2.1
│** │** ├── libgstrtsp-0.10.so.0
│** │** ├── libxcb-render.so.0
│** │** ├── libGL.so.1
│** │** ├── libgraphite2.so.3.2.1
│** │** ├── libxdg-basedir.so.1.0.0
│** │** ├── libxcb-keysyms.so.1.0.0
│** │** ├── libxcb.so.1.1.0
│** │** ├── libmesquitewidget.so.1
│** │** ├── libfribidi.so.0.4.0
│** │** ├── libicudata.so.58
│** │** ├── libIvonaEInkAPI.so.1.0
│** │** ├── libelektratools.so.2
│** │** ├── libfribidi.so.0
│** │** ├── libxslt.so.1.1.28
│** │** ├── libgstpbutils-0.10.so.0.18.0
│** │** ├── libgstapp-0.10.so.0.18.0
│** │** ├── libasrevents.so.1.0
│** │** ├── libxcb-present.so.0.0.0
│** │** ├── libxcb-composite.so.0.0.0
│** │** ├── libhogweed.so.2
│** │** ├── libgdk_pixbuf-2.0.so.0.2000.1
│** │** ├── libhyphen.so.0
│** │** ├── libxtables.so.7
│** │** ├── libXss.so.1
│** │** ├── libxcb-screensaver.so.0
│** │** ├── libxcb-record.so.0.0.0
│** │** ├── libiptc.so.0.0.0
│** │** ├── libgstnet-0.10.so.0
│** │** ├── libacehal_device_info.so.1.0
│** │** ├── libblanket.so.1
│** │** ├── libacsbtfdlib.so.1.0
│** │** ├── libjpeg.so.8
│** │** ├── libformw.so.5.6
│** │** ├── libctest.so.1
│** │** ├── libxt9a.so.1.0
│** │** ├── libmesquitejscore.so.1.0
│** │** ├── libxcb-shm.so.0
│** │** ├── libstackdump.so.1.0
│** │** ├── libdbus-1.so.3
│** │** ├── libcares.so.2
│** │** ├── libvoice_en_us_salli.so.1.6
│** │** ├── libplds4.so
│** │** ├── libgmp.so.3.4.1
│** │** ├── libxcb-shm.so.0.0.0
│** │** ├── libcairo.so.2
│** │** ├── libgnutlsxx.so.28
│** │** ├── libxcb-xinerama.so.0
│** │** ├── libfontconfig.so.1.4.4
│** │** ├── libxcb-xkb.so.1.0.0
│** │** ├── libgstdataprotocol-0.10.so.0
│** │** ├── libgstreamer-0.10.so.0
│** │** ├── libformw.so.5
│** │** ├── libtag_c.so.0
│** │** ├── libprotobuf-lite.so.7.0.0
│** │** ├── libxcb-damage.so.0.0.0
│** │** ├── libccat.so.1.0
│** │** ├── liblipc_python.so.1
│** │** ├── libxcb-xvmc.so.0
│** │** ├── libicutu.so.58.2
│** │** ├── libmesquitewidget.so.1.0
│** │** ├── libpanelw.so.5.6
│** │** ├── libtodoKindle.so.1
│** │** ├── libdaemon-monitor.so.1
│** │** ├── libxcb-glx.so.0
│** │** ├── libkb.so.1
│** │** ├── libaescrypt.so.1
│** │** ├── libtag.so.1
│** │** ├── libgstsdp-0.10.so.0
│** │** ├── libxcb-property.so.1.0.0
│** │** ├── libpixman-1.so.0.18.4
│** │** ├── libXfont.so.1
│** │** ├── libstartup-notification-1.so.0.0.0
│** │** ├── libertl.so.1
│** │** ├── libappmgr.so.1.0
│** │** ├── libmbedcrypto.so.3
│** │** ├── libgstriff-0.10.so.0.18.0
│** │** ├── libtmd_utils.so.1
│** │** ├── libXfixes.so.3.1.0
│** │** ├── libresegmenter.so.1
│** │** ├── libacehal_device_info.so.1
│** │** ├── libXrandr.so.2
│** │** ├── libXft.so.2
│** │** ├── libImlib2.so.1
│** │** ├── libwinMgrUtils.so.1.0
│** │** ├── libip4tc.so.0.1.0
│** │** ├── libxmlsec1.so.1.2.16
│** │** ├── libxcb-xtest.so.0.0.0
│** │** ├── libbsd.so.0
│** │** ├── libaudibleaaxsdk.so.1.0
│** │** ├── libgstfft-0.10.so.0.18.0
│** │** ├── libgobject-2.0.so.0.2918.0
│** │** ├── libgstaudio-0.10.so.0
│** │** ├── libxcb-dri2.so.0.0.0
│** │** ├── libsoup-2.4.so.1
│** │** ├── libXft.so.2.1.13
│** │** ├── libxcb-xinput.so.0
│** │** ├── libfontenc.so.1
│** │** ├── libpixman-1.so.0
│** │** ├── libconnection-utils.so.1.0
│** │** ├── libxt9zh.so.1
│** │** ├── libmixerCommon.so.1
│** │** ├── libusbpp-0.1.so.4
│** │** ├── libgstaudio-0.10.so.0.18.0
│** │** ├── libframebuffer_utils.so.1.0
│** │** ├── libXdmcp.so.6.0.0
│** │** ├── libccat.so.1
│** │** ├── libform.so.5.6
│** │** ├── libnl-route-3.so.200
│** │** ├── libXpm.so.4
│** │** ├── libmenu.so.5
│** │** ├── libxcb-xtest.so.0
│** │** ├── libarchive.so.1.0
│** │** ├── libasound.so.2
│** │** ├── libelektra.so.3.0.0
│** │** ├── libbz2.so.1.0.8
│** │** ├── libxcb-record.so.0
│** │** ├── libgmodule-2.0.so.0
│** │** ├── libXaw7.so.7
│** │** ├── libicudata.so.58.2
│** │** ├── libnl-nf-3.so.200
│** │** ├── libtag_c.so.0.0.0
│** │** ├── libXaw6.so.6
│** │** ├── libjsclassmodule.so..
│** │** ├── libpciaccess.so.0.10.8
│** │** ├── libresegmenter.so.1.0
│** │** ├── libfreetype.so.6
│** │** ├── libpdc.so.1.0
│** │** ├── libspeexdsp.so.1
│** │** ├── librender-utils.so.1
│** │** ├── libeinkViewer.so.1
│** │** ├── libotaup.so.1
│** │** ├── libdevice-cap.so.1
│** │** ├── libnih-dbus.so.1
│** │** ├── libgdk_pixbuf-2.0.so.0
│** │** ├── libota_utils.so.1
│** │** ├── libzhsegmenter-icuplugin.so.1.0
│** │** ├── libdbus-glib-1.so.2.1.0
│** │** ├── libaudioClient.so.1
│** │** ├── libgstvideo-0.10.so.0
│** │** ├── libtag.so.1.5.0
│** │** ├── libev.so.3.0.0
│** │** ├── libharfbuzz.so.0
│** │** ├── libz.so.1.2.13
│** │** ├── libjsclassmodule.so.
│** │** ├── libcjson.so
│** │** ├── libwinMgrUtils.so.1
│** │** ├── libxkbfile.so.1.0.2
│** │** ├── libcurl-extras.so.1
│** │** ├── libacehal_kv_storage.so.1.0
│** │** ├── libxt9k.so.1.0
│** │** ├── libxcb-randr.so.0.1.0
│** │** ├── libcertman.so.1.0
│** │** ├── libxcb-property.so.1
│** │** ├── libcurl.so.4.8.0
│** │** ├── libprotobuf-lite.so.7
│** │** ├── libpangoft2-1.0.so.0
│** │** ├── libXaw.so.6
│** │** ├── libvoiceviewbringup.so.
│** │** ├── libdpm.so.1.0
│** │** ├── libxcb-xf86dri.so.0.0.0
│** │** ├── liboil-0.3.so.0.2.0
│** │** ├── libtinysegmenter-icuplugin.so.1.0
│** │** ├── libgstreamer-0.10.so.0.22.0
│** │** ├── libkiwi.so.1
│** │** ├── libgnutls.so.28.41.9
│** │** ├── libkiwi.so.1.0
│** │** ├── libgstnetbuffer-0.10.so.0.18.0
│** │** ├── libauth.so.1.0
│** │** ├── libamzn_dha.so.2
│** │** ├── libteec.so.1
│** │** ├── libXdmcp.so.6
│** │** ├── libdpm.so.1
│** │** ├── libxcb-render.so.0.0.0
│** │** ├── libpanel.so.5.6
│** │** ├── libpng16.so.16.36.0
│** │** ├── libXext.so.6.4.0
│** │** ├── libgmp.so.3
│** │** ├── libzstd.so.1.4.9
│** │** ├── libgdk-x11-2.0.so.0
│** │** ├── libertl.so.1.0
│** │** ├── libgailutil.so.18
│** │** ├── libgstinterfaces-0.10.so.0
│** │** ├── libnl-3.so.200.17.0
│** │** ├── libiperf.so.0
│** │** ├── libicuio.so.58.2
│** │** ├── libdbus-glib-1.so.2
│** │** ├── libXrandr.so.2.2.0
│** │** ├── libssl.so.1.0.0
│** │** ├── libmesquitecontextState.so.1
│** │** ├── libIvonaEInkCommon.so.1.0
│** │** ├── libxcb-image.so.0
│** │** ├── libxmlsec1-openssl.so.1.2.16
│** │** ├── libgstdataprotocol-0.10.so.0.22.0
│** │** ├── libreadline.so.5.2
│** │** ├── liburlbuilder.so.1.0
│** │** ├── libgobject-2.0.so.0
│** │** ├── libpangocairo-1.0.so.0
│** │** ├── libicui18n.so.58.2
│** │** ├── libpowerutil.so.1.0
│** │** ├── libdmld.so.1.0
│** │** ├── libfrontlight.so.1
│** │** ├── libmetrics.so.1
│** │** ├── libpanel.so.5
│** │** ├── libform.so.5
│** │** ├── libmetrics.so.1.0
│** │** ├── libX11-xcb.so.1.0.0
│** │** ├── libwlf.so.1
│** │** ├── libusb-0.1.so.4.4.4
│** │** ├── libfontenc.so.1.0.0
│** │** ├── liblab126utils_advanced.so.1.0
│** │** ├── libmenu.so.5.6
│** │** ├── libotaup.so.1.0
│** │** ├── librender-utils.so.1.0
│** │** ├── libmesquiteutil.so.1.0
│** │** ├── libextractor_util.so.1
│** │** ├── libasrutils.so.1
│** │** ├── libxcb-event.so.1
│** │** ├── libxcb-aux.so.0
│** │** ├── libEGL.so.1.0
│** │** ├── libnih.so.1
│** │** ├── libwlf.so.1.0
│** │** ├── liblab126_convert.so.1.0
│** │** ├── libmesquitelipc.so.1.0
│** │** ├── libstackdump.so.1
│** │** ├── libexpat.so.1.6.10
│** │** ├── libiwnn.so.1.0
│** │** ├── libfreetype.so.6.16.0
│** │** ├── libgomp.so.1.0.0
│** │** ├── libssp.so.0.0.0
│** │** ├── libglib-2.0.so.0.2918.0
│** │** ├── liblab126_convert.so.1
│** │** ├── libdynconfig.so.1
│** │** ├── libgdk_pixbuf_xlib-2.0.so.0.2000.1
│** │** ├── libfrontlight.so.1.0
│** │** ├── libncurses.so.5.6
│** │** ├── libgstcontroller-0.10.so.0
│** │** ├── libnettle.so.4.7
│** │** ├── libltdl.so.3
│** │** ├── libtasn1.so.6.4.2
│** │** ├── libmesquitejscore.so.1
│** │** ├── libspeex.so.1
│** │** ├── libev.so.3
│** │** ├── libmesquiteconfig.so.1
│** │** ├── libaudibleaaxsdk.so.1
│** │** ├── libxcb-randr.so.0
│** │** ├── libSM.so.6
│** │** ├── libxcb-shape.so.0
│** │** ├── libtmd_utils.so.1.0
│** │** ├── libOSMesa.so.7
│** │** ├── libnl-genl-3.so.200
│** │** ├── libicutu.so.58
│** │** ├── libX11-xcb.so.1
│** │** ├── libsoup-2.4.so.1.4.0
│** │** ├── libpango-1.0.so.0.2600.2
│** │** ├── libmesquiteconfig.so.1.0
│** │** ├── libaudioShmbuffer.so.1
│** │** ├── libgstfft-0.10.so.0
│** │** ├── libplc4.so
│** │** ├── libncursesw.so.5.6
│** │** ├── libgstinterfaces-0.10.so.0.18.0
│** │** ├── libXi.so.6.1.0
│** │** ├── libxcb-composite.so.0
│** │** ├── libtts_engine.so.1.6
│** │** ├── libudev.so.0
│** │** ├── libiperf.so.0.0.0
│** │** ├── libxcb-present.so.0
│** │** ├── libxt9zh.so.1.0
│** │** ├── libxcb-atom.so.1.0.0
│** │** ├── libasrwidgets.so.1
│** │** ├── libexslt.so.0.8.17
│** │** ├── libtasn1.so.6
│** │** ├── libnl-nf-3.so.200.17.0
│** │** ├── libmbedtls.so.2.12.0
│** │** ├── libdmld.so.1
│** │** ├── libmbedx509.so.0
│** │** ├── libnl-genl-3.so.200.17.0
│** │** ├── libicuio.so.58
│** │** ├── liblipc.so.1.0
│** │** ├── libxcb-shape.so.0.0.0
│** │** ├── libasrscreenwidgetcontroller.so.1
│** │** ├── liburlbuilder.so.1
│** │** ├── libzstd.so.1
│** │** ├── libtinysegmenter-icuplugin.so.1
│** │** ├── libkiwiproxy.so.1.0
│** │** ├── libsqlite3.so.0.8.6
│** │** ├── libXext.so.6
│** │** ├── libhistory.so.5
│** │** ├── libz.so.1
│** │** ├── libacsbtfdlib.so.1
│** │** ├── libmesquitecontent.so.1
│** │** ├── liburiparser.so.1.0.10
│** │** ├── libgstpbutils-0.10.so.0
│** │** ├── libharfbuzz-icu.so.0.10102.0
│** │** ├── libgstapp-0.10.so.0
│** │** ├── libgio-2.0.so.0.2918.0
│** │** ├── libmbedx509.so.2.12.0
│** │** ├── libdatrie.so.1
│** │** ├── libcppbase.so.1.0
│** │** ├── libaudioShmbuffer.so.1.0
│** │** ├── libasrtts.so.1
│** │** ├── libpangox-1.0.so.0.2600.2
│** │** ├── libFoxitWrapper.so.1
│** │** ├── libeinkViewer.so.1.0
│** │** ├── libffi.so.5
│** │** ├── libxcb-xinput.so.0.1.0
│** │** ├── libscm.so.1
│** │** ├── libnl-cli-3.so.200.17.0
│** │** ├── libgthread-2.0.so.0.2918.0
│** │** ├── libgtk-x11-2.0.so.0
│** │** ├── libgctester.so.1
│** │** ├── libulockmgr.so.1
│** │** ├── libiptc.so.0
│** │** ├── libOSMesa.so.7.6.1
│** │** ├── libcontentpackd.so.1
│** │** ├── libXaw7.so.7.0.0
│** │** ├── libXi.so.6
│** │** ├── libappreg.so.1
│** │** ├── libgdk-x11-2.0.so.0.2000.1
│** │** ├── libdbus-1.so.3.4.0
│** │** ├── libXcursor.so.1
│** │** ├── libcertman.so.1
│** │** ├── libtodoKindle.so.1.0
│** │** ├── libmbedtls.so.11
│** │** ├── libdeviced.so.1
│** │** ├── libspeexdsp.so.1.5.0
│** │** ├── libstdc++.so.6
│** │** ├── libtodo.so.1.0
│** │** ├── liblipc_python.so.1.0
│** │** ├── libperf_util.so.1.0
│** │** ├── libasrEarcon.so.1.0
│** │** ├── libdeviced.so.1.0
│** │** ├── liblab126IGL.so.1
│** │** ├── libmesquitelipc.so.1
│** │** ├── libacehal_log.so.1.0
│** │** ├── libMobi.so.1
│** │** ├── libxcb-dri3.so.0
│** │** ├── libblanket.so.1.0
│** │** ├── libX11.so.6
│** │** ├── libgpg-error.so.0.3.0
│** │** ├── libzhtransliterator.so.1
│** │** ├── libgstriff-0.10.so.0
│** │** ├── libEGL.so.1
│** │** ├── libperf_util.so.1
│** │** ├── liblipc.so.1
│** │** ├── libasrgestureutils.so.1.0
│** │** ├── libusb-0.1.so.4
│** │** ├── libbt-vendor.so.1
│** │** ├── libudev.so.0.5.0
│** │** ├── libcontentpackd.so.1.0
│** │** ├── libasound.so.2.0.0
│** │** ├── libkiwiproxy.so.1
│** │** ├── libxt9k.so.1
│** │** ├── libXau.so.6.0.0
│** │** ├── libicuuc.so.58.2
│** │** ├── libappreg.so.1.0
│** │** ├── libmixerAPI.so.1
│** │** ├── libXmuu.so.1.0.0
│** │** ├── libatk-1.0.so.0
│** │** ├── libaudioClient.so.1.0
│** │** ├── libelektra-cpp.so.0
│** │** ├── libbt-vendor.so.1.0
│** │** ├── libasrscreenwidgetcontroller.so.1.0
│** │** ├── libxcb-xfixes.so.0.0.0
│** │** ├── libgsttag-0.10.so.0.18.0
│** │** ├── libXrender.so.1.3.0
│** │** ├── libdynconf.so.1.0
│** │** ├── libxcb-icccm.so.1.0.0
│** │** ├── libpciaccess.so.0
│** │** ├── libjpeg.so.8.0.2
│** │** ├── libdevice-cap.so.1.0
│** │** ├── liblipc++.so.1
│** │** ├── libgstcheck-0.10.so.0
│** │** ├── libusbpp-0.1.so.4.4.4
│** │** ├── libXtst.so.6
│** │** ├── libXaw.so.7
│** │** ├── libicuuc.so.58
│** │** ├── libcppbase.so.1
│** │** ├── libconfigutils.so.1.0
│** │** ├── libXv.so.1.0.0
│** │** ├── libxcb-keysyms.so.1
│** │** ├── libxcb-xf86dri.so.0
│** │** ├── libffi.so.5.0.10
│** │** ├── libgcrypt.so.11.5.2
│** │** ├── libllog.so.1
│** │** ├── libgraphite2.so.3
│** │** ├── liblab126graphics.so.1.0
│** │** ├── libfuse.so.2.9.7
│** │** ├── libmixerCommon.so.1.0
│** │** ├── libgthread-2.0.so.0
│** │** ├── libXinerama.so.1
│** │** ├── libxcb-xkb.so.1
│** │** ├── libasricuutils.so.1.0
│** │** ├── libstartup-notification-1.so.0
│** │** ├── libzhtransliterator.so.1.0
│** │** ├── libxcb-dri3.so.0.0.0
│** │** ├── libxcb-res.so.0.0.0
│** │** ├── libllog.so.1.0
│** │** ├── libnssutil3.so
│** │** ├── libXcursor.so.1.0.2
│** │** ├── libXmu.so.6
│** │** ├── libacehal_log.so.1
│** │** ├── libxcb-atom.so.1
│** │** ├── libxml2.so.2.9.1
│** │** ├── libextractor_util.so.1.0
│** │** ├── libmesquitecontextState.so.1.0
│** │** ├── libatomic.so.1
│** │** ├── libdynconfig.so.1.0
│** │** ├── libXtst.so.6.1.0
│** │** ├── libxcb-dri2.so.0
│** │** ├── libmixerAPI.so.1.0
│** │** ├── liblipc++.so.1.0
│** │** ├── libXmu.so.6.2.0
│** │** ├── libharfbuzz-icu.so.0
│** │** ├── libacehal_bt.so.1
│** │** ├── libulockmgr.so.1.0.1
│** │** ├── libelektra-cpp.so.0.0.0
│** │** ├── libicui18n.so.58
│** │** ├── libxcb-reply.so.1.0.0
│** │** ├── libidme.so.2
│** │** ├── libgctester.so.1.0
│** │** ├── liblab126graphics.so.1
│** │** ├── libnih.so.1.0.0
│** │** ├── libXrender.so.1
│** │** ├── libxdg-basedir.so.1
│** │** ├── libscanner.so.1
│** │** ├── libip4tc.so.0
│** │** ├── libmesquitecontent.so.1.0
│** │** ├── liblab126utils.so.1.0
│** │** ├── libpangoft2-1.0.so.0.2600.2
│** │** ├── libfontconfig.so.1
│** │** ├── libcairo.so.2.11000.0
│** │** ├── libgnutls.so.28
│** │** └── libgcrypt.so.11
│** └── bin
│**     ├── reset -> ../../bin/busybox
│**     ├── top -> ../../bin/busybox
│**     ├── bzip2 -> ../../bin/busybox
│**     ├── tftp -> ../../bin/busybox
│**     ├── mkpasswd -> ../../bin/busybox
│**     ├── beep -> ../../bin/busybox
│**     ├── lpr -> ../../bin/busybox
│**     ├── fuser -> ../../bin/busybox
│**     ├── yes -> ../../bin/busybox
│**     ├── telnet -> ../../bin/busybox
│**     ├── ftpput -> ../../bin/busybox
│**     ├── who -> ../../bin/busybox
│**     ├── bunzip2 -> ../../bin/busybox
│**     ├── uniq -> ../../bin/busybox
│**     ├── shuf -> ../../bin/busybox
│**     ├── tail -> ../../bin/busybox
│**     ├── ts -> ../../bin/busybox
│**     ├── udhcpc6 -> ../../bin/busybox
│**     ├── lsscsi -> ../../bin/busybox
│**     ├── time -> ../../bin/busybox
│**     ├── lpq -> ../../bin/busybox
│**     ├── lzcat -> ../../bin/busybox
│**     ├── awk -> ../../bin/busybox
│**     ├── tee -> ../../bin/busybox
│**     ├── nmeter -> ../../bin/busybox
│**     ├── setuidgid -> ../../bin/busybox
│**     ├── comm -> ../../bin/busybox
│**     ├── seq -> ../../bin/busybox
│**     ├── chrt -> ../../bin/busybox
│**     ├── pscan -> ../../bin/busybox
│**     ├── chpst -> ../../bin/busybox
│**     ├── patch -> ../../bin/busybox
│**     ├── env -> ../../bin/busybox
│**     ├── nc -> ../../bin/busybox
│**     ├── runsv -> ../../bin/busybox
│**     ├── bc -> ../../bin/busybox
│**     ├── dirname -> ../../bin/busybox
│**     ├── expand -> ../../bin/busybox
│**     ├── lsof -> ../../bin/busybox
│**     ├── tac -> ../../bin/busybox
│**     ├── cut -> ../../bin/busybox
│**     ├── find -> ../../bin/busybox
│**     ├── printf -> ../../bin/busybox
│**     ├── pkill -> ../../bin/busybox
│**     ├── basename -> ../../bin/busybox
│**     ├── unzip -> ../../bin/busybox
│**     ├── du -> ../../bin/busybox
│**     ├── flock -> ../../bin/busybox
│**     ├── sha3sum -> ../../bin/busybox
│**     ├── md5sum -> ../../bin/busybox
│**     ├── tcpsvd -> ../../bin/busybox
│**     ├── ftpget -> ../../bin/busybox
│**     ├── nslookup -> ../../bin/busybox
│**     ├── smemcap -> ../../bin/busybox
│**     ├── crontab -> ../../bin/busybox
│**     ├── install -> ../../bin/busybox
│**     ├── sum -> ../../bin/busybox
│**     ├── nsenter -> ../../bin/busybox
│**     ├── whois -> ../../bin/busybox
│**     ├── which -> ../../bin/busybox
│**     ├── unxz -> ../../bin/busybox
│**     ├── wall -> ../../bin/busybox
│**     ├── script -> ../../bin/busybox
│**     ├── openvt -> ../../bin/busybox
│**     ├── mesg -> ../../bin/busybox
│**     ├── ascii -> ../../bin/busybox
│**     ├── dc -> ../../bin/busybox
│**     ├── chvt -> ../../bin/busybox
│**     ├── traceroute -> ../../bin/busybox
│**     ├── udpsvd -> ../../bin/busybox
│**     ├── svc -> ../../bin/busybox
│**     ├── less -> ../../bin/busybox
│**     ├── fold -> ../../bin/busybox
│**     ├── ipcs -> ../../bin/busybox
│**     ├── timeout -> ../../bin/busybox
│**     ├── dpkg-deb -> ../../bin/busybox
│**     ├── sha512sum -> ../../bin/busybox
│**     ├── factor -> ../../bin/busybox
│**     ├── wc -> ../../bin/busybox
│**     ├── pgrep -> ../../bin/busybox
│**     ├── fgconsole -> ../../bin/busybox
│**     ├── test -> ../../bin/busybox
│**     ├── svok -> ../../bin/busybox
│**     ├── realpath -> ../../bin/busybox
│**     ├── ipcrm -> ../../bin/busybox
│**     ├── sv -> ../../bin/busybox
│**     ├── fallocate -> ../../bin/busybox
│**     ├── sort -> ../../bin/busybox
│**     ├── cryptpw -> ../../bin/busybox
│**     ├── [ -> ../../bin/busybox
│**     ├── xzcat -> ../../bin/busybox
│**     ├── rx -> ../../bin/busybox
│**     ├── diff -> ../../bin/busybox
│**     ├── free -> ../../bin/busybox
│**     ├── split -> ../../bin/busybox
│**     ├── ssl_client -> ../../bin/busybox
│**     ├── lzma -> ../../bin/busybox
│**     ├── paste -> ../../bin/busybox
│**     ├── setfattr -> ../../bin/busybox
│**     ├── vlock -> ../../bin/busybox
│**     ├── nl -> ../../bin/busybox
│**     ├── uuencode -> ../../bin/busybox
│**     ├── cal -> ../../bin/busybox
│**     ├── crc32 -> ../../bin/busybox
│**     ├── traceroute6 -> ../../bin/busybox
│**     ├── tty -> ../../bin/busybox
│**     ├── strings -> ../../bin/busybox
│**     ├── hd -> ../../bin/busybox
│**     ├── unshare -> ../../bin/busybox
│**     ├── cmp -> ../../bin/busybox
│**     ├── logger -> ../../bin/busybox
│**     ├── logname -> ../../bin/busybox
│**     ├── blkdiscard -> ../../bin/busybox
│**     ├── users -> ../../bin/busybox
│**     ├── cksum -> ../../bin/busybox
│**     ├── rpm2cpio -> ../../bin/busybox
│**     ├── renice -> ../../bin/busybox
│**     ├── taskset -> ../../bin/busybox
│**     ├── deallocvt -> ../../bin/busybox
│**     ├── unix2dos -> ../../bin/busybox
│**     ├── nohup -> ../../bin/busybox
│**     ├── od -> ../../bin/busybox
│**     ├── pstree -> ../../bin/busybox
│**     ├── hexdump -> ../../bin/busybox
│**     ├── head -> ../../bin/busybox
│**     ├── expr -> ../../bin/busybox
│**     ├── sha1sum -> ../../bin/busybox
│**     ├── whoami -> ../../bin/busybox
│**     ├── unlzma -> ../../bin/busybox
│**     ├── unlink -> ../../bin/busybox
│**     ├── xargs -> ../../bin/busybox
│**     ├── readlink -> ../../bin/busybox
│**     ├── microcom -> ../../bin/busybox
│**     ├── volname -> ../../bin/busybox
│**     ├── man -> ../../bin/busybox
│**     ├── envuidgid -> ../../bin/busybox
│**     ├── wget -> ../../bin/busybox
│**     ├── passwd -> ../../bin/busybox
│**     ├── clear -> ../../bin/busybox
│**     ├── showkey -> ../../bin/busybox
│**     ├── chromium
│**     │** ├── lib
│**     │** │** ├── libnss_compat.so.2
│**     │** │** ├── librt.so.1
│**     │** │** ├── libdl.so.2
│**     │** │** ├── libSegFault.so
│**     │** │** ├── libc.so.6
│**     │** │** ├── libnss_db.so.2
│**     │** │** ├── libpthread.so.0
│**     │** │** ├── ld-linux-armhf.so.3
│**     │** │** ├── libnss_dns.so.2
│**     │** │** └── libresolv.so.2
│**     │** ├── etc
│**     │** │** └── fonts
│**     │** │**     ├── conf.d
│**     │** │**     │** ├── 45-latin.conf -> ../conf.avail/45-latin.conf
│**     │** │**     │** ├── 51-local.conf -> ../conf.avail/51-local.conf
│**     │** │**     │** ├── 20-unhint-small-vera.conf -> ../conf.avail/20-unhint-small-vera.conf
│**     │** │**     │** ├── 90-synthetic.conf -> ../conf.avail/90-synthetic.conf
│**     │** │**     │** ├── 50-user.conf -> ../conf.avail/50-user.conf
│**     │** │**     │** ├── 49-sansserif.conf -> ../conf.avail/49-sansserif.conf
│**     │** │**     │** ├── 20-fix-globaladvance.conf -> ../conf.avail/20-fix-globaladvance.conf
│**     │** │**     │** ├── 80-delicious.conf -> ../conf.avail/80-delicious.conf
│**     │** │**     │** ├── 65-fonts-persian.conf -> ../conf.avail/65-fonts-persian.conf
│**     │** │**     │** ├── 30-metric-aliases.conf -> ../conf.avail/30-metric-aliases.conf
│**     │** │**     │** ├── 65-nonlatin.conf -> ../conf.avail/65-nonlatin.conf
│**     │** │**     │** ├── 69-unifont.conf -> ../conf.avail/69-unifont.conf
│**     │** │**     │** ├── 30-urw-aliases.conf -> ../conf.avail/30-urw-aliases.conf
│**     │** │**     │** ├── 40-nonlatin.conf -> ../conf.avail/40-nonlatin.conf
│**     │** │**     │** ├── 60-latin.conf -> ../conf.avail/60-latin.conf
│**     │** │**     │** └── 48-chromium-local.conf
│**     │** │**     ├── conf.avail -> /etc/fonts/conf.avail
│**     │** │**     ├── fonts.dtd -> /etc/fonts/fonts.dtd
│**     │** │**     └── fonts.conf -> /etc/fonts/fonts.conf
│**     │** ├── usr
│**     │** │** └── lib
│**     │** │**     ├── libglib-2.0.so.0
│**     │** │**     ├── libgio-2.0.so.0
│**     │** │**     ├── libgmodule-2.0.so.0
│**     │** │**     ├── libgobject-2.0.so.0
│**     │** │**     ├── libatk-bridge-2.0.so.0
│**     │** │**     ├── libatspi.so.0
│**     │** │**     └── libgthread-2.0.so.0
│**     │** ├── bin
│**     │** │** ├── kindle_browser.pak
│**     │** │** ├── kindle_browser
│**     │** │** ├── locales
│**     │** │** ├── v8_context_snapshot.bin
│**     │** │** ├── icudtl.dat
│**     │** │** ├── kindle_browser.log
│**     │** │** └── natives_blob.bin
│**     │** └── files
│**     │**     └── fonts
│**     │**         ├── system_fonts -> /usr/java/lib/fonts/
│**     │**         └── NotoSansJP-Medium.ttf
│**     ├── dpkg -> ../../bin/busybox
│**     ├── ttysize -> ../../bin/busybox
│**     ├── bzcat -> ../../bin/busybox
│**     ├── last -> ../../bin/busybox
│**     ├── groups -> ../../bin/busybox
│**     ├── tr -> ../../bin/busybox
│**     ├── hexedit -> ../../bin/busybox
│**     ├── eject -> ../../bin/busybox
│**     ├── uudecode -> ../../bin/busybox
│**     ├── dumpleases -> ../../bin/busybox
│**     ├── uptime -> ../../bin/busybox
│**     ├── hostid -> ../../bin/busybox
│**     ├── lsusb -> ../../bin/busybox
│**     ├── pwdx -> ../../bin/busybox
│**     ├── mkfifo -> ../../bin/busybox
│**     ├── envdir -> ../../bin/busybox
│**     ├── lspci -> ../../bin/busybox
│**     ├── runsvdir -> ../../bin/busybox
│**     ├── softlimit -> ../../bin/busybox
│**     ├── truncate -> ../../bin/busybox
│**     ├── w -> ../../bin/busybox
│**     ├── nproc -> ../../bin/busybox
│**     ├── id -> ../../bin/busybox
│**     ├── [[ -> ../../bin/busybox
│**     ├── pmap -> ../../bin/busybox
│**     ├── dos2unix -> ../../bin/busybox
│**     ├── setkeycodes -> ../../bin/busybox
│**     ├── sha256sum -> ../../bin/busybox
│**     ├── xz -> ../../bin/busybox
│**     ├── killall -> ../../bin/busybox
│**     ├── setsid -> ../../bin/busybox
│**     ├── resize -> ../../bin/busybox
│**     ├── shred -> ../../bin/busybox
│**     ├── xxd -> ../../bin/busybox
│**     └── unexpand -> ../../bin/busybox
├── mnt
├── dev
│** └── pts
├── bin
│** ├── sed -> busybox
│** ├── fdflush -> busybox
│** ├── sh -> busybox
│** ├── mount -> busybox
│** ├── dumpkmap -> busybox
│** ├── kill -> busybox
│** ├── chattr -> busybox
│** ├── gzip -> busybox
│** ├── scriptreplay -> busybox
│** ├── ping -> busybox
│** ├── cttyhack -> busybox
│** ├── ln -> busybox
│** ├── base32 -> busybox
│** ├── sync -> busybox
│** ├── resume -> busybox
│** ├── pidof -> busybox
│** ├── ionice -> busybox
│** ├── egrep -> busybox
│** ├── getopt -> busybox
│** ├── df -> busybox
│** ├── rev -> busybox
│** ├── chmod -> busybox
│** ├── kbd_mode -> busybox
│** ├── grep -> busybox
│** ├── dmesg -> busybox
│** ├── busybox
│** ├── linux32 -> busybox
│** ├── pipe_progress -> busybox
│** ├── vi -> busybox
│** ├── mktemp -> busybox
│** ├── lsattr -> busybox
│** ├── ed -> busybox
│** ├── stty -> busybox
│** ├── ash -> busybox
│** ├── hush -> busybox
│** ├── printenv -> busybox
│** ├── lzop -> busybox
│** ├── login -> busybox
│** ├── chgrp -> busybox
│** ├── su -> busybox
│** ├── conspy -> busybox
│** ├── more -> busybox
│** ├── date -> busybox
│** ├── arch -> busybox
│** ├── false -> busybox
│** ├── chown -> busybox
│** ├── uname -> busybox
│** ├── ipcalc -> busybox
│** ├── rm -> busybox
│** ├── mkdir -> busybox
│** ├── gunzip -> busybox
│** ├── mknod -> busybox
│** ├── fsync -> busybox
│** ├── rpm -> busybox
│** ├── cat -> busybox
│** ├── setarch -> busybox
│** ├── watch -> busybox
│** ├── link -> busybox
│** ├── touch -> busybox
│** ├── usleep -> busybox
│** ├── pwd -> busybox
│** ├── run-parts -> busybox
│** ├── rmdir -> busybox
│** ├── true -> busybox
│** ├── umount -> busybox
│** ├── mv -> busybox
│** ├── echo -> busybox
│** ├── ps -> busybox
│** ├── reformime -> busybox
│** ├── fatattr -> busybox
│** ├── zcat -> busybox
│** ├── tar -> busybox
│** ├── base64 -> busybox
│** ├── linux64 -> busybox
│** ├── dnsdomainname -> busybox
│** ├── makemime -> busybox
│** ├── setserial -> busybox
│** ├── cpio -> busybox
│** ├── sleep -> busybox
│** ├── iostat -> busybox
│** ├── hostname -> busybox
│** ├── ls -> busybox
│** ├── nice -> busybox
│** ├── mpstat -> busybox
│** ├── mountpoint -> busybox
│** ├── mt -> busybox
│** ├── setpriv -> busybox
│** ├── dd -> busybox
│** ├── cp -> busybox
│** ├── netstat -> busybox
│** ├── ping6 -> busybox
│** ├── fgrep -> busybox
│** └── stat -> busybox
└── root

32 directories, 1092 files
Forgive me for not being familiar with forums and not knowing how to edit posts. I can only add additional information afterward.
WuYung is offline   Reply With Quote