Hi all,
I am creating a custom setup which uses the ti mainline kernel (v4.2.3), ti uboot (ti-u-boot-2015.07), busybox (1_23_stable), and qt (5.5.1). I am developing my software on the latest BeagleBone black.
Currently I have gotten everything working with the possible exception of qt5 which is building but has not been successfully tested.
The problem that I am having is that when I attempt to run my C++ / qt5 application using the command "/opt/alm_app" I get this error:
"-bin/sh: /opt/alm_app: not found"
The problem is not an ASCII error (i.e. incorrect underscore) nor is it a permissions issue. The file exists in that location and can be seen using the ls command.
I would greatly appreciate any help you could offer.
You may veiw my build scripts at:
https://github.com/Trekkie33/alm100/blob/master/opensource/qt/build_qt.sh for qt5
https://github.com/Trekkie33/alm100/blob/master/alm/alm_app/build_app.sh for my application
I am currently installing qt to opt/qt
Below is a tree of my root file system.
rootfs/
├── bin
│ ├── ash -> busybox
│ ├── base64 -> busybox
│ ├── busybox
│ ├── cat -> busybox
│ ├── catv -> busybox
│ ├── chattr -> busybox
│ ├── chgrp -> busybox
│ ├── chmod -> busybox
│ ├── chown -> busybox
│ ├── conspy -> busybox
│ ├── cp -> busybox
│ ├── cpio -> busybox
│ ├── cttyhack -> busybox
│ ├── date -> busybox
│ ├── dd -> busybox
│ ├── df -> busybox
│ ├── dmesg -> busybox
│ ├── dnsdomainname -> busybox
│ ├── dumpkmap -> busybox
│ ├── echo -> busybox
│ ├── ed -> busybox
│ ├── egrep -> busybox
│ ├── false -> busybox
│ ├── fatattr -> busybox
│ ├── fdflush -> busybox
│ ├── fgrep -> busybox
│ ├── fsync -> busybox
│ ├── getopt -> busybox
│ ├── grep -> busybox
│ ├── gunzip -> busybox
│ ├── gzip -> busybox
│ ├── hostname -> busybox
│ ├── hush -> busybox
│ ├── ionice -> busybox
│ ├── iostat -> busybox
│ ├── ipcalc -> busybox
│ ├── kbd_mode -> busybox
│ ├── kill -> busybox
│ ├── linux32 -> busybox
│ ├── linux64 -> busybox
│ ├── ln -> busybox
│ ├── login -> busybox
│ ├── ls -> busybox
│ ├── lsattr -> busybox
│ ├── lzop -> busybox
│ ├── makemime -> busybox
│ ├── mkdir -> busybox
│ ├── mknod -> busybox
│ ├── mktemp -> busybox
│ ├── more -> busybox
│ ├── mount -> busybox
│ ├── mountpoint -> busybox
│ ├── mpstat -> busybox
│ ├── mt -> busybox
│ ├── mv -> busybox
│ ├── netstat -> busybox
│ ├── nice -> busybox
│ ├── pidof -> busybox
│ ├── ping -> busybox
│ ├── ping6 -> busybox
│ ├── pipe_progress -> busybox
│ ├── printenv -> busybox
│ ├── ps -> busybox
│ ├── pwd -> busybox
│ ├── reformime -> busybox
│ ├── rev -> busybox
│ ├── rm -> busybox
│ ├── rmdir -> busybox
│ ├── rpm -> busybox
│ ├── run-parts -> busybox
│ ├── scriptreplay -> busybox
│ ├── sed -> busybox
│ ├── setarch -> busybox
│ ├── setserial -> busybox
│ ├── sh -> busybox
│ ├── sleep -> busybox
│ ├── stat -> busybox
│ ├── stty -> busybox
│ ├── su -> busybox
│ ├── sync -> busybox
│ ├── tar -> busybox
│ ├── touch -> busybox
│ ├── true -> busybox
│ ├── umount -> busybox
│ ├── uname -> busybox
│ ├── usleep -> busybox
│ ├── vi -> busybox
│ ├── watch -> busybox
│ └── zcat -> busybox
├── dev
│ ├── mmcblk0
│ ├── mmcblk0p1
│ ├── rtc -> rtc0
│ ├── rtc0
│ ├── sda
│ ├── sda1
│ └── ttyAM0
├── etc
│ └── init.d
│ └── rcS
├── linuxrc -> bin/busybox
├── opt
│ ├── alm_app
│ └── qt
│ ├── bin
│ │ ├── moc
│ │ ├── qdbuscpp2xml
│ │ ├── qdbusxml2cpp
│ │ ├── qdoc
│ │ ├── qlalr
│ │ ├── qmake
│ │ ├── rcc
│ │ ├── syncqt.pl
│ │ └── uic
│ ├── lib
│ │ ├── cmake
│ │ │ ├── Qt5
│ │ │ │ ├── Qt5Config.cmake
│ │ │ │ └── Qt5ConfigVersion.cmake
│ │ │ ├── Qt5Concurrent
│ │ │ │ ├── Qt5ConcurrentConfig.cmake
│ │ │ │ └── Qt5ConcurrentConfigVersion.cmake
│ │ │ ├── Qt5Core
│ │ │ │ ├── Qt5CoreConfig.cmake
│ │ │ │ ├── Qt5CoreConfigExtras.cmake
│ │ │ │ ├── Qt5CoreConfigExtrasMkspecDir.cmake
│ │ │ │ ├── Qt5CoreConfigVersion.cmake
│ │ │ │ ├── Qt5CoreMacros.cmake
│ │ │ │ └── Qt5CTestMacros.cmake
│ │ │ ├── Qt5DBus
│ │ │ │ ├── Qt5DBusConfig.cmake
│ │ │ │ ├── Qt5DBusConfigExtras.cmake
│ │ │ │ ├── Qt5DBusConfigVersion.cmake
│ │ │ │ └── Qt5DBusMacros.cmake
│ │ │ ├── Qt5Gui
│ │ │ │ ├── Qt5GuiConfig.cmake
│ │ │ │ ├── Qt5GuiConfigExtras.cmake
│ │ │ │ ├── Qt5GuiConfigVersion.cmake
│ │ │ │ ├── Qt5Gui_QComposePlatformInputContextPlugin.cmake
│ │ │ │ ├── Qt5Gui_QEglFSIntegrationPlugin.cmake
│ │ │ │ ├── Qt5Gui_QEglFSKmsIntegrationPlugin.cmake
│ │ │ │ ├── Qt5Gui_QEglFSX11IntegrationPlugin.cmake
│ │ │ │ ├── Qt5Gui_QEvdevKeyboardPlugin.cmake
│ │ │ │ ├── Qt5Gui_QEvdevMousePlugin.cmake
│ │ │ │ ├── Qt5Gui_QEvdevTabletPlugin.cmake
│ │ │ │ ├── Qt5Gui_QEvdevTouchScreenPlugin.cmake
│ │ │ │ ├── Qt5Gui_QGifPlugin.cmake
│ │ │ │ ├── Qt5Gui_QGtk2ThemePlugin.cmake
│ │ │ │ ├── Qt5Gui_QIbusPlatformInputContextPlugin.cmake
│ │ │ │ ├── Qt5Gui_QICOPlugin.cmake
│ │ │ │ ├── Qt5Gui_QJpegPlugin.cmake
│ │ │ │ ├── Qt5Gui_QLibInputPlugin.cmake
│ │ │ │ ├── Qt5Gui_QLinuxFbIntegrationPlugin.cmake
│ │ │ │ ├── Qt5Gui_QMinimalEglIntegrationPlugin.cmake
│ │ │ │ ├── Qt5Gui_QMinimalIntegrationPlugin.cmake
│ │ │ │ ├── Qt5Gui_QOffscreenIntegrationPlugin.cmake
│ │ │ │ ├── Qt5Gui_QTuioTouchPlugin.cmake
│ │ │ │ ├── Qt5Gui_QXcbEglIntegrationPlugin.cmake
│ │ │ │ ├── Qt5Gui_QXcbGlxIntegrationPlugin.cmake
│ │ │ │ └── Qt5Gui_QXcbIntegrationPlugin.cmake
│ │ │ ├── Qt5Network
│ │ │ │ ├── Qt5NetworkConfig.cmake
│ │ │ │ ├── Qt5NetworkConfigVersion.cmake
│ │ │ │ ├── Qt5Network_QConnmanEnginePlugin.cmake
│ │ │ │ ├── Qt5Network_QGenericEnginePlugin.cmake
│ │ │ │ └── Qt5Network_QNetworkManagerEnginePlugin.cmake
│ │ │ ├── Qt5OpenGL
│ │ │ │ ├── Qt5OpenGLConfig.cmake
│ │ │ │ └── Qt5OpenGLConfigVersion.cmake
│ │ │ ├── Qt5OpenGLExtensions
│ │ │ │ ├── Qt5OpenGLExtensionsConfig.cmake
│ │ │ │ └── Qt5OpenGLExtensionsConfigVersion.cmake
│ │ │ ├── Qt5PrintSupport
│ │ │ │ ├── Qt5PrintSupportConfig.cmake
│ │ │ │ ├── Qt5PrintSupportConfigVersion.cmake
│ │ │ │ └── Qt5PrintSupport_QCupsPrinterSupportPlugin.cmake
│ │ │ ├── Qt5Sql
│ │ │ │ ├── Qt5SqlConfig.cmake
│ │ │ │ ├── Qt5SqlConfigVersion.cmake
│ │ │ │ ├── Qt5Sql_QMYSQLDriverPlugin.cmake
│ │ │ │ ├── Qt5Sql_QODBCDriverPlugin.cmake
│ │ │ │ ├── Qt5Sql_QPSQLDriverPlugin.cmake
│ │ │ │ ├── Qt5Sql_QSQLiteDriverPlugin.cmake
│ │ │ │ └── Qt5Sql_QTDSDriverPlugin.cmake
│ │ │ ├── Qt5Test
│ │ │ │ ├── Qt5TestConfig.cmake
│ │ │ │ └── Qt5TestConfigVersion.cmake
│ │ │ ├── Qt5Widgets
│ │ │ │ ├── Qt5WidgetsConfig.cmake
│ │ │ │ ├── Qt5WidgetsConfigExtras.cmake
│ │ │ │ ├── Qt5WidgetsConfigVersion.cmake
│ │ │ │ └── Qt5WidgetsMacros.cmake
│ │ │ └── Qt5Xml
│ │ │ ├── Qt5XmlConfig.cmake
│ │ │ └── Qt5XmlConfigVersion.cmake
│ │ ├── libQt5Bootstrap.a
│ │ ├── libQt5Bootstrap.la
│ │ ├── libQt5Bootstrap.prl
│ │ ├── libQt5Concurrent.la
│ │ ├── libQt5Concurrent.prl
│ │ ├── libQt5Concurrent.so -> libQt5Concurrent.so.5.6.0
│ │ ├── libQt5Concurrent.so.5 -> libQt5Concurrent.so.5.6.0
│ │ ├── libQt5Concurrent.so.5.6 -> libQt5Concurrent.so.5.6.0
│ │ ├── libQt5Concurrent.so.5.6.0
│ │ ├── libQt5Core.la
│ │ ├── libQt5Core.prl
│ │ ├── libQt5Core.so -> libQt5Core.so.5.6.0
│ │ ├── libQt5Core.so.5 -> libQt5Core.so.5.6.0
│ │ ├── libQt5Core.so.5.6 -> libQt5Core.so.5.6.0
│ │ ├── libQt5Core.so.5.6.0
│ │ ├── libQt5DBus.la
│ │ ├── libQt5DBus.prl
│ │ ├── libQt5DBus.so -> libQt5DBus.so.5.6.0
│ │ ├── libQt5DBus.so.5 -> libQt5DBus.so.5.6.0
│ │ ├── libQt5DBus.so.5.6 -> libQt5DBus.so.5.6.0
│ │ ├── libQt5DBus.so.5.6.0
│ │ ├── libQt5EglDeviceIntegration.la
│ │ ├── libQt5EglDeviceIntegration.prl
│ │ ├── libQt5EglDeviceIntegration.so -> libQt5EglDeviceIntegration.so.5.6.0
│ │ ├── libQt5EglDeviceIntegration.so.5 -> libQt5EglDeviceIntegration.so.5.6.0
│ │ ├── libQt5EglDeviceIntegration.so.5.6 -> libQt5EglDeviceIntegration.so.5.6.0
│ │ ├── libQt5EglDeviceIntegration.so.5.6.0
│ │ ├── libQt5Gui.la
│ │ ├── libQt5Gui.prl
│ │ ├── libQt5Gui.so -> libQt5Gui.so.5.6.0
│ │ ├── libQt5Gui.so.5 -> libQt5Gui.so.5.6.0
│ │ ├── libQt5Gui.so.5.6 -> libQt5Gui.so.5.6.0
│ │ ├── libQt5Gui.so.5.6.0
│ │ ├── libQt5Network.la
│ │ ├── libQt5Network.prl
│ │ ├── libQt5Network.so -> libQt5Network.so.5.6.0
│ │ ├── libQt5Network.so.5 -> libQt5Network.so.5.6.0
│ │ ├── libQt5Network.so.5.6 -> libQt5Network.so.5.6.0
│ │ ├── libQt5Network.so.5.6.0
│ │ ├── libQt5OpenGLExtensions.a
│ │ ├── libQt5OpenGLExtensions.la
│ │ ├── libQt5OpenGLExtensions.prl
│ │ ├── libQt5OpenGL.la
│ │ ├── libQt5OpenGL.prl
│ │ ├── libQt5OpenGL.so -> libQt5OpenGL.so.5.6.0
│ │ ├── libQt5OpenGL.so.5 -> libQt5OpenGL.so.5.6.0
│ │ ├── libQt5OpenGL.so.5.6 -> libQt5OpenGL.so.5.6.0
│ │ ├── libQt5OpenGL.so.5.6.0
│ │ ├── libQt5PlatformSupport.a
│ │ ├── libQt5PlatformSupport.la
│ │ ├── libQt5PlatformSupport.prl
│ │ ├── libQt5PrintSupport.la
│ │ ├── libQt5PrintSupport.prl
│ │ ├── libQt5PrintSupport.so -> libQt5PrintSupport.so.5.6.0
│ │ ├── libQt5PrintSupport.so.5 -> libQt5PrintSupport.so.5.6.0
│ │ ├── libQt5PrintSupport.so.5.6 -> libQt5PrintSupport.so.5.6.0
│ │ ├── libQt5PrintSupport.so.5.6.0
│ │ ├── libQt5Sql.la
│ │ ├── libQt5Sql.prl
│ │ ├── libQt5Sql.so -> libQt5Sql.so.5.6.0
│ │ ├── libQt5Sql.so.5 -> libQt5Sql.so.5.6.0
│ │ ├── libQt5Sql.so.5.6 -> libQt5Sql.so.5.6.0
│ │ ├── libQt5Sql.so.5.6.0
│ │ ├── libQt5Test.la
│ │ ├── libQt5Test.prl
│ │ ├── libQt5Test.so -> libQt5Test.so.5.6.0
│ │ ├── libQt5Test.so.5 -> libQt5Test.so.5.6.0
│ │ ├── libQt5Test.so.5.6 -> libQt5Test.so.5.6.0
│ │ ├── libQt5Test.so.5.6.0
│ │ ├── libQt5Widgets.la
│ │ ├── libQt5Widgets.prl
│ │ ├── libQt5Widgets.so -> libQt5Widgets.so.5.6.0
│ │ ├── libQt5Widgets.so.5 -> libQt5Widgets.so.5.6.0
│ │ ├── libQt5Widgets.so.5.6 -> libQt5Widgets.so.5.6.0
│ │ ├── libQt5Widgets.so.5.6.0
│ │ ├── libQt5XcbQpa.la
│ │ ├── libQt5XcbQpa.prl
│ │ ├── libQt5XcbQpa.so -> libQt5XcbQpa.so.5.6.0
│ │ ├── libQt5XcbQpa.so.5 -> libQt5XcbQpa.so.5.6.0
│ │ ├── libQt5XcbQpa.so.5.6 -> libQt5XcbQpa.so.5.6.0
│ │ ├── libQt5XcbQpa.so.5.6.0
│ │ ├── libQt5Xml.la
│ │ ├── libQt5Xml.prl
│ │ ├── libQt5Xml.so -> libQt5Xml.so.5.6.0
│ │ ├── libQt5Xml.so.5 -> libQt5Xml.so.5.6.0
│ │ ├── libQt5Xml.so.5.6 -> libQt5Xml.so.5.6.0
│ │ ├── libQt5Xml.so.5.6.0
│ │ └── pkgconfig
│ │ ├── Qt5Bootstrap.pc
│ │ ├── Qt5Concurrent.pc
│ │ ├── Qt5Core.pc
│ │ ├── Qt5DBus.pc
│ │ ├── Qt5EglDeviceIntegration.pc
│ │ ├── Qt5Gui.pc
│ │ ├── Qt5Network.pc
│ │ ├── Qt5OpenGLExtensions.pc
│ │ ├── Qt5OpenGL.pc
│ │ ├── Qt5PlatformSupport.pc
│ │ ├── Qt5PrintSupport.pc
│ │ ├── Qt5Sql.pc
│ │ ├── Qt5Test.pc
│ │ ├── Qt5Widgets.pc
│ │ ├── Qt5XcbQpa.pc
│ │ └── Qt5Xml.pc
│ └── plugins
│ ├── bearer
│ │ ├── libqconnmanbearer.so
│ │ ├── libqgenericbearer.so
│ │ └── libqnmbearer.so
│ ├── egldeviceintegrations
│ │ ├── libqeglfs-kms-integration.so
│ │ └── libqeglfs-x11-integration.so
│ ├── generic
│ │ ├── libqevdevkeyboardplugin.so
│ │ ├── libqevdevmouseplugin.so
│ │ ├── libqevdevtabletplugin.so
│ │ ├── libqevdevtouchplugin.so
│ │ ├── libqlibinputplugin.so
│ │ └── libqtuiotouchplugin.so
│ ├── imageformats
│ │ ├── libqgif.so
│ │ ├── libqico.so
│ │ └── libqjpeg.so
│ ├── platforminputcontexts
│ │ ├── libcomposeplatforminputcontextplugin.so
│ │ └── libibusplatforminputcontextplugin.so
│ ├── platforms
│ │ ├── libqeglfs.so
│ │ ├── libqlinuxfb.so
│ │ ├── libqminimalegl.so
│ │ ├── libqminimal.so
│ │ ├── libqoffscreen.so
│ │ └── libqxcb.so
│ ├── platformthemes
│ │ └── libqgtk2.so
│ ├── printsupport
│ │ └── libcupsprintersupport.so
│ ├── sqldrivers
│ │ ├── libqsqlite.so
│ │ ├── libqsqlmysql.so
│ │ ├── libqsqlodbc.so
│ │ ├── libqsqlpsql.so
│ │ └── libqsqltds.so
│ └── xcbglintegrations
│ ├── libqxcb-egl-integration.so
│ └── libqxcb-glx-integration.so
├── proc
├── sbin
│ ├── acpid -> ../bin/busybox
│ ├── adjtimex -> ../bin/busybox
│ ├── arp -> ../bin/busybox
│ ├── blkid -> ../bin/busybox
│ ├── blockdev -> ../bin/busybox
│ ├── bootchartd -> ../bin/busybox
│ ├── depmod -> ../bin/busybox
│ ├── devmem -> ../bin/busybox
│ ├── fbsplash -> ../bin/busybox
│ ├── fdisk -> ../bin/busybox
│ ├── findfs -> ../bin/busybox
│ ├── freeramdisk -> ../bin/busybox
│ ├── fsck -> ../bin/busybox
│ ├── fsck.minix -> ../bin/busybox
│ ├── fstrim -> ../bin/busybox
│ ├── getty -> ../bin/busybox
│ ├── halt -> ../bin/busybox
│ ├── hdparm -> ../bin/busybox
│ ├── hwclock -> ../bin/busybox
│ ├── ifconfig -> ../bin/busybox
│ ├── ifdown -> ../bin/busybox
│ ├── ifenslave -> ../bin/busybox
│ ├── ifup -> ../bin/busybox
│ ├── init -> ../bin/busybox
│ ├── insmod -> ../bin/busybox
│ ├── ip -> ../bin/busybox
│ ├── ipaddr -> ../bin/busybox
│ ├── iplink -> ../bin/busybox
│ ├── iproute -> ../bin/busybox
│ ├── iprule -> ../bin/busybox
│ ├── iptunnel -> ../bin/busybox
│ ├── klogd -> ../bin/busybox
│ ├── loadkmap -> ../bin/busybox
│ ├── logread -> ../bin/busybox
│ ├── losetup -> ../bin/busybox
│ ├── lsmod -> ../bin/busybox
│ ├── makedevs -> ../bin/busybox
│ ├── mdev -> ../bin/busybox
│ ├── mkdosfs -> ../bin/busybox
│ ├── mke2fs -> ../bin/busybox
│ ├── mkfs.ext2 -> ../bin/busybox
│ ├── mkfs.minix -> ../bin/busybox
│ ├── mkfs.vfat -> ../bin/busybox
│ ├── mkswap -> ../bin/busybox
│ ├── modinfo -> ../bin/busybox
│ ├── modprobe -> ../bin/busybox
│ ├── nameif -> ../bin/busybox
│ ├── pivot_root -> ../bin/busybox
│ ├── poweroff -> ../bin/busybox
│ ├── raidautorun -> ../bin/busybox
│ ├── reboot -> ../bin/busybox
│ ├── rmmod -> ../bin/busybox
│ ├── route -> ../bin/busybox
│ ├── runlevel -> ../bin/busybox
│ ├── setconsole -> ../bin/busybox
│ ├── slattach -> ../bin/busybox
│ ├── start-stop-daemon -> ../bin/busybox
│ ├── sulogin -> ../bin/busybox
│ ├── swapoff -> ../bin/busybox
│ ├── swapon -> ../bin/busybox
│ ├── switch_root -> ../bin/busybox
│ ├── sysctl -> ../bin/busybox
│ ├── syslogd -> ../bin/busybox
│ ├── tunctl -> ../bin/busybox
│ ├── udhcpc -> ../bin/busybox
│ ├── vconfig -> ../bin/busybox
│ ├── watchdog -> ../bin/busybox
│ └── zcip -> ../bin/busybox
├── sys
└── usr
├── bin
│ ├── [ -> ../../bin/busybox
│ ├── [[ -> ../../bin/busybox
│ ├── awk -> ../../bin/busybox
│ ├── basename -> ../../bin/busybox
│ ├── beep -> ../../bin/busybox
│ ├── bunzip2 -> ../../bin/busybox
│ ├── bzcat -> ../../bin/busybox
│ ├── bzip2 -> ../../bin/busybox
│ ├── cal -> ../../bin/busybox
│ ├── chpst -> ../../bin/busybox
│ ├── chrt -> ../../bin/busybox
│ ├── chvt -> ../../bin/busybox
│ ├── cksum -> ../../bin/busybox
│ ├── clear -> ../../bin/busybox
│ ├── cmp -> ../../bin/busybox
│ ├── comm -> ../../bin/busybox
│ ├── crontab -> ../../bin/busybox
│ ├── cryptpw -> ../../bin/busybox
│ ├── cut -> ../../bin/busybox
│ ├── dc -> ../../bin/busybox
│ ├── deallocvt -> ../../bin/busybox
│ ├── diff -> ../../bin/busybox
│ ├── dirname -> ../../bin/busybox
│ ├── dos2unix -> ../../bin/busybox
│ ├── du -> ../../bin/busybox
│ ├── dumpleases -> ../../bin/busybox
│ ├── eject -> ../../bin/busybox
│ ├── env -> ../../bin/busybox
│ ├── envdir -> ../../bin/busybox
│ ├── envuidgid -> ../../bin/busybox
│ ├── expand -> ../../bin/busybox
│ ├── expr -> ../../bin/busybox
│ ├── fgconsole -> ../../bin/busybox
│ ├── find -> ../../bin/busybox
│ ├── flock -> ../../bin/busybox
│ ├── fold -> ../../bin/busybox
│ ├── free -> ../../bin/busybox
│ ├── ftpget -> ../../bin/busybox
│ ├── ftpput -> ../../bin/busybox
│ ├── fuser -> ../../bin/busybox
│ ├── groups -> ../../bin/busybox
│ ├── hd -> ../../bin/busybox
│ ├── head -> ../../bin/busybox
│ ├── hexdump -> ../../bin/busybox
│ ├── hostid -> ../../bin/busybox
│ ├── id -> ../../bin/busybox
│ ├── install -> ../../bin/busybox
│ ├── ipcrm -> ../../bin/busybox
│ ├── ipcs -> ../../bin/busybox
│ ├── killall -> ../../bin/busybox
│ ├── last -> ../../bin/busybox
│ ├── less -> ../../bin/busybox
│ ├── logger -> ../../bin/busybox
│ ├── logname -> ../../bin/busybox
│ ├── lpq -> ../../bin/busybox
│ ├── lpr -> ../../bin/busybox
│ ├── lsof -> ../../bin/busybox
│ ├── lspci -> ../../bin/busybox
│ ├── lsusb -> ../../bin/busybox
│ ├── lzcat -> ../../bin/busybox
│ ├── lzma -> ../../bin/busybox
│ ├── lzopcat -> ../../bin/busybox
│ ├── man -> ../../bin/busybox
│ ├── md5sum -> ../../bin/busybox
│ ├── mesg -> ../../bin/busybox
│ ├── microcom -> ../../bin/busybox
│ ├── mkfifo -> ../../bin/busybox
│ ├── mkpasswd -> ../../bin/busybox
│ ├── nc -> ../../bin/busybox
│ ├── nmeter -> ../../bin/busybox
│ ├── nohup -> ../../bin/busybox
│ ├── nslookup -> ../../bin/busybox
│ ├── od -> ../../bin/busybox
│ ├── openvt -> ../../bin/busybox
│ ├── passwd -> ../../bin/busybox
│ ├── patch -> ../../bin/busybox
│ ├── pgrep -> ../../bin/busybox
│ ├── pkill -> ../../bin/busybox
│ ├── pmap -> ../../bin/busybox
│ ├── printf -> ../../bin/busybox
│ ├── pscan -> ../../bin/busybox
│ ├── pstree -> ../../bin/busybox
│ ├── pwdx -> ../../bin/busybox
│ ├── readlink -> ../../bin/busybox
│ ├── realpath -> ../../bin/busybox
│ ├── renice -> ../../bin/busybox
│ ├── reset -> ../../bin/busybox
│ ├── resize -> ../../bin/busybox
│ ├── rpm2cpio -> ../../bin/busybox
│ ├── runsv -> ../../bin/busybox
│ ├── runsvdir -> ../../bin/busybox
│ ├── rx -> ../../bin/busybox
│ ├── script -> ../../bin/busybox
│ ├── seq -> ../../bin/busybox
│ ├── setkeycodes -> ../../bin/busybox
│ ├── setsid -> ../../bin/busybox
│ ├── setuidgid -> ../../bin/busybox
│ ├── sha1sum -> ../../bin/busybox
│ ├── sha256sum -> ../../bin/busybox
│ ├── sha3sum -> ../../bin/busybox
│ ├── sha512sum -> ../../bin/busybox
│ ├── showkey -> ../../bin/busybox
│ ├── shuf -> ../../bin/busybox
│ ├── smemcap -> ../../bin/busybox
│ ├── softlimit -> ../../bin/busybox
│ ├── sort -> ../../bin/busybox
│ ├── split -> ../../bin/busybox
│ ├── strings -> ../../bin/busybox
│ ├── sum -> ../../bin/busybox
│ ├── sv -> ../../bin/busybox
│ ├── tac -> ../../bin/busybox
│ ├── tail -> ../../bin/busybox
│ ├── tcpsvd -> ../../bin/busybox
│ ├── tee -> ../../bin/busybox
│ ├── telnet -> ../../bin/busybox
│ ├── test -> ../../bin/busybox
│ ├── tftp -> ../../bin/busybox
│ ├── time -> ../../bin/busybox
│ ├── timeout -> ../../bin/busybox
│ ├── top -> ../../bin/busybox
│ ├── tr -> ../../bin/busybox
│ ├── traceroute -> ../../bin/busybox
│ ├── traceroute6 -> ../../bin/busybox
│ ├── tty -> ../../bin/busybox
│ ├── ttysize -> ../../bin/busybox
│ ├── udpsvd -> ../../bin/busybox
│ ├── unexpand -> ../../bin/busybox
│ ├── uniq -> ../../bin/busybox
│ ├── unix2dos -> ../../bin/busybox
│ ├── unlink -> ../../bin/busybox
│ ├── unlzma -> ../../bin/busybox
│ ├── unlzop -> ../../bin/busybox
│ ├── unxz -> ../../bin/busybox
│ ├── unzip -> ../../bin/busybox
│ ├── uptime -> ../../bin/busybox
│ ├── users -> ../../bin/busybox
│ ├── uudecode -> ../../bin/busybox
│ ├── uuencode -> ../../bin/busybox
│ ├── vlock -> ../../bin/busybox
│ ├── volname -> ../../bin/busybox
│ ├── wall -> ../../bin/busybox
│ ├── wc -> ../../bin/busybox
│ ├── wget -> ../../bin/busybox
│ ├── which -> ../../bin/busybox
│ ├── who -> ../../bin/busybox
│ ├── whoami -> ../../bin/busybox
│ ├── whois -> ../../bin/busybox
│ ├── xargs -> ../../bin/busybox
│ ├── xz -> ../../bin/busybox
│ ├── xzcat -> ../../bin/busybox
│ └── yes -> ../../bin/busybox
├── lib
└── sbin
├── addgroup -> ../../bin/busybox
├── add-shell -> ../../bin/busybox
├── adduser -> ../../bin/busybox
├── arping -> ../../bin/busybox
├── brctl -> ../../bin/busybox
├── chat -> ../../bin/busybox
├── chpasswd -> ../../bin/busybox
├── chroot -> ../../bin/busybox
├── crond -> ../../bin/busybox
├── delgroup -> ../../bin/busybox
├── deluser -> ../../bin/busybox
├── dhcprelay -> ../../bin/busybox
├── dnsd -> ../../bin/busybox
├── ether-wake -> ../../bin/busybox
├── fakeidentd -> ../../bin/busybox
├── fbset -> ../../bin/busybox
├── fdformat -> ../../bin/busybox
├── ftpd -> ../../bin/busybox
├── httpd -> ../../bin/busybox
├── ifplugd -> ../../bin/busybox
├── inetd -> ../../bin/busybox
├── killall5 -> ../../bin/busybox
├── loadfont -> ../../bin/busybox
├── lpd -> ../../bin/busybox
├── nanddump -> ../../bin/busybox
├── nandwrite -> ../../bin/busybox
├── nbd-client -> ../../bin/busybox
├── ntpd -> ../../bin/busybox
├── popmaildir -> ../../bin/busybox
├── powertop -> ../../bin/busybox
├── rdate -> ../../bin/busybox
├── rdev -> ../../bin/busybox
├── readahead -> ../../bin/busybox
├── readprofile -> ../../bin/busybox
├── remove-shell -> ../../bin/busybox
├── rtcwake -> ../../bin/busybox
├── sendmail -> ../../bin/busybox
├── setfont -> ../../bin/busybox
├── setlogcons -> ../../bin/busybox
├── svlogd -> ../../bin/busybox
├── telnetd -> ../../bin/busybox
├── tftpd -> ../../bin/busybox
├── ubiattach -> ../../bin/busybox
├── ubidetach -> ../../bin/busybox
├── ubimkvol -> ../../bin/busybox
├── ubirmvol -> ../../bin/busybox
├── ubirsvol -> ../../bin/busybox
├── ubiupdatevol -> ../../bin/busybox
└── udhcpd -> ../../bin/busybox