20250227使用mount命令挂载飞凌OK3588-C的linux R4的文件系统rootfs.img以备修改
rootroot@rootroot-X99-Turbo:~/version/OK3588_Linux_fs/linuxfs$ mv m2/ R4
rootroot@rootroot-X99-Turbo:~/version/OK3588_Linux_fs/linuxfs$ sudo mount rootfs.img R4/
rootroot@rootroot-X99-Turbo:~/version/OK3588_Linux_fs/linuxfs$ sudo umount R4
20250227使用mount命令挂载飞凌OK3588-C的linux R4的文件系统rootfs.img以备修改
2025/2/27 16:30
缘起:很多开发板只提供IMG固件给你,隐藏了很多细节。
当你要实现新的功能,只能使用mount命令挂载img修改之后然后再次编译/打包来测试/验证了。
飞凌OK3588-C的linux R4的文件系统rootfs.img在:Z:\version\OK3588_Linux_fs\linuxfs\rootfs.img
挂载方法:
https://blog.csdn.net/weixin_39577964/article/details/116551036?utm_medium=distribute.pc_relevant.none-task-blog-2~default~baidujs_baidulandingword~default-8-116551036-blog-50829544.235^v43^pc_blog_bottom_relevance_base5&spm=1001.2101.3001.4242.5&utm_relevant_index=11
linux img提取文件系统,Linux系统获取开发板的文件系统并打包成img文件
https://blog.csdn.net/weixin_39577964/article/details/116551036
应用情形:
在实际的开发中,由于原系统包含的功能有限,而根据项目的需要,安装了相应的库及运行项目程序所创建的各种文件,和所做的各种配置,想将调试好的系统打包发布,进行批量生产,就可参考本文提供的方法。
操作:
1.开发板可能需要安装rsync,用指令安装: sudo apt-get install rsync.
2.在电脑主机上建立文件夹,mkdir ubuntuFs.
3.确保主机能ping通开发板,在主机执行指令,rsync -avx root@169.254.1.32:/ ubuntuFs,ip为开发板的ip,执行该指令后就能将开发板的文件系统同步到主机上。
4.制作镜像,主机执行指令,dd if=/dev/zero of=ubuntu.img bs=1M count=3000,设置count大小要比根据文件系统大。
5.格式化镜像文件,并加入linuxroot卷标:sudo mkfs.ext4 -F -L linuxroot ubuntu.img。
6.挂载镜像并往里面拷入修改后的文件系统:
mkdir ubuntu-mount
sudo mount ubuntu.img ubuntu-mount
sudo cp -rfp ubuntu/* ubuntu-mount
卸载镜像:
sudo umount ubuntu-mount
7.检查并修复ubuntu.img镜像的文件系统,e2fsck -p -f ubuntu.img。
8.精简镜像文件大小,resize2fs -M ubuntu.img
至此,开发板的文件系统已经重新打包成了ubuntu.img,用该文件和相应的内核文件就可生成系统镜像,烧录镜像后就可直接运行用户程序,从而省掉了重新安装包和其他配置的工作。
参考:http://dev.t-firefly.com/thread-10971-1-1.html
http://dev.t-firefly.com/thread-10963-1-1.html
rootroot@rootroot-X99-Turbo:~/version/OK3588_Linux_fs/linuxfs$ ll
total 1638416
drwxr-xr-x 3 rootroot rootroot 4096 2月 27 15:05 ./
drwxr-xr-x 23 rootroot rootroot 4096 2月 26 10:36 ../
drwxr-xr-x 21 root root 4096 3月 9 2023 m2/
-rw-r--r-- 1 rootroot rootroot 1677721600 2月 27 15:32 rootfs.img
rootroot@rootroot-X99-Turbo:~/version/OK3588_Linux_fs/linuxfs$ cd m2/
rootroot@rootroot-X99-Turbo:~/version/OK3588_Linux_fs/linuxfs/m2$ ll
total 100
drwxr-xr-x 21 root root 4096 3月 9 2023 ./
drwxr-xr-x 3 rootroot rootroot 4096 2月 27 15:05 ../
drwxr-xr-x 2 root root 4096 3月 9 2023 bin/
-rw-r--r-- 1 root root 351 3月 9 2023 busybox.fragment
lrwxrwxrwx 1 root root 8 3月 9 2023 data -> userdata/
drwxr-xr-x 4 root root 4096 3月 9 2023 dev/
drwxr-xr-x 22 root root 4096 9月 14 2023 etc/
-rw-r--r-- 1 root root 0 3月 9 2023 .gitkeep
drwxr-xr-x 3 root root 4096 3月 9 2023 home/
drwxr-xr-x 6 root root 4096 8月 17 2023 lib/
lrwxrwxrwx 1 root root 3 3月 9 2023 lib64 -> lib/
lrwxrwxrwx 1 root root 11 3月 9 2023 linuxrc -> bin/busybox*
drwx------ 2 root root 16384 3月 9 2023 lost+found/
drwxr-xr-x 14 root root 4096 3月 9 2023 media/
lrwxrwxrwx 1 root root 23 3月 9 2023 misc -> /dev/block/by-name/misc
drwxr-xr-x 4 root root 4096 3月 9 2023 mnt/
drwxr-xr-x 2 root root 4096 3月 9 2023 oem/
drwxr-xr-x 2 root root 4096 3月 9 2023 opt/
drwxr-xr-x 2 root root 4096 3月 9 2023 proc/
drwx------ 2 root root 4096 3月 9 2023 root/
drwxr-xr-x 4 root root 4096 3月 9 2023 run/
drwxr-xr-x 2 root root 4096 9月 14 2023 sbin/
lrwxrwxrwx 1 root root 10 3月 9 2023 sdcard -> mnt/sdcard/
-rw-r--r-- 1 root root 0 3月 9 2023 .skip_fsck
drwxr-xr-x 2 root root 4096 3月 9 2023 sys/
drwxrwxrwt 4 root root 4096 3月 9 2023 tmp/
lrwxrwxrwx 1 root root 9 3月 9 2023 udisk -> mnt/udisk/
drwxr-xr-x 2 root root 4096 3月 9 2023 userdata/
drwxr-xr-x 11 root root 4096 9月 14 2023 usr/
drwxr-xr-x 5 root root 4096 3月 9 2023 var/
rootroot@rootroot-X99-Turbo:~/version/OK3588_Linux_fs/linuxfs/m2$ cd ..
rootroot@rootroot-X99-Turbo:~/version/OK3588_Linux_fs/linuxfs$ ll
total 1638416
drwxr-xr-x 3 rootroot rootroot 4096 2月 27 15:05 ./
drwxr-xr-x 23 rootroot rootroot 4096 2月 26 10:36 ../
drwxr-xr-x 21 root root 4096 3月 9 2023 m2/
-rw-r--r-- 1 rootroot rootroot 1677721600 2月 27 15:32 rootfs.img
rootroot@rootroot-X99-Turbo:~/version/OK3588_Linux_fs/linuxfs$
rootroot@rootroot-X99-Turbo:~/version/OK3588_Linux_fs/linuxfs$ sudo umount m2
[sudo] password for rootroot:
rootroot@rootroot-X99-Turbo:~/version/OK3588_Linux_fs/linuxfs$ ll
total 1638416
drwxr-xr-x 3 rootroot rootroot 4096 2月 27 15:05 ./
drwxr-xr-x 23 rootroot rootroot 4096 2月 26 10:36 ../
drwxrwxr-x 2 rootroot rootroot 4096 2月 27 15:05 m2/
-rw-r--r-- 1 rootroot rootroot 1677721600 2月 27 15:59 rootfs.img
rootroot@rootroot-X99-Turbo:~/version/OK3588_Linux_fs/linuxfs$ cd m2/
rootroot@rootroot-X99-Turbo:~/version/OK3588_Linux_fs/linuxfs/m2$ ll
total 8
drwxrwxr-x 2 rootroot rootroot 4096 2月 27 15:05 ./
drwxr-xr-x 3 rootroot rootroot 4096 2月 27 15:05 ../
rootroot@rootroot-X99-Turbo:~/version/OK3588_Linux_fs/linuxfs/m2$ cd ..
rootroot@rootroot-X99-Turbo:~/version/OK3588_Linux_fs/linuxfs$ ll
total 1638416
drwxr-xr-x 3 rootroot rootroot 4096 2月 27 15:05 ./
drwxr-xr-x 23 rootroot rootroot 4096 2月 26 10:36 ../
drwxrwxr-x 2 rootroot rootroot 4096 2月 27 15:05 m2/
-rw-r--r-- 1 rootroot rootroot 1677721600 2月 27 15:59 rootfs.img
rootroot@rootroot-X99-Turbo:~/version/OK3588_Linux_fs/linuxfs$
rootroot@rootroot-X99-Turbo:~/version/OK3588_Linux_fs/linuxfs$ mv m2/ R4
rootroot@rootroot-X99-Turbo:~/version/OK3588_Linux_fs/linuxfs$ ll
total 1638416
drwxr-xr-x 3 rootroot rootroot 4096 2月 27 16:00 ./
drwxr-xr-x 23 rootroot rootroot 4096 2月 26 10:36 ../
drwxrwxr-x 2 rootroot rootroot 4096 2月 27 15:05 R4/
-rw-r--r-- 1 rootroot rootroot 1677721600 2月 27 15:59 rootfs.img
rootroot@rootroot-X99-Turbo:~/version/OK3588_Linux_fs/linuxfs$
rootroot@rootroot-X99-Turbo:~/version/OK3588_Linux_fs/linuxfs$
rootroot@rootroot-X99-Turbo:~/version/OK3588_Linux_fs/linuxfs$ sudo mount rootfs.img R4/
rootroot@rootroot-X99-Turbo:~/version/OK3588_Linux_fs/linuxfs$ ll
total 1638416
drwxr-xr-x 3 rootroot rootroot 4096 2月 27 16:00 ./
drwxr-xr-x 23 rootroot rootroot 4096 2月 26 10:36 ../
drwxr-xr-x 21 root root 4096 3月 9 2023 R4/
-rw-r--r-- 1 rootroot rootroot 1677721600 2月 27 16:00 rootfs.img
rootroot@rootroot-X99-Turbo:~/version/OK3588_Linux_fs/linuxfs$ cd R4/
rootroot@rootroot-X99-Turbo:~/version/OK3588_Linux_fs/linuxfs/R4$ ll
total 100
drwxr-xr-x 21 root root 4096 3月 9 2023 ./
drwxr-xr-x 3 rootroot rootroot 4096 2月 27 16:00 ../
drwxr-xr-x 2 root root 4096 3月 9 2023 bin/
-rw-r--r-- 1 root root 351 3月 9 2023 busybox.fragment
lrwxrwxrwx 1 root root 8 3月 9 2023 data -> userdata/
drwxr-xr-x 4 root root 4096 3月 9 2023 dev/
drwxr-xr-x 22 root root 4096 9月 14 2023 etc/
-rw-r--r-- 1 root root 0 3月 9 2023 .gitkeep
drwxr-xr-x 3 root root 4096 3月 9 2023 home/
drwxr-xr-x 6 root root 4096 8月 17 2023 lib/
lrwxrwxrwx 1 root root 3 3月 9 2023 lib64 -> lib/
lrwxrwxrwx 1 root root 11 3月 9 2023 linuxrc -> bin/busybox*
drwx------ 2 root root 16384 3月 9 2023 lost+found/
drwxr-xr-x 14 root root 4096 3月 9 2023 media/
lrwxrwxrwx 1 root root 23 3月 9 2023 misc -> /dev/block/by-name/misc
drwxr-xr-x 4 root root 4096 3月 9 2023 mnt/
drwxr-xr-x 2 root root 4096 3月 9 2023 oem/
drwxr-xr-x 2 root root 4096 3月 9 2023 opt/
drwxr-xr-x 2 root root 4096 3月 9 2023 proc/
drwx------ 2 root root 4096 3月 9 2023 root/
drwxr-xr-x 4 root root 4096 3月 9 2023 run/
drwxr-xr-x 2 root root 4096 9月 14 2023 sbin/
lrwxrwxrwx 1 root root 10 3月 9 2023 sdcard -> mnt/sdcard/
-rw-r--r-- 1 root root 0 3月 9 2023 .skip_fsck
drwxr-xr-x 2 root root 4096 3月 9 2023 sys/
drwxrwxrwt 4 root root 4096 3月 9 2023 tmp/
lrwxrwxrwx 1 root root 9 3月 9 2023 udisk -> mnt/udisk/
drwxr-xr-x 2 root root 4096 3月 9 2023 userdata/
drwxr-xr-x 11 root root 4096 9月 14 2023 usr/
drwxr-xr-x 5 root root 4096 3月 9 2023 var/
rootroot@rootroot-X99-Turbo:~/version/OK3588_Linux_fs/linuxfs/R4$ cd usr/bin/
rootroot@rootroot-X99-Turbo:~/version/OK3588_Linux_fs/linuxfs/R4/usr/bin$ ll
total 55184
drwxr-xr-x 3 root root 20480 3月 9 2023 ./
drwxr-xr-x 11 root root 4096 9月 14 2023 ../
lrwxrwxrwx 1 root root 4 3月 9 2023 '[' -> test*
lrwxrwxrwx 1 root root 17 3月 9 2023 '[[' -> ../../bin/busybox*
-rwxr-xr-x 1 root root 18416 3月 9 2023 a2dpconf*
-rwxr-xr-x 1 root root 133832 3月 9 2023 adbd*
-rwxr-xr-x 1 root root 73768 3月 9 2023 alsamixer*
-rwxr-xr-x 1 root root 51120 3月 9 2023 amixer*
-rwxr-xr-x 1 root root 27332 3月 9 2023 anytovcd.sh*
-rwxr-xr-x 1 root root 67488 3月 9 2023 aplay*
lrwxrwxrwx 1 root root 17 3月 9 2023 ar -> ../../bin/busybox*
-rwxr-xr-x 1 root root 67488 3月 9 2023 arecord*
-rwxr-xr-x 1 root root 22504 3月 9 2023 asc2log*
lrwxrwxrwx 1 root root 17 3月 9 2023 ascii -> ../../bin/busybox*
-rwxr-xr-x 1 root root 30656 3月 9 2023 aserver*
lrwxrwxrwx 1 root root 17 3月 9 2023 awk -> ../../bin/busybox*
lrwxrwxrwx 1 root root 9 3月 9 2023 b2sum -> coreutils*
lrwxrwxrwx 1 root root 9 3月 9 2023 base32 -> coreutils*
lrwxrwxrwx 1 root root 9 3月 9 2023 basename -> coreutils*
lrwxrwxrwx 1 root root 9 3月 9 2023 basenc -> coreutils*
lrwxrwxrwx 1 root root 17 3月 9 2023 bc -> ../../bin/busybox*
-rwxr-xr-x 1 root root 10016 3月 9 2023 bcmserver*
-rwxr-xr-x 1 root root 118008 3月 9 2023 bluealsa*
-rwxr-xr-x 1 root root 43352 3月 9 2023 bluealsa-aplay*
-rwxr-xr-x 1 root root 96112 3月 9 2023 bluemoon*
-rwxr-xr-x 1 root root 272656 3月 9 2023 bluetoothctl*
-rwxr-xr-x 1 root root 87920 3月 9 2023 btattach*
lrwxrwxrwx 1 root root 17 3月 9 2023 bunzip2 -> ../../bin/busybox*
-rwxr-xr-x 1 root root 34656 3月 9 2023 bw_file_rd*
-rwxr-xr-x 1 root root 38752 3月 9 2023 bw_mem*
-rwxr-xr-x 1 root root 34656 3月 9 2023 bw_mmap_rd*
-rwxr-xr-x 1 root root 30568 3月 9 2023 bw_pipe*
-rwxr-xr-x 1 root root 34656 3月 9 2023 bw_tcp*
-rwxr-xr-x 1 root root 34664 3月 9 2023 bw_unix*
lrwxrwxrwx 1 root root 17 3月 9 2023 bzcat -> ../../bin/busybox*
-rwxr-xr-x 1 root root 18216 3月 9 2023 canbusload*
-rwxr-xr-x 1 root root 67704 3月 9 2023 canbusutil*
-rwxr-xr-x 1 root root 17832 3月 9 2023 can-calc-bit-timing*
-rwxr-xr-x 1 root root 26544 3月 9 2023 canconfig*
-rwxr-xr-x 1 root root 30704 3月 9 2023 candump*
-rwxr-xr-x 1 root root 14120 3月 9 2023 canfdtest*
-rwxr-xr-x 1 root root 26608 3月 9 2023 cangen*
-rwxr-xr-x 1 root root 22304 3月 9 2023 cangw*
-rwxr-xr-x 1 root root 22512 3月 9 2023 canlogserver*
-rwxr-xr-x 1 root root 26608 3月 9 2023 canplayer*
-rwxr-xr-x 1 root root 18408 3月 9 2023 cansend*
-rwxr-xr-x 1 root root 14448 3月 9 2023 cansequence*
-rwxr-xr-x 1 root root 22344 3月 9 2023 cansniffer*
-rwxr-xr-x 1 root root 200152 3月 9 2023 cec-compliance*
-rwxr-xr-x 1 root root 291992 3月 9 2023 cec-ctl*
-rwxr-xr-x 1 root root 153968 3月 9 2023 cec-follower*
-rwxr-xr-x 1 root root 174416 3月 9 2023 certutil*
lrwxrwxrwx 1 root root 9 3月 9 2023 chcon -> coreutils*
lrwxrwxrwx 1 root root 34 5月 3 2022 chromium -> /usr/lib/chromium/chromium-wrapper
lrwxrwxrwx 1 root root 17 3月 9 2023 chrt -> ../../bin/busybox*
lrwxrwxrwx 1 root root 17 3月 9 2023 chvt -> ../../bin/busybox*
-rwxr-xr-x 1 root root 181584 3月 9 2023 ciptool*
lrwxrwxrwx 1 root root 9 3月 9 2023 cksum -> coreutils*
lrwxrwxrwx 1 root root 17 3月 9 2023 clear -> ../../bin/busybox*
-rwsr-xr-x 1 root root 18288 3月 9 2023 clockdiff*
lrwxrwxrwx 1 root root 17 3月 9 2023 cmp -> ../../bin/busybox*
lrwxrwxrwx 1 root root 9 3月 9 2023 comm -> coreutils*
-rwxr-xr-x 1 root root 2679 7月 1 2021 compile-et.pl*
-rwxr-xr-x 1 root root 1122008 3月 9 2023 coreutils*
lrwxrwxrwx 1 root root 17 3月 9 2023 crc32 -> ../../bin/busybox*
lrwxrwxrwx 1 root root 17 3月 9 2023 crontab -> ../../bin/busybox*
lrwxrwxrwx 1 root root 9 3月 9 2023 csplit -> coreutils*
lrwxrwxrwx 1 root root 9 3月 9 2023 cut -> coreutils*
-rwxr-xr-x 1 root root 55152 3月 9 2023 cwebp*
-rwxr-xr-x 1 root root 14424 3月 9 2023 cx18-ctl*
-rwxr-xr-x 1 root root 34960 3月 9 2023 cyclicdeadline*
-rwxr-xr-x 1 root root 52376 3月 9 2023 cyclictest*
-rwxr-xr-x 1 root root 10016 3月 9 2023 dbus-cleanup-sockets*
-rwxr-xr-x 1 root root 203008 3月 9 2023 dbus-daemon*
-rwxr-xr-x 1 root root 18216 3月 9 2023 dbus-launch*
-rwxr-xr-x 1 root root 22312 3月 9 2023 dbus-monitor*
-rwxr-xr-x 1 root root 14112 3月 9 2023 dbus-run-session*
-rwxr-xr-x 1 root root 22304 3月 9 2023 dbus-send*
-rwxr-xr-x 1 root root 18288 3月 9 2023 dbus-test-tool*
-rwxr-xr-x 1 root root 14112 3月 9 2023 dbus-update-activation-environment*
-rwxr-xr-x 1 root root 10016 3月 9 2023 dbus-uuidgen*
lrwxrwxrwx 1 root root 17 3月 9 2023 dc -> ../../bin/busybox*
-rwxr-xr-x 1 root root 13286 3月 9 2023 ddcmon*
-rwxr-xr-x 1 root root 38768 3月 9 2023 deadline_test*
lrwxrwxrwx 1 root root 17 3月 9 2023 deallocvt -> ../../bin/busybox*
-rwxr-xr-x 1 root root 109436 3月 9 2023 decode-dimms*
-rwxr-xr-x 1 root root 5600 3月 9 2023 decode-edid*
-rwxr-xr-x 1 root root 22672 3月 9 2023 decode_tm6000*
-rwxr-xr-x 1 root root 6528 3月 9 2023 decode-vaio*
-rwxr-xr-x 1 root root 4895 3月 9 2023 determine_maximum_mpps.sh*
-rwxr-xr-x 1 root root 14112 3月 9 2023 dhrystone*
lrwxrwxrwx 1 root root 17 3月 9 2023 diff -> ../../bin/busybox*
lrwxrwxrwx 1 root root 9 3月 9 2023 dircolors -> coreutils*
lrwxrwxrwx 1 root root 9 3月 9 2023 dirname -> coreutils*
-rwxr-xr-x 1 root root 30552 3月 9 2023 disk*
lrwxrwxrwx 1 root root 17 3月 9 2023 dos2unix -> ../../bin/busybox*
-rwxr-xr-x 1 root root 18208 3月 9 2023 dotlockfile*
-rwxr-xr-x 1 root root 10016 3月 9 2023 drmdevice*
lrwxrwxrwx 1 root root 16 3月 9 2023 dropbearconvert -> ../sbin/dropbear*
lrwxrwxrwx 1 root root 16 3月 9 2023 dropbearkey -> ../sbin/dropbear*
lrwxrwxrwx 1 root root 9 3月 9 2023 du -> coreutils*
-rwxr-xr-x 1 root root 39480 3月 9 2023 dumpsys*
-rwxr-xr-x 1 root root 14264 3月 9 2023 dvb-fe-tool*
-rwxr-xr-x 1 root root 10112 3月 9 2023 dvb-format-convert*
-rwxr-xr-x 1 root root 31168 3月 9 2023 dvbv5-daemon*
-rwxr-xr-x 1 root root 18304 3月 9 2023 dvbv5-scan*
-rwxr-xr-x 1 root root 30592 3月 9 2023 dvbv5-zap*
-rwxr-xr-x 1 root root 30576 3月 9 2023 dwebp*
lrwxrwxrwx 1 root root 17 3月 9 2023 eject -> ../../bin/busybox*
-rwxr-xr-x 1 root root 30552 3月 9 2023 enough*
lrwxrwxrwx 1 root root 9 3月 9 2023 env -> coreutils*
-rwxr-xr-x 1 root root 2529 3月 9 2023 esdcompat*
-rwxr-xr-x 1 root root 51056 3月 9 2023 evtest*
lrwxrwxrwx 1 root root 9 3月 9 2023 expand -> coreutils*
lrwxrwxrwx 1 root root 9 3月 9 2023 expr -> coreutils*
-rwxr-xr-x 1 root root 44376 3月 9 2023 faad*
lrwxrwxrwx 1 root root 9 3月 9 2023 factor -> coreutils*
lrwxrwxrwx 1 root root 17 3月 9 2023 fallocate -> ../../bin/busybox*
-rwxr-xr-x 1 root root 14192 3月 9 2023 fc-cache*
-rwxr-xr-x 1 root root 14192 3月 9 2023 fc-cat*
-rwxr-xr-x 1 root root 10096 3月 9 2023 fc-conflist*
-rwxr-xr-x 1 root root 10096 3月 9 2023 fc-list*
-rwxr-xr-x 1 root root 14192 3月 9 2023 fc-match*
-rwxr-xr-x 1 root root 10096 3月 9 2023 fc-pattern*
-rwxr-xr-x 1 root root 10096 3月 9 2023 fc-query*
-rwxr-xr-x 1 root root 10096 3月 9 2023 fc-scan*
-rwxr-xr-x 1 root root 10096 3月 9 2023 fc-validate*
-rwxr-xr-x 1 root root 276584 3月 9 2023 ffmpeg*
lrwxrwxrwx 1 root root 17 3月 9 2023 find -> ../../bin/busybox*
-rwxr-xr-x 1 root root 181280 3月 9 2023 flac*
lrwxrwxrwx 1 root root 17 3月 9 2023 flock -> ../../bin/busybox*
-rwxr-xr-x 1 root root 636 3月 9 2023 fltest_extgpio.sh*
-rwxr-xr-x 1 root root 501 3月 9 2023 fltest_gpio.sh*
-rwxr-xr-x 1 root root 505 3月 9 2023 fltest_hostapd.sh*
-rwxr-xr-x 1 root root 10016 3月 9 2023 fltest_keytest*
-rwxr-xr-x 1 root root 477 3月 9 2023 fltest_memory_bandwidth.sh*
-rwxr-xr-x 1 root root 160 3月 9 2023 fltest_obexctl.sh*
-rwxr-xr-x 1 root root 38856 3月 9 2023 fltest_qt_4g*
-rwxr-xr-x 1 root root 30664 3月 9 2023 fltest_qt_backlight*
-rwxr-xr-x 1 root root 67528 3月 9 2023 fltest_qt_books*
-rw-r--r-- 1 root root 370 3月 9 2023 fltest_qt_books.pro
-rwxr-xr-x 1 root root 30664 3月 9 2023 fltest_qt_keypad*
-rwxr-xr-x 1 root root 67528 3月 9 2023 fltest_qt_musicplayer*
-rwxr-xr-x 1 root root 75720 3月 9 2023 fltest_qt_network*
-rwxr-xr-x 1 root root 63432 3月 9 2023 fltest_qt_opengl*
-rwxr-xr-x 1 root root 34760 3月 9 2023 fltest_qt_ping_test*
-rwxr-xr-x 1 root root 59336 3月 9 2023 fltest_qt_qplayer*
-rwxr-xr-x 1 root root 26568 3月 9 2023 fltest_qt_qtmultscreen*
-rwxr-xr-x 1 root root 34760 3月 9 2023 fltest_qt_rtc*
-rwxr-xr-x 1 root root 190408 3月 9 2023 fltest_qt_simplebrowser*
-rwxr-xr-x 1 root root 47048 3月 9 2023 fltest_qt_spitest*
-rwxr-xr-x 1 root root 153544 3月 9 2023 fltest_qt_terminal*
-rwxr-xr-x 1 root root 34760 3月 9 2023 fltest_qt_tftpUpdate*
-rwxr-xr-x 1 root root 43552 3月 9 2023 fltest_qt_ubootmenu*
-rwxr-xr-x 1 root root 30664 3月 9 2023 fltest_qt_watchdog*
-rwxr-xr-x 1 root root 38856 3月 9 2023 fltest_qt_wifi*
-rwxr-xr-x 1 root root 404 3月 9 2023 fltest_quectel.sh*
-rwxr-xr-x 1 root root 10112 3月 9 2023 fltest_spidev_test*
-rwxr-xr-x 1 root root 10112 3月 9 2023 fltest_uarttest*
-rwxr-xr-x 1 root root 10016 3月 9 2023 fltest_watchdog*
-rwxr-xr-x 1 root root 5920 3月 9 2023 fltest_watchdogrestart*
-rwxr-xr-x 1 root root 2930 3月 9 2023 fltest_wifi.sh*
-rwxr-xr-x 1 root root 27360 3月 9 2023 fluidsynth*
-rwxr-xr-x 1 root root 5920 3月 9 2023 flushdisk*
lrwxrwxrwx 1 root root 9 3月 9 2023 fmt -> coreutils*
lrwxrwxrwx 1 root root 9 3月 9 2023 fold -> coreutils*
lrwxrwxrwx 1 root root 17 3月 9 2023 free -> ../../bin/busybox*
-rwxr-xr-x 1 root root 19072 3月 9 2023 fribidi*
lrwxrwxrwx 1 root root 17 3月 9 2023 fuser -> ../../bin/busybox*
-rwxr-xr-x 1 root root 18288 3月 9 2023 gapplication*
-rwxr-xr-x 1 root root 334272 3月 9 2023 gatttool*
-rwxr-xr-x 1 root root 42864 3月 9 2023 gdbus*
-rwxr-xr-x 1 root root 10032 3月 9 2023 gdk-pixbuf-csource*
-rwxr-xr-x 1 root root 10016 3月 9 2023 gdk-pixbuf-pixdata*
-rwxr-xr-x 1 root root 14112 3月 9 2023 gdk-pixbuf-query-loaders*
-rwxr-xr-x 1 root root 30576 3月 9 2023 getconf*
-rwxr-xr-x 1 root root 83872 3月 9 2023 gio*
-rwxr-xr-x 1 root root 14112 3月 9 2023 gio-querymodules*
-rwxr-xr-x 1 root root 469520 3月 9 2023 glmark2-es2-drm*
-rwxr-xr-x 1 root root 473824 3月 9 2023 glmark2-es2-wayland*
-rwxr-xr-x 1 root root 14112 3月 9 2023 gresource*
lrwxrwxrwx 1 root root 9 3月 9 2023 groups -> coreutils*
-rwxr-xr-x 1 root root 26400 3月 9 2023 gsettings*
-rwxr-xr-x 1 root root 18288 3月 9 2023 gst-device-monitor-1.0*
-rwxr-xr-x 1 root root 30496 3月 9 2023 gst-discoverer-1.0*
-rwxr-xr-x 1 root root 55160 3月 9 2023 gst-inspect-1.0*
-rwxr-xr-x 1 root root 34608 3月 9 2023 gst-launch-1.0*
-rwxr-xr-x 1 root root 42864 3月 9 2023 gst-play-1.0*
-rwxr-xr-x 1 root root 30576 3月 9 2023 gst-stats-1.0*
-rwxr-xr-x 1 root root 26400 3月 9 2023 gst-transcoder-1.0*
-rwxr-xr-x 1 root root 14112 3月 9 2023 gst-typefind-1.0*
-rwxr-xr-x 1 root root 14456 3月 9 2023 hackbench*
-rwxr-xr-x 1 root root 34656 3月 9 2023 hb-ot-shape-closure*
-rwxr-xr-x 1 root root 42848 3月 9 2023 hb-shape*
-rwxr-xr-x 1 root root 34624 3月 9 2023 hb-subset*
-rwxr-xr-x 1 root root 59336 3月 9 2023 hb-view*
-rwxr-xr-x 1 root root 177848 3月 9 2023 hciattach*
-rwxr-xr-x 1 root root 172040 3月 9 2023 hciconfig*
-rwxr-xr-x 1 root root 328088 3月 9 2023 hcidump*
-rwxr-xr-x 1 root root 187760 3月 9 2023 hcitool*
-rwxr-xr-x 1 root root 10144 3月 9 2023 hcitop*
lrwxrwxrwx 1 root root 9 3月 9 2023 head -> coreutils*
-rwxr-xr-x 1 root root 5920 3月 9 2023 hello*
-rwxr-xr-x 1 root root 14192 3月 9 2023 hex2hcd*
lrwxrwxrwx 1 root root 17 3月 9 2023 hexdump -> ../../bin/busybox*
lrwxrwxrwx 1 root root 17 3月 9 2023 hexedit -> ../../bin/busybox*
-rwxr-xr-x 1 root root 75704 3月 9 2023 hostapd_cli*
lrwxrwxrwx 1 root root 9 3月 9 2023 hostid -> coreutils*
lrwxrwxrwx 1 root root 9 3月 9 2023 id -> coreutils*
-rwxr-xr-x 1 root root 38768 3月 9 2023 img2webp*
-rwxr-xr-x 1 root root 42864 3月 9 2023 input-event-daemon*
lrwxrwxrwx 1 root root 9 3月 9 2023 install -> coreutils*
-rwxr-xr-x 1 root root 14112 3月 9 2023 io*
lrwxrwxrwx 1 root root 17 3月 9 2023 ipcrm -> ../../bin/busybox*
lrwxrwxrwx 1 root root 17 3月 9 2023 ipcs -> ../../bin/busybox*
-rwxr-xr-x 1 root root 170080 3月 9 2023 iperf*
-rwxr-xr-x 1 root root 10016 3月 9 2023 iperf3*
lrwxrwxrwx 1 root root 30 3月 9 2023 iptables-xml -> /usr/sbin/xtables-legacy-multi*
-rwxr-xr-x 1 root root 59264 3月 9 2023 ir-ctl*
-rwxr-xr-x 1 root root 94880 3月 9 2023 ir-keytable*
-rwxr-xr-x 1 root root 18208 3月 9 2023 isotpdump*
-rwxr-xr-x 1 root root 14112 3月 9 2023 isotpperf*
-rwxr-xr-x 1 root root 10016 3月 9 2023 isotprecv*
-rwxr-xr-x 1 root root 14112 3月 9 2023 isotpsend*
-rwxr-xr-x 1 root root 14112 3月 9 2023 isotpserver*
-rwxr-xr-x 1 root root 14112 3月 9 2023 isotpsniffer*
-rwxr-xr-x 1 root root 14144 3月 9 2023 isotptun*
-rwxr-xr-x 1 root root 14496 3月 9 2023 ivtv-ctl*
-rwxr-xr-x 1 root root 18512 3月 9 2023 j1939acd*
-rwxr-xr-x 1 root root 18208 3月 9 2023 j1939cat*
-rwxr-xr-x 1 root root 14352 3月 9 2023 j1939spy*
-rwxr-xr-x 1 root root 14376 3月 9 2023 j1939sr*
-rwxr-xr-x 1 root root 18208 3月 9 2023 jpeg2yuv*
-rwxr-xr-x 1 root root 1974232 3月 9 2023 jsc*
lrwxrwxrwx 1 root root 17 3月 9 2023 killall -> ../../bin/busybox*
-rwxr-xr-x 1 root root 30576 3月 9 2023 kms-steal-crtc*
-rwxr-xr-x 1 root root 14192 3月 9 2023 kmstest*
-rwxr-xr-x 1 root root 18480 3月 9 2023 kms-universal-planes*
-rwxr-xr-x 1 root root 138864 3月 9 2023 l2ping*
-rwxr-xr-x 1 root root 155576 3月 9 2023 l2test*
lrwxrwxrwx 1 root root 17 3月 9 2023 last -> ../../bin/busybox*
-rwxr-xr-x 1 root root 34656 3月 9 2023 lat_connect*
-rwxr-xr-x 1 root root 34656 3月 9 2023 lat_ctx*
-rwxr-xr-x 1 root root 34656 3月 9 2023 lat_fcntl*
-rwxr-xr-x 1 root root 30560 3月 9 2023 lat_fifo*
-rwxr-xr-x 1 root root 34656 3月 9 2023 lat_fs*
-rwxr-xr-x 1 root root 34656 3月 9 2023 lat_http*
-rwxr-xr-x 1 root root 100344 3月 9 2023 lat_mem_rd*
-rwxr-xr-x 1 root root 34656 3月 9 2023 lat_mmap*
-rwxr-xr-x 1 root root 42848 3月 9 2023 lat_ops*
-rwxr-xr-x 1 root root 34656 3月 9 2023 lat_pagefault*
-rwxr-xr-x 1 root root 30560 3月 9 2023 lat_pipe*
-rwxr-xr-x 1 root root 34656 3月 9 2023 lat_proc*
-rwxr-xr-x 1 root root 34688 3月 9 2023 lat_rpc*
-rwxr-xr-x 1 root root 38752 3月 9 2023 lat_select*
-rwxr-xr-x 1 root root 30560 3月 9 2023 lat_sem*
-rwxr-xr-x 1 root root 34656 3月 9 2023 lat_sig*
-rwxr-xr-x 1 root root 34656 3月 9 2023 lat_syscall*
-rwxr-xr-x 1 root root 34656 3月 9 2023 lat_tcp*
-rwxr-xr-x 1 root root 38752 3月 9 2023 lat_udp*
-rwxr-xr-x 1 root root 30560 3月 9 2023 lat_unix*
-rwxr-xr-x 1 root root 34656 3月 9 2023 lat_unix_connect*
-rwxr-xr-x 1 root root 2594 3月 9 2023 lav2avi.sh*
-rwxr-xr-x 1 root root 17800 3月 9 2023 lav2mpeg*
-rwxr-xr-x 1 root root 14120 3月 9 2023 lav2wav*
-rwxr-xr-x 1 root root 18216 3月 9 2023 lav2yuv*
-rwxr-xr-x 1 root root 22312 3月 9 2023 lavaddwav*
-rwxr-xr-x 1 root root 10024 3月 9 2023 lavinfo*
-rwxr-xr-x 1 root root 14112 3月 9 2023 lavpipe*
-rwxr-xr-x 1 root root 26667 3月 9 2023 lavtc.sh*
-rwxr-xr-x 1 root root 14120 3月 9 2023 lavtrans*
-rwxr-xr-x 1 root root 5344 3月 9 2023 ldd*
lrwxrwxrwx 1 root root 17 3月 9 2023 less -> ../../bin/busybox*
-rwxr-xr-x 1 root root 14608 3月 9 2023 libevdev-tweak-device*
-rwxr-xr-x 1 root root 47272 3月 9 2023 libinput*
-rwxr-xr-x 1 root root 100336 3月 9 2023 line*
-rwxr-xr-x 1 root root 12049 3月 9 2023 lmbench*
-rwxr-xr-x 1 root root 39072 3月 9 2023 lmdd*
-rwxr-xr-x 1 root root 18224 3月 9 2023 lmhttp*
-rwxr-xr-x 1 root root 14352 3月 9 2023 lockfile-check*
-rwxr-xr-x 1 root root 14352 3月 9 2023 lockfile-create*
-rwxr-xr-x 1 root root 14352 3月 9 2023 lockfile-remove*
-rwxr-xr-x 1 root root 14352 3月 9 2023 lockfile-touch*
-rwxr-xr-x 1 root root 22504 3月 9 2023 log2asc*
-rwxr-xr-x 1 root root 18408 3月 9 2023 log2long*
lrwxrwxrwx 1 root root 17 3月 9 2023 logger -> ../../bin/busybox*
lrwxrwxrwx 1 root root 9 3月 9 2023 logname -> coreutils*
-rwxr-xr-x 1 root root 30552 3月 9 2023 loop_o*
lrwxrwxrwx 1 root root 2 3月 9 2023 lrz -> rz*
lrwxrwxrwx 1 root root 17 3月 9 2023 lsof -> ../../bin/busybox*
lrwxrwxrwx 1 root root 17 3月 9 2023 lspci -> ../../bin/busybox*
lrwxrwxrwx 1 root root 17 3月 9 2023 lsscsi -> ../../bin/busybox*
lrwxrwxrwx 1 root root 17 3月 9 2023 lsusb -> ../../bin/busybox*
lrwxrwxrwx 1 root root 2 3月 9 2023 lsz -> sz*
lrwxrwxrwx 1 root root 17 3月 9 2023 lzcat -> ../../bin/busybox*
lrwxrwxrwx 1 root root 17 3月 9 2023 lzma -> ../../bin/busybox*
lrwxrwxrwx 1 root root 17 3月 9 2023 lzopcat -> ../../bin/busybox*
-rwxr-xr-x 1 root root 14352 3月 9 2023 mail-lock*
-rwxr-xr-x 1 root root 14352 3月 9 2023 mail-touchlock*
-rwxr-xr-x 1 root root 14352 3月 9 2023 mail-unlock*
-rwxr-xr-x 1 root root 14200 3月 9 2023 matrix-browser*
-rwxr-xr-x 1 root root 10016 3月 9 2023 matteblend.flt*
-rwxr-xr-x 1 root root 30560 3月 9 2023 mcp251xfd-dump*
lrwxrwxrwx 1 root root 9 3月 9 2023 md5sum -> coreutils*
-rwxr-xr-x 1 root root 51664 3月 9 2023 media-ctl*
-rwxr-xr-x 1 root root 14280 3月 9 2023 memhog*
-rwxr-xr-x 1 root root 1870 3月 9 2023 memInfo.sh*
-rwxr-xr-x 1 root root 477 3月 9 2023 memory_bandwidth.sh*
-rwxr-xr-x 1 root root 30560 3月 9 2023 memsize*
-rwxr-xr-x 1 root root 22600 3月 9 2023 memtester*
lrwxrwxrwx 1 root root 17 3月 9 2023 mesg -> ../../bin/busybox*
-rwxr-xr-x 1 root root 102048 3月 9 2023 metaflac*
-rwxr-xr-x 1 root root 51184 3月 9 2023 mhz*
lrwxrwxrwx 1 root root 17 3月 9 2023 microcom -> ../../bin/busybox*
-rwxr-xr-x 1 root root 10248 3月 9 2023 migratepages*
-rwxr-xr-x 1 root root 14288 3月 9 2023 migspeed*
-rwxr-xr-x 1 root root 5920 3月 9 2023 mjpeg_simd_helper*
lrwxrwxrwx 1 root root 9 3月 9 2023 mkfifo -> coreutils*
lrwxrwxrwx 1 root root 17 3月 9 2023 mkpasswd -> ../../bin/busybox*
-rwxr-xr-x 1 root root 18288 3月 9 2023 modeprint*
-rwxr-xr-x 1 root root 63368 3月 9 2023 modetest*
-rwxr-xr-x 1 root root 14112 3月 9 2023 mouse-dpi-tool*
-rwxr-xr-x 1 root root 117856 3月 9 2023 mp2enc*
-rwxr-xr-x 1 root root 40392 3月 9 2023 mpeg2enc*
-rwxr-xr-x 1 root root 1638 3月 9 2023 mpegtranscode*
-rwxr-xr-x 1 root root 115216 3月 9 2023 mpg123*
-rwxr-xr-x 1 root root 22688 3月 9 2023 mpg123-id3dump*
-rwxr-xr-x 1 root root 14384 3月 9 2023 mpg123-strip*
-rwxr-xr-x 1 root root 52248 3月 9 2023 mpi_dec_mt_test*
-rwxr-xr-x 1 root root 52248 3月 9 2023 mpi_dec_multi_test*
-rwxr-xr-x 1 root root 52248 3月 9 2023 mpi_dec_test*
-rwxr-xr-x 1 root root 80920 3月 9 2023 mpi_enc_mt_test*
-rwxr-xr-x 1 root root 80920 3月 9 2023 mpi_enc_test*
-rwxr-xr-x 1 root root 77472 3月 9 2023 mpi_rc2_test*
-rwxr-xr-x 1 root root 27240 3月 9 2023 mplex*
-rwxr-xr-x 1 root root 14192 3月 9 2023 mpp_info_test*
-rwxr-xr-x 1 root root 92216 3月 9 2023 mpris-proxy*
-rwxr-xr-x 1 root root 5920 3月 9 2023 msleep*
-rwxr-xr-x 1 root root 10016 3月 9 2023 mtdev-test*
-rwxr-xr-x 1 root root 10016 3月 9 2023 multiblend.flt*
-rwxr-xr-x 1 root root 1865 3月 9 2023 networkSettings.sh*
lrwxrwxrwx 1 root root 9 3月 9 2023 nl -> coreutils*
lrwxrwxrwx 1 root root 9 3月 9 2023 nohup -> coreutils*
lrwxrwxrwx 1 root root 9 3月 9 2023 nproc -> coreutils*
lrwxrwxrwx 1 root root 17 3月 9 2023 nslookup -> ../../bin/busybox*
-rwxr-xr-x 1 root root 31408 3月 9 2023 numactl*
-rwxr-xr-x 1 root root 30656 3月 9 2023 numademo*
-rwxr-xr-x 1 root root 31672 3月 9 2023 numastat*
lrwxrwxrwx 1 root root 9 3月 9 2023 numfmt -> coreutils*
-rwxr-xr-x 1 root root 178104 3月 9 2023 obexctl*
-rwxr-xr-x 1 root root 519416 3月 9 2023 obexd*
lrwxrwxrwx 1 root root 9 3月 9 2023 od -> coreutils*
-rwxr-xr-x 1 root root 1506 3月 9 2023 on_ac_power*
-rwxr-xr-x 1 root root 1369 3月 9 2023 onig-config*
lrwxrwxrwx 1 root root 17 3月 9 2023 openvt -> ../../bin/busybox*
-rwxr-xr-x 1 root root 5968 3月 9 2023 oslat*
-rwxr-xr-x 1 root root 36560 3月 9 2023 out123*
-rwxr-xr-x 1 root root 38800 3月 9 2023 pacat*
-rwxr-xr-x 1 root root 14192 3月 9 2023 pacmd*
-rwxr-xr-x 1 root root 55168 3月 9 2023 pactl*
-rwxr-xr-x 1 root root 2225 3月 9 2023 padsp*
-rwxr-xr-x 1 root root 2039 3月 9 2023 pa-info*
lrwxrwxrwx 1 root root 5 3月 9 2023 pamon -> pacat*
-rwxr-xr-x 1 root root 14112 3月 9 2023 pango-list*
-rwxr-xr-x 1 root root 14112 3月 9 2023 pango-segmentation*
-rwxr-xr-x 1 root root 47112 3月 9 2023 pango-view*
lrwxrwxrwx 1 root root 5 3月 9 2023 paplay -> pacat*
lrwxrwxrwx 1 root root 5 3月 9 2023 parec -> pacat*
lrwxrwxrwx 1 root root 5 3月 9 2023 parecord -> pacat*
-rwxr-xr-x 1 root root 100336 3月 9 2023 par_mem*
-rwxr-xr-x 1 root root 270176 3月 9 2023 par_ops*
lrwxrwxrwx 1 root root 17 3月 9 2023 passwd -> ../../bin/busybox*
lrwxrwxrwx 1 root root 9 3月 9 2023 paste -> coreutils*
-rwxr-xr-x 1 root root 14200 3月 9 2023 pasuspender*
lrwxrwxrwx 1 root root 17 3月 9 2023 patch -> ../../bin/busybox*
lrwxrwxrwx 1 root root 9 3月 9 2023 pathchk -> coreutils*
-rwxr-xr-x 1 root root 44960 3月 9 2023 pcre2grep*
-rwxr-xr-x 1 root root 115632 3月 9 2023 pcre2test*
-rwxr-xr-x 1 root root 36568 3月 9 2023 pcregrep*
-rwxr-xr-x 1 root root 63344 3月 9 2023 pcretest*
-rwxr-xr-x 1 root root 14112 3月 9 2023 pgmtoy4m*
-rwxr-xr-x 1 root root 13023584 3月 9 2023 php*
-rwxr-xr-x 1 root root 12904480 3月 9 2023 php-cgi*
lrwxrwxrwx 1 root root 9 3月 9 2023 pinky -> coreutils*
-rwxr-xr-x 1 root root 26552 3月 9 2023 pip_stress*
-rwxr-xr-x 1 root root 43368 3月 9 2023 pi_stress*
-rwxr-xr-x 1 root root 44016 3月 9 2023 pkgdata*
lrwxrwxrwx 1 root root 17 3月 9 2023 pmap -> ../../bin/busybox*
-rwxr-xr-x 1 root root 981 3月 9 2023 pm-is-supported*
-rwxr-xr-x 1 root root 31088 3月 9 2023 pmqtest*
-rwxr-xr-x 1 root root 22304 3月 9 2023 png2yuv*
-rwxr-xr-x 1 root root 22448 3月 9 2023 pnmtoy4m*
-rwxr-xr-x 1 root root 22304 3月 9 2023 ppmtoy4m*
lrwxrwxrwx 1 root root 9 3月 9 2023 pr -> coreutils*
-rwxr-xr-x 1 root root 4907 7月 1 2021 prerr.properties*
lrwxrwxrwx 1 root root 9 3月 9 2023 printf -> coreutils*
-rwxr-xr-x 1 root root 22392 3月 9 2023 procrank*
-rwxr-xr-x 1 root root 14192 3月 9 2023 proptest*
-rwxr-xr-x 1 root root 31008 3月 9 2023 ptsematest*
lrwxrwxrwx 1 root root 9 3月 9 2023 ptx -> coreutils*
-rwxr-xr-x 1 root root 79792 3月 9 2023 pulseaudio*
-rwxr-xr-x 1 root root 133248 3月 9 2023 qml*
-rwxr-xr-x 1 root root 133328 3月 9 2023 qmlpreview*
-rwxr-xr-x 1 root root 67720 3月 9 2023 qmlscene*
-rwxr-xr-x 1 root root 67632 3月 9 2023 qmltestrunner*
-rwxr-xr-x 1 root root 67632 3月 9 2023 QtWebProcess*
-rwxr-xr-x 1 root root 175536 3月 9 2023 quectelCM*
-rwxr-xr-x 1 root root 14368 3月 9 2023 queuelat*
-rwxr-xr-x 1 root root 436176 3月 9 2023 qv4l2*
lrwxrwxrwx 1 root root 2 3月 9 2023 rb -> rz*
-rwxr-xr-x 1 root root 185544 3月 9 2023 rctest*
-rwxr-xr-x 1 root root 35400 3月 9 2023 rds-ctl*
lrwxrwxrwx 1 root root 9 3月 9 2023 readlink -> coreutils*
lrwxrwxrwx 1 root root 9 3月 9 2023 realpath -> coreutils*
lrwxrwxrwx 1 root root 17 3月 9 2023 renice -> ../../bin/busybox*
lrwxrwxrwx 1 root root 17 3月 9 2023 reset -> ../../bin/busybox*
lrwxrwxrwx 1 root root 17 3月 9 2023 resize -> ../../bin/busybox*
-rwxr-xr-x 1 root root 252 3月 9 2023 restart_rknn.sh*
-rwxr-xr-x 1 root root 147752 3月 9 2023 rfcomm*
-rwxr-xr-x 1 root root 14216 3月 9 2023 rkaiq_3A_server*
-rwxr-xr-x 1 root root 417188 3月 9 2023 rk_airkiss*
-rwxr-xr-x 1 root root 195264 3月 9 2023 rkisp_demo*
-rwxr-xr-x 1 root root 18288 3月 9 2023 rk_mpi_adec_test*
-rwxr-xr-x 1 root root 18288 3月 9 2023 rk_mpi_aenc_test*
-rwxr-xr-x 1 root root 18288 3月 9 2023 rk_mpi_ai_test*
-rwxr-xr-x 1 root root 26480 3月 9 2023 rk_mpi_ao_test*
-rwxr-xr-x 1 root root 14360 3月 9 2023 rk_mpi_avio_test*
-rwxr-xr-x 1 root root 47144 3月 9 2023 rk_mpi_avs_test*
-rwxr-xr-x 1 root root 30592 3月 9 2023 rk_mpi_gdc_test*
-rwxr-xr-x 1 root root 14280 3月 9 2023 rk_mpi_mb_test*
-rwxr-xr-x 1 root root 14360 3月 9 2023 rk_mpi_mmz_test*
-rwxr-xr-x 1 root root 55512 3月 9 2023 rk_mpi_rgn_test*
-rwxr-xr-x 1 root root 18288 3月 9 2023 rk_mpi_sys_test*
-rwxr-xr-x 1 root root 43048 3月 9 2023 rk_mpi_tde_test*
-rwxr-xr-x 1 root root 22384 3月 9 2023 rk_mpi_vdec_test*
-rwxr-xr-x 1 root root 43048 3月 9 2023 rk_mpi_venc_test*
-rwxr-xr-x 1 root root 47144 3月 9 2023 rk_mpi_vgs_test*
-rwxr-xr-x 1 root root 39024 3月 9 2023 rk_mpi_vi_test*
-rwxr-xr-x 1 root root 47176 3月 9 2023 rk_mpi_vo_test*
-rwxr-xr-x 1 root root 43048 3月 9 2023 rk_mpi_vpss_test*
-rwxr-xr-x 1 root root 385448 3月 9 2023 rknn_server*
drwxr-xr-x 8 root root 4096 3月 9 2023 rknpu2_examples/
-rwxr-xr-x 1 root root 31008 3月 9 2023 rt-migrate-test*
lrwxrwxrwx 1 root root 9 3月 9 2023 runcon -> coreutils*
-rwxr-xr-x 1 root root 87 3月 9 2023 runMatrixShutdown.sh*
-rwxr-xr-x 1 root root 147 3月 9 2023 runRefreshMatrix.sh*
-rwxr-xr-x 1 root root 83 3月 9 2023 runSystemShutdown.sh*
lrwxrwxrwx 1 root root 2 3月 9 2023 rx -> rz*
-rwxr-xr-x 1 root root 57800 3月 9 2023 rz*
lrwxrwxrwx 1 root root 2 3月 9 2023 sb -> sz*
-rwxr-xr-x 1 root root 34784 3月 9 2023 sbcdec*
-rwxr-xr-x 1 root root 34912 3月 9 2023 sbcenc*
-rwxr-xr-x 1 root root 10016 3月 9 2023 sbcinfo*
-rwxr-xr-x 1 root root 174328 3月 9 2023 scp*
-rwxr-xr-x 1 root root 67632 3月 9 2023 sdpscanner*
-rwxr-xr-x 1 root root 242312 3月 9 2023 sdptool*
lrwxrwxrwx 1 root root 9 3月 9 2023 seq -> coreutils*
-rwxr-xr-x 1 root root 129 3月 9 2023 setclockspeed.sh*
lrwxrwxrwx 1 root root 17 3月 9 2023 setfattr -> ../../bin/busybox*
-rwxr-xr-x 1 root root 75 3月 9 2023 setgovernor.sh*
lrwxrwxrwx 1 root root 17 3月 9 2023 setkeycodes -> ../../bin/busybox*
lrwxrwxrwx 1 root root 17 3月 9 2023 setsid -> ../../bin/busybox*
-rwxr-xr-x 1 root root 174304 3月 9 2023 sftp*
lrwxrwxrwx 1 root root 9 3月 9 2023 sha1sum -> coreutils*
lrwxrwxrwx 1 root root 9 3月 9 2023 sha224sum -> coreutils*
lrwxrwxrwx 1 root root 9 3月 9 2023 sha256sum -> coreutils*
lrwxrwxrwx 1 root root 9 3月 9 2023 sha384sum -> coreutils*
lrwxrwxrwx 1 root root 17 3月 9 2023 sha3sum -> ../../bin/busybox*
lrwxrwxrwx 1 root root 9 3月 9 2023 sha512sum -> coreutils*
lrwxrwxrwx 1 root root 9 3月 9 2023 shred -> coreutils*
lrwxrwxrwx 1 root root 9 3月 9 2023 shuf -> coreutils*
-rwxr-xr-x 1 root root 31000 3月 9 2023 signaltest*
-rwxr-xr-x 1 root root 31016 3月 9 2023 sigwaittest*
-rwxr-xr-x 1 root root 10016 3月 9 2023 slcan_attach*
-rwxr-xr-x 1 root root 14120 3月 9 2023 slcand*
-rwxr-xr-x 1 root root 14112 3月 9 2023 slcanpty*
lrwxrwxrwx 1 root root 9 3月 9 2023 sort -> coreutils*
-rwxr-xr-x 1 root root 22816 3月 9 2023 speexdec*
-rwxr-xr-x 1 root root 27328 3月 9 2023 speexenc*
lrwxrwxrwx 1 root root 9 3月 9 2023 split -> coreutils*
-rwxr-xr-x 1 root root 237040 3月 9 2023 sqlite3*
-rwxr-xr-x 1 root root 26760 3月 9 2023 ssdd*
-rwxr-xr-x 1 root root 744024 3月 9 2023 ssh*
-rwxr-xr-x 1 root root 346120 3月 9 2023 ssh-add*
-rwxr-xr-x 1 root root 329712 3月 9 2023 ssh-agent*
-rwxr-xr-x 1 root root 12676 3月 9 2023 ssh-copy-id*
-rwxr-xr-x 1 root root 452776 3月 9 2023 ssh-keygen*
-rwxr-xr-x 1 root root 428192 3月 9 2023 ssh-keyscan*
-rwxr-xr-x 1 root root 71 3月 9 2023 start_rknn.sh*
lrwxrwxrwx 1 root root 9 3月 9 2023 stat -> coreutils*
lrwxrwxrwx 1 root root 9 3月 9 2023 stdbuf -> coreutils*
-rwxr-xr-x 1 root root 1333456 3月 9 2023 strace*
-rwxr-xr-x 1 root root 1821 3月 9 2023 strace-log-merge*
-rwxr-xr-x 1 root root 34656 3月 9 2023 stream*
-rwxr-xr-x 1 root root 22320 3月 9 2023 stress*
-rwxr-xr-x 1 root root 285760 3月 9 2023 stressapptest*
-rwxr-xr-x 1 root root 1525776 3月 9 2023 stress-ng*
lrwxrwxrwx 1 root root 17 3月 9 2023 strings -> ../../bin/busybox*
lrwxrwxrwx 1 root root 9 3月 9 2023 sum -> coreutils*
lrwxrwxrwx 1 root root 17 3月 9 2023 svc -> ../../bin/busybox*
lrwxrwxrwx 1 root root 17 3月 9 2023 svok -> ../../bin/busybox*
-rwxr-xr-x 1 root root 31048 3月 9 2023 svsematest*
lrwxrwxrwx 1 root root 2 3月 9 2023 sx -> sz*
-rwxr-xr-x 1 root root 2282 3月 9 2023 sysSettings.sh*
-rwxr-xr-x 1 root root 66016 3月 9 2023 sz*
lrwxrwxrwx 1 root root 9 3月 9 2023 tac -> coreutils*
lrwxrwxrwx 1 root root 9 3月 9 2023 tail -> coreutils*
-rwxr-xr-x 1 root root 1836 3月 9 2023 taskInfo.sh*
-rwxr-xr-x 1 root root 27256 3月 9 2023 taskset*
lrwxrwxrwx 1 root root 9 3月 9 2023 tee -> coreutils*
lrwxrwxrwx 1 root root 17 3月 9 2023 telnet -> ../../bin/busybox*
lrwxrwxrwx 1 root root 9 3月 9 2023 test -> coreutils*
-rwxr-xr-x 1 root root 14112 3月 9 2023 testj1939*
lrwxrwxrwx 1 root root 17 3月 9 2023 tftp -> ../../bin/busybox*
lrwxrwxrwx 1 root root 17 3月 9 2023 time -> ../../bin/busybox*
lrwxrwxrwx 1 root root 9 3月 9 2023 timeout -> coreutils*
-rwxr-xr-x 1 root root 30552 3月 9 2023 timing_o*
-rwxr-xr-x 1 root root 100352 3月 9 2023 tlb*
lrwxrwxrwx 1 root root 17 3月 9 2023 top -> ../../bin/busybox*
-rwxr-xr-x 1 root root 14112 3月 9 2023 touchpad-edge-detector*
lrwxrwxrwx 1 root root 9 3月 9 2023 tr -> coreutils*
-rwxr-xr-x 1 root root 18208 3月 9 2023 tracepath*
lrwxrwxrwx 1 root root 17 3月 9 2023 traceroute -> ../../bin/busybox*
-rwsr-xr-x 1 root root 22304 3月 9 2023 traceroute6*
-rwxr-xr-x 1 root root 10016 3月 9 2023 transist.flt*
lrwxrwxrwx 1 root root 9 3月 9 2023 truncate -> coreutils*
lrwxrwxrwx 1 root root 17 3月 9 2023 ts -> ../../bin/busybox*
lrwxrwxrwx 1 root root 9 3月 9 2023 tsort -> coreutils*
lrwxrwxrwx 1 root root 9 3月 9 2023 tty -> coreutils*
-rwxr-xr-x 1 root root 313432 3月 9 2023 udevadm*
lrwxrwxrwx 1 root root 9 3月 9 2023 unexpand -> coreutils*
lrwxrwxrwx 1 root root 9 3月 9 2023 uniq -> coreutils*
lrwxrwxrwx 1 root root 17 3月 9 2023 unix2dos -> ../../bin/busybox*
lrwxrwxrwx 1 root root 9 3月 9 2023 unlink -> coreutils*
lrwxrwxrwx 1 root root 17 3月 9 2023 unlzma -> ../../bin/busybox*
lrwxrwxrwx 1 root root 17 3月 9 2023 unlzop -> ../../bin/busybox*
lrwxrwxrwx 1 root root 17 3月 9 2023 unxz -> ../../bin/busybox*
lrwxrwxrwx 1 root root 17 3月 9 2023 unzip -> ../../bin/busybox*
-rwxr-xr-x 1 root root 14192 3月 9 2023 update*
-rwxr-xr-x 1 root root 14112 3月 9 2023 upower*
lrwxrwxrwx 1 root root 9 3月 9 2023 uptime -> coreutils*
-rwxr-xr-x 1 root root 1682 3月 9 2023 usbdevice*
lrwxrwxrwx 1 root root 9 3月 9 2023 users -> coreutils*
lrwxrwxrwx 1 root root 17 3月 9 2023 uudecode -> ../../bin/busybox*
lrwxrwxrwx 1 root root 17 3月 9 2023 uuencode -> ../../bin/busybox*
-rwxr-xr-x 1 root root 392280 3月 9 2023 v4l2-compliance*
-rwxr-xr-x 1 root root 354600 3月 9 2023 v4l2-ctl*
-rwxr-xr-x 1 root root 18360 3月 9 2023 v4l2-sysfs-path*
-rwxr-xr-x 1 root root 14200 3月 9 2023 vbltest*
-rwxr-xr-x 1 root root 14192 3月 9 2023 vendor_storage*
lrwxrwxrwx 1 root root 17 3月 9 2023 vlock -> ../../bin/busybox*
-rwxr-xr-x 1 root root 14304 3月 9 2023 vpu_api_test*
lrwxrwxrwx 1 root root 17 3月 9 2023 w -> ../../bin/busybox*
-rwxr-xr-x 1 root root 38840 3月 9 2023 wayland-scanner*
lrwxrwxrwx 1 root root 9 3月 9 2023 wc -> coreutils*
-rwxr-xr-x 1 root root 14112 3月 9 2023 wcap-decode*
-rwxr-xr-x 1 root root 22384 3月 9 2023 webpinfo*
-rwxr-xr-x 1 root root 30576 3月 9 2023 webpmux*
-rwxr-xr-x 1 root root 5920 3月 9 2023 weston*
-rwxr-xr-x 1 root root 117520 3月 9 2023 weston-calibrator*
-rwxr-xr-x 1 root root 14232 3月 9 2023 weston-debug*
-rwxr-xr-x 1 root root 39192 3月 9 2023 weston-info*
-rwxr-xr-x 1 root root 18304 3月 9 2023 weston-screenshooter*
-rwxr-xr-x 1 root root 30912 3月 9 2023 weston-simple-damage*
-rwxr-xr-x 1 root root 43600 3月 9 2023 weston-simple-dmabuf-egl*
-rwxr-xr-x 1 root root 31216 3月 9 2023 weston-simple-dmabuf-v4l*
-rwxr-xr-x 1 root root 30824 3月 9 2023 weston-simple-egl*
-rwxr-xr-x 1 root root 26808 3月 9 2023 weston-simple-shm*
-rwxr-xr-x 1 root root 22600 3月 9 2023 weston-simple-touch*
-rwxr-xr-x 1 root root 143064 3月 9 2023 weston-terminal*
-rwxr-xr-x 1 root root 125776 3月 9 2023 weston-touch-calibrator*
lrwxrwxrwx 1 root root 17 3月 9 2023 wget -> ../../bin/busybox*
-rwxr-xr-x 1 root root 10016 3月 9 2023 whetstone*
lrwxrwxrwx 1 root root 17 3月 9 2023 which -> ../../bin/busybox*
lrwxrwxrwx 1 root root 9 3月 9 2023 who -> coreutils*
lrwxrwxrwx 1 root root 9 3月 9 2023 whoami -> coreutils*
lrwxrwxrwx 1 root root 17 3月 9 2023 xargs -> ../../bin/busybox*
-rwxr-xr-x 1 root root 14208 3月 9 2023 xkbcli*
-rwxr-xr-x 1 root root 18208 3月 9 2023 xmlcatalog*
-rwxr-xr-x 1 root root 64056 3月 9 2023 xmllint*
-rwxr-xr-x 1 root root 30496 3月 9 2023 xmlwf*
-rwxr-xr-x 1 root root 22312 3月 9 2023 xsltproc*
lrwxrwxrwx 1 root root 17 3月 9 2023 xxd -> ../../bin/busybox*
lrwxrwxrwx 1 root root 17 3月 9 2023 xz -> ../../bin/busybox*
lrwxrwxrwx 1 root root 17 3月 9 2023 xzcat -> ../../bin/busybox*
-rwxr-xr-x 1 root root 14112 3月 9 2023 y4mblack*
-rwxr-xr-x 1 root root 18320 3月 9 2023 y4mcolorbars*
-rwxr-xr-x 1 root root 100512 3月 9 2023 y4mdenoise*
-rwxr-xr-x 1 root root 10016 3月 9 2023 y4mhist*
-rwxr-xr-x 1 root root 14112 3月 9 2023 y4minterlace*
-rwxr-xr-x 1 root root 10016 3月 9 2023 y4mivtc*
-rwxr-xr-x 1 root root 92104 3月 9 2023 y4mscaler*
-rwxr-xr-x 1 root root 14120 3月 9 2023 y4mshift*
-rwxr-xr-x 1 root root 14112 3月 9 2023 y4mspatialfilter*
-rwxr-xr-x 1 root root 26400 3月 9 2023 y4mstabilizer*
-rwxr-xr-x 1 root root 18208 3月 9 2023 y4mtopnm*
-rwxr-xr-x 1 root root 18208 3月 9 2023 y4mtoppm*
-rwxr-xr-x 1 root root 10016 3月 9 2023 y4mtoyuv*
-rwxr-xr-x 1 root root 14160 3月 9 2023 y4munsharp*
lrwxrwxrwx 1 root root 9 3月 9 2023 yes -> coreutils*
-rwxr-xr-x 1 root root 10016 3月 9 2023 ypipe*
-rwxr-xr-x 1 root root 18232 3月 9 2023 yuv2lav*
-rwxr-xr-x 1 root root 14112 3月 9 2023 yuv4mpeg*
-rwxr-xr-x 1 root root 30504 3月 9 2023 yuvcorrect*
-rwxr-xr-x 1 root root 38696 3月 9 2023 yuvcorrect_tune*
-rwxr-xr-x 1 root root 10104 3月 9 2023 yuvdeinterlace*
-rwxr-xr-x 1 root root 26408 3月 9 2023 yuvdenoise*
-rwxr-xr-x 1 root root 14112 3月 9 2023 yuvfps*
-rwxr-xr-x 1 root root 18216 3月 9 2023 yuvinactive*
-rwxr-xr-x 1 root root 26480 3月 9 2023 yuvkineco*
-rwxr-xr-x 1 root root 18256 3月 9 2023 yuvmedianfilter*
-rwxr-xr-x 1 root root 46912 3月 9 2023 yuvscaler*
-rwxr-xr-x 1 root root 18288 3月 9 2023 yuvycsnoise*
-rwxr-xr-x 1 root root 10016 3月 9 2023 yuyvtoy4m*
rootroot@rootroot-X99-Turbo:~/version/OK3588_Linux_fs/linuxfs/R4/usr/bin$
rootroot@rootroot-X99-Turbo:~/version/OK3588_Linux_fs/linuxfs/R4/usr/bin$
rootroot@rootroot-X99-Turbo:~/version/OK3588_Linux_fs/linuxfs/R4/usr/bin$ ll
total 55184
drwxr-xr-x 3 root root 20480 3月 9 2023 ./
drwxr-xr-x 11 root root 4096 9月 14 2023 ../
lrwxrwxrwx 1 root root 4 3月 9 2023 '[' -> test*
lrwxrwxrwx 1 root root 17 3月 9 2023 '[[' -> ../../bin/busybox*
-rwxr-xr-x 1 root root 18416 3月 9 2023 a2dpconf*
-rwxr-xr-x 1 root root 133832 3月 9 2023 adbd*
-rwxr-xr-x 1 root root 73768 3月 9 2023 alsamixer*
-rwxr-xr-x 1 root root 51120 3月 9 2023 amixer*
-rwxr-xr-x 1 root root 27332 3月 9 2023 anytovcd.sh*
-rwxr-xr-x 1 root root 67488 3月 9 2023 aplay*
lrwxrwxrwx 1 root root 17 3月 9 2023 ar -> ../../bin/busybox*
-rwxr-xr-x 1 root root 67488 3月 9 2023 arecord*
-rwxr-xr-x 1 root root 22504 3月 9 2023 asc2log*
lrwxrwxrwx 1 root root 17 3月 9 2023 ascii -> ../../bin/busybox*
-rwxr-xr-x 1 root root 30656 3月 9 2023 aserver*
lrwxrwxrwx 1 root root 17 3月 9 2023 awk -> ../../bin/busybox*
lrwxrwxrwx 1 root root 9 3月 9 2023 b2sum -> coreutils*
lrwxrwxrwx 1 root root 9 3月 9 2023 base32 -> coreutils*
lrwxrwxrwx 1 root root 9 3月 9 2023 basename -> coreutils*
lrwxrwxrwx 1 root root 9 3月 9 2023 basenc -> coreutils*
lrwxrwxrwx 1 root root 17 3月 9 2023 bc -> ../../bin/busybox*
-rwxr-xr-x 1 root root 10016 3月 9 2023 bcmserver*
-rwxr-xr-x 1 root root 118008 3月 9 2023 bluealsa*
-rwxr-xr-x 1 root root 43352 3月 9 2023 bluealsa-aplay*
-rwxr-xr-x 1 root root 96112 3月 9 2023 bluemoon*
-rwxr-xr-x 1 root root 272656 3月 9 2023 bluetoothctl*
-rwxr-xr-x 1 root root 87920 3月 9 2023 btattach*
lrwxrwxrwx 1 root root 17 3月 9 2023 bunzip2 -> ../../bin/busybox*
-rwxr-xr-x 1 root root 34656 3月 9 2023 bw_file_rd*
-rwxr-xr-x 1 root root 38752 3月 9 2023 bw_mem*
-rwxr-xr-x 1 root root 34656 3月 9 2023 bw_mmap_rd*
-rwxr-xr-x 1 root root 30568 3月 9 2023 bw_pipe*
-rwxr-xr-x 1 root root 34656 3月 9 2023 bw_tcp*
-rwxr-xr-x 1 root root 34664 3月 9 2023 bw_unix*
lrwxrwxrwx 1 root root 17 3月 9 2023 bzcat -> ../../bin/busybox*
-rwxr-xr-x 1 root root 18216 3月 9 2023 canbusload*
-rwxr-xr-x 1 root root 67704 3月 9 2023 canbusutil*
-rwxr-xr-x 1 root root 17832 3月 9 2023 can-calc-bit-timing*
-rwxr-xr-x 1 root root 26544 3月 9 2023 canconfig*
-rwxr-xr-x 1 root root 30704 3月 9 2023 candump*
-rwxr-xr-x 1 root root 14120 3月 9 2023 canfdtest*
-rwxr-xr-x 1 root root 26608 3月 9 2023 cangen*
-rwxr-xr-x 1 root root 22304 3月 9 2023 cangw*
-rwxr-xr-x 1 root root 22512 3月 9 2023 canlogserver*
-rwxr-xr-x 1 root root 26608 3月 9 2023 canplayer*
-rwxr-xr-x 1 root root 18408 3月 9 2023 cansend*
-rwxr-xr-x 1 root root 14448 3月 9 2023 cansequence*
-rwxr-xr-x 1 root root 22344 3月 9 2023 cansniffer*
-rwxr-xr-x 1 root root 200152 3月 9 2023 cec-compliance*
-rwxr-xr-x 1 root root 291992 3月 9 2023 cec-ctl*
-rwxr-xr-x 1 root root 153968 3月 9 2023 cec-follower*
-rwxr-xr-x 1 root root 174416 3月 9 2023 certutil*
lrwxrwxrwx 1 root root 9 3月 9 2023 chcon -> coreutils*
lrwxrwxrwx 1 root root 34 5月 3 2022 chromium -> /usr/lib/chromium/chromium-wrapper
lrwxrwxrwx 1 root root 17 3月 9 2023 chrt -> ../../bin/busybox*
lrwxrwxrwx 1 root root 17 3月 9 2023 chvt -> ../../bin/busybox*
-rwxr-xr-x 1 root root 181584 3月 9 2023 ciptool*
lrwxrwxrwx 1 root root 9 3月 9 2023 cksum -> coreutils*
lrwxrwxrwx 1 root root 17 3月 9 2023 clear -> ../../bin/busybox*
-rwsr-xr-x 1 root root 18288 3月 9 2023 clockdiff*
lrwxrwxrwx 1 root root 17 3月 9 2023 cmp -> ../../bin/busybox*
lrwxrwxrwx 1 root root 9 3月 9 2023 comm -> coreutils*
-rwxr-xr-x 1 root root 2679 7月 1 2021 compile-et.pl*
-rwxr-xr-x 1 root root 1122008 3月 9 2023 coreutils*
lrwxrwxrwx 1 root root 17 3月 9 2023 crc32 -> ../../bin/busybox*
lrwxrwxrwx 1 root root 17 3月 9 2023 crontab -> ../../bin/busybox*
lrwxrwxrwx 1 root root 9 3月 9 2023 csplit -> coreutils*
lrwxrwxrwx 1 root root 9 3月 9 2023 cut -> coreutils*
-rwxr-xr-x 1 root root 55152 3月 9 2023 cwebp*
-rwxr-xr-x 1 root root 14424 3月 9 2023 cx18-ctl*
-rwxr-xr-x 1 root root 34960 3月 9 2023 cyclicdeadline*
-rwxr-xr-x 1 root root 52376 3月 9 2023 cyclictest*
-rwxr-xr-x 1 root root 10016 3月 9 2023 dbus-cleanup-sockets*
-rwxr-xr-x 1 root root 203008 3月 9 2023 dbus-daemon*
-rwxr-xr-x 1 root root 18216 3月 9 2023 dbus-launch*
-rwxr-xr-x 1 root root 22312 3月 9 2023 dbus-monitor*
-rwxr-xr-x 1 root root 14112 3月 9 2023 dbus-run-session*
-rwxr-xr-x 1 root root 22304 3月 9 2023 dbus-send*
-rwxr-xr-x 1 root root 18288 3月 9 2023 dbus-test-tool*
-rwxr-xr-x 1 root root 14112 3月 9 2023 dbus-update-activation-environment*
-rwxr-xr-x 1 root root 10016 3月 9 2023 dbus-uuidgen*
lrwxrwxrwx 1 root root 17 3月 9 2023 dc -> ../../bin/busybox*
-rwxr-xr-x 1 root root 13286 3月 9 2023 ddcmon*
-rwxr-xr-x 1 root root 38768 3月 9 2023 deadline_test*
lrwxrwxrwx 1 root root 17 3月 9 2023 deallocvt -> ../../bin/busybox*
-rwxr-xr-x 1 root root 109436 3月 9 2023 decode-dimms*
-rwxr-xr-x 1 root root 5600 3月 9 2023 decode-edid*
-rwxr-xr-x 1 root root 22672 3月 9 2023 decode_tm6000*
-rwxr-xr-x 1 root root 6528 3月 9 2023 decode-vaio*
-rwxr-xr-x 1 root root 4895 3月 9 2023 determine_maximum_mpps.sh*
-rwxr-xr-x 1 root root 14112 3月 9 2023 dhrystone*
lrwxrwxrwx 1 root root 17 3月 9 2023 diff -> ../../bin/busybox*
lrwxrwxrwx 1 root root 9 3月 9 2023 dircolors -> coreutils*
lrwxrwxrwx 1 root root 9 3月 9 2023 dirname -> coreutils*
-rwxr-xr-x 1 root root 30552 3月 9 2023 disk*
lrwxrwxrwx 1 root root 17 3月 9 2023 dos2unix -> ../../bin/busybox*
-rwxr-xr-x 1 root root 18208 3月 9 2023 dotlockfile*
-rwxr-xr-x 1 root root 10016 3月 9 2023 drmdevice*
lrwxrwxrwx 1 root root 16 3月 9 2023 dropbearconvert -> ../sbin/dropbear*
lrwxrwxrwx 1 root root 16 3月 9 2023 dropbearkey -> ../sbin/dropbear*
lrwxrwxrwx 1 root root 9 3月 9 2023 du -> coreutils*
-rwxr-xr-x 1 root root 39480 3月 9 2023 dumpsys*
-rwxr-xr-x 1 root root 14264 3月 9 2023 dvb-fe-tool*
-rwxr-xr-x 1 root root 10112 3月 9 2023 dvb-format-convert*
-rwxr-xr-x 1 root root 31168 3月 9 2023 dvbv5-daemon*
-rwxr-xr-x 1 root root 18304 3月 9 2023 dvbv5-scan*
-rwxr-xr-x 1 root root 30592 3月 9 2023 dvbv5-zap*
-rwxr-xr-x 1 root root 30576 3月 9 2023 dwebp*
lrwxrwxrwx 1 root root 17 3月 9 2023 eject -> ../../bin/busybox*
-rwxr-xr-x 1 root root 30552 3月 9 2023 enough*
lrwxrwxrwx 1 root root 9 3月 9 2023 env -> coreutils*
-rwxr-xr-x 1 root root 2529 3月 9 2023 esdcompat*
-rwxr-xr-x 1 root root 51056 3月 9 2023 evtest*
lrwxrwxrwx 1 root root 9 3月 9 2023 expand -> coreutils*
lrwxrwxrwx 1 root root 9 3月 9 2023 expr -> coreutils*
-rwxr-xr-x 1 root root 44376 3月 9 2023 faad*
lrwxrwxrwx 1 root root 9 3月 9 2023 factor -> coreutils*
lrwxrwxrwx 1 root root 17 3月 9 2023 fallocate -> ../../bin/busybox*
-rwxr-xr-x 1 root root 14192 3月 9 2023 fc-cache*
-rwxr-xr-x 1 root root 14192 3月 9 2023 fc-cat*
-rwxr-xr-x 1 root root 10096 3月 9 2023 fc-conflist*
-rwxr-xr-x 1 root root 10096 3月 9 2023 fc-list*
-rwxr-xr-x 1 root root 14192 3月 9 2023 fc-match*
-rwxr-xr-x 1 root root 10096 3月 9 2023 fc-pattern*
-rwxr-xr-x 1 root root 10096 3月 9 2023 fc-query*
-rwxr-xr-x 1 root root 10096 3月 9 2023 fc-scan*
-rwxr-xr-x 1 root root 10096 3月 9 2023 fc-validate*
-rwxr-xr-x 1 root root 276584 3月 9 2023 ffmpeg*
lrwxrwxrwx 1 root root 17 3月 9 2023 find -> ../../bin/busybox*
-rwxr-xr-x 1 root root 181280 3月 9 2023 flac*
lrwxrwxrwx 1 root root 17 3月 9 2023 flock -> ../../bin/busybox*
-rwxr-xr-x 1 root root 636 3月 9 2023 fltest_extgpio.sh*
-rwxr-xr-x 1 root root 501 3月 9 2023 fltest_gpio.sh*
-rwxr-xr-x 1 root root 505 3月 9 2023 fltest_hostapd.sh*
-rwxr-xr-x 1 root root 10016 3月 9 2023 fltest_keytest*
-rwxr-xr-x 1 root root 477 3月 9 2023 fltest_memory_bandwidth.sh*
-rwxr-xr-x 1 root root 160 3月 9 2023 fltest_obexctl.sh*
-rwxr-xr-x 1 root root 38856 3月 9 2023 fltest_qt_4g*
-rwxr-xr-x 1 root root 30664 3月 9 2023 fltest_qt_backlight*
-rwxr-xr-x 1 root root 67528 3月 9 2023 fltest_qt_books*
-rw-r--r-- 1 root root 370 3月 9 2023 fltest_qt_books.pro
-rwxr-xr-x 1 root root 30664 3月 9 2023 fltest_qt_keypad*
-rwxr-xr-x 1 root root 67528 3月 9 2023 fltest_qt_musicplayer*
-rwxr-xr-x 1 root root 75720 3月 9 2023 fltest_qt_network*
-rwxr-xr-x 1 root root 63432 3月 9 2023 fltest_qt_opengl*
-rwxr-xr-x 1 root root 34760 3月 9 2023 fltest_qt_ping_test*
-rwxr-xr-x 1 root root 59336 3月 9 2023 fltest_qt_qplayer*
-rwxr-xr-x 1 root root 26568 3月 9 2023 fltest_qt_qtmultscreen*
-rwxr-xr-x 1 root root 34760 3月 9 2023 fltest_qt_rtc*
-rwxr-xr-x 1 root root 190408 3月 9 2023 fltest_qt_simplebrowser*
-rwxr-xr-x 1 root root 47048 3月 9 2023 fltest_qt_spitest*
-rwxr-xr-x 1 root root 153544 3月 9 2023 fltest_qt_terminal*
-rwxr-xr-x 1 root root 34760 3月 9 2023 fltest_qt_tftpUpdate*
-rwxr-xr-x 1 root root 43552 3月 9 2023 fltest_qt_ubootmenu*
-rwxr-xr-x 1 root root 30664 3月 9 2023 fltest_qt_watchdog*
-rwxr-xr-x 1 root root 38856 3月 9 2023 fltest_qt_wifi*
-rwxr-xr-x 1 root root 404 3月 9 2023 fltest_quectel.sh*
-rwxr-xr-x 1 root root 10112 3月 9 2023 fltest_spidev_test*
-rwxr-xr-x 1 root root 10112 3月 9 2023 fltest_uarttest*
-rwxr-xr-x 1 root root 10016 3月 9 2023 fltest_watchdog*
-rwxr-xr-x 1 root root 5920 3月 9 2023 fltest_watchdogrestart*
-rwxr-xr-x 1 root root 2930 3月 9 2023 fltest_wifi.sh*
-rwxr-xr-x 1 root root 27360 3月 9 2023 fluidsynth*
-rwxr-xr-x 1 root root 5920 3月 9 2023 flushdisk*
lrwxrwxrwx 1 root root 9 3月 9 2023 fmt -> coreutils*
lrwxrwxrwx 1 root root 9 3月 9 2023 fold -> coreutils*
lrwxrwxrwx 1 root root 17 3月 9 2023 free -> ../../bin/busybox*
-rwxr-xr-x 1 root root 19072 3月 9 2023 fribidi*
lrwxrwxrwx 1 root root 17 3月 9 2023 fuser -> ../../bin/busybox*
-rwxr-xr-x 1 root root 18288 3月 9 2023 gapplication*
-rwxr-xr-x 1 root root 334272 3月 9 2023 gatttool*
-rwxr-xr-x 1 root root 42864 3月 9 2023 gdbus*
-rwxr-xr-x 1 root root 10032 3月 9 2023 gdk-pixbuf-csource*
-rwxr-xr-x 1 root root 10016 3月 9 2023 gdk-pixbuf-pixdata*
-rwxr-xr-x 1 root root 14112 3月 9 2023 gdk-pixbuf-query-loaders*
-rwxr-xr-x 1 root root 30576 3月 9 2023 getconf*
-rwxr-xr-x 1 root root 83872 3月 9 2023 gio*
-rwxr-xr-x 1 root root 14112 3月 9 2023 gio-querymodules*
-rwxr-xr-x 1 root root 469520 3月 9 2023 glmark2-es2-drm*
-rwxr-xr-x 1 root root 473824 3月 9 2023 glmark2-es2-wayland*
-rwxr-xr-x 1 root root 14112 3月 9 2023 gresource*
lrwxrwxrwx 1 root root 9 3月 9 2023 groups -> coreutils*
-rwxr-xr-x 1 root root 26400 3月 9 2023 gsettings*
-rwxr-xr-x 1 root root 18288 3月 9 2023 gst-device-monitor-1.0*
-rwxr-xr-x 1 root root 30496 3月 9 2023 gst-discoverer-1.0*
-rwxr-xr-x 1 root root 55160 3月 9 2023 gst-inspect-1.0*
-rwxr-xr-x 1 root root 34608 3月 9 2023 gst-launch-1.0*
-rwxr-xr-x 1 root root 42864 3月 9 2023 gst-play-1.0*
-rwxr-xr-x 1 root root 30576 3月 9 2023 gst-stats-1.0*
-rwxr-xr-x 1 root root 26400 3月 9 2023 gst-transcoder-1.0*
-rwxr-xr-x 1 root root 14112 3月 9 2023 gst-typefind-1.0*
-rwxr-xr-x 1 root root 14456 3月 9 2023 hackbench*
-rwxr-xr-x 1 root root 34656 3月 9 2023 hb-ot-shape-closure*
-rwxr-xr-x 1 root root 42848 3月 9 2023 hb-shape*
-rwxr-xr-x 1 root root 34624 3月 9 2023 hb-subset*
-rwxr-xr-x 1 root root 59336 3月 9 2023 hb-view*
-rwxr-xr-x 1 root root 177848 3月 9 2023 hciattach*
-rwxr-xr-x 1 root root 172040 3月 9 2023 hciconfig*
-rwxr-xr-x 1 root root 328088 3月 9 2023 hcidump*
-rwxr-xr-x 1 root root 187760 3月 9 2023 hcitool*
-rwxr-xr-x 1 root root 10144 3月 9 2023 hcitop*
lrwxrwxrwx 1 root root 9 3月 9 2023 head -> coreutils*
-rwxr-xr-x 1 root root 5920 3月 9 2023 hello*
-rwxr-xr-x 1 root root 14192 3月 9 2023 hex2hcd*
lrwxrwxrwx 1 root root 17 3月 9 2023 hexdump -> ../../bin/busybox*
lrwxrwxrwx 1 root root 17 3月 9 2023 hexedit -> ../../bin/busybox*
-rwxr-xr-x 1 root root 75704 3月 9 2023 hostapd_cli*
lrwxrwxrwx 1 root root 9 3月 9 2023 hostid -> coreutils*
lrwxrwxrwx 1 root root 9 3月 9 2023 id -> coreutils*
-rwxr-xr-x 1 root root 38768 3月 9 2023 img2webp*
-rwxr-xr-x 1 root root 42864 3月 9 2023 input-event-daemon*
lrwxrwxrwx 1 root root 9 3月 9 2023 install -> coreutils*
-rwxr-xr-x 1 root root 14112 3月 9 2023 io*
lrwxrwxrwx 1 root root 17 3月 9 2023 ipcrm -> ../../bin/busybox*
lrwxrwxrwx 1 root root 17 3月 9 2023 ipcs -> ../../bin/busybox*
-rwxr-xr-x 1 root root 170080 3月 9 2023 iperf*
-rwxr-xr-x 1 root root 10016 3月 9 2023 iperf3*
lrwxrwxrwx 1 root root 30 3月 9 2023 iptables-xml -> /usr/sbin/xtables-legacy-multi*
-rwxr-xr-x 1 root root 59264 3月 9 2023 ir-ctl*
-rwxr-xr-x 1 root root 94880 3月 9 2023 ir-keytable*
-rwxr-xr-x 1 root root 18208 3月 9 2023 isotpdump*
-rwxr-xr-x 1 root root 14112 3月 9 2023 isotpperf*
-rwxr-xr-x 1 root root 10016 3月 9 2023 isotprecv*
-rwxr-xr-x 1 root root 14112 3月 9 2023 isotpsend*
-rwxr-xr-x 1 root root 14112 3月 9 2023 isotpserver*
-rwxr-xr-x 1 root root 14112 3月 9 2023 isotpsniffer*
-rwxr-xr-x 1 root root 14144 3月 9 2023 isotptun*
-rwxr-xr-x 1 root root 14496 3月 9 2023 ivtv-ctl*
-rwxr-xr-x 1 root root 18512 3月 9 2023 j1939acd*
-rwxr-xr-x 1 root root 18208 3月 9 2023 j1939cat*
-rwxr-xr-x 1 root root 14352 3月 9 2023 j1939spy*
-rwxr-xr-x 1 root root 14376 3月 9 2023 j1939sr*
-rwxr-xr-x 1 root root 18208 3月 9 2023 jpeg2yuv*
-rwxr-xr-x 1 root root 1974232 3月 9 2023 jsc*
lrwxrwxrwx 1 root root 17 3月 9 2023 killall -> ../../bin/busybox*
-rwxr-xr-x 1 root root 30576 3月 9 2023 kms-steal-crtc*
-rwxr-xr-x 1 root root 14192 3月 9 2023 kmstest*
-rwxr-xr-x 1 root root 18480 3月 9 2023 kms-universal-planes*
-rwxr-xr-x 1 root root 138864 3月 9 2023 l2ping*
-rwxr-xr-x 1 root root 155576 3月 9 2023 l2test*
lrwxrwxrwx 1 root root 17 3月 9 2023 last -> ../../bin/busybox*
-rwxr-xr-x 1 root root 34656 3月 9 2023 lat_connect*
-rwxr-xr-x 1 root root 34656 3月 9 2023 lat_ctx*
-rwxr-xr-x 1 root root 34656 3月 9 2023 lat_fcntl*
-rwxr-xr-x 1 root root 30560 3月 9 2023 lat_fifo*
-rwxr-xr-x 1 root root 34656 3月 9 2023 lat_fs*
-rwxr-xr-x 1 root root 34656 3月 9 2023 lat_http*
-rwxr-xr-x 1 root root 100344 3月 9 2023 lat_mem_rd*
-rwxr-xr-x 1 root root 34656 3月 9 2023 lat_mmap*
-rwxr-xr-x 1 root root 42848 3月 9 2023 lat_ops*
-rwxr-xr-x 1 root root 34656 3月 9 2023 lat_pagefault*
-rwxr-xr-x 1 root root 30560 3月 9 2023 lat_pipe*
-rwxr-xr-x 1 root root 34656 3月 9 2023 lat_proc*
-rwxr-xr-x 1 root root 34688 3月 9 2023 lat_rpc*
-rwxr-xr-x 1 root root 38752 3月 9 2023 lat_select*
-rwxr-xr-x 1 root root 30560 3月 9 2023 lat_sem*
-rwxr-xr-x 1 root root 34656 3月 9 2023 lat_sig*
-rwxr-xr-x 1 root root 34656 3月 9 2023 lat_syscall*
-rwxr-xr-x 1 root root 34656 3月 9 2023 lat_tcp*
-rwxr-xr-x 1 root root 38752 3月 9 2023 lat_udp*
-rwxr-xr-x 1 root root 30560 3月 9 2023 lat_unix*
-rwxr-xr-x 1 root root 34656 3月 9 2023 lat_unix_connect*
-rwxr-xr-x 1 root root 2594 3月 9 2023 lav2avi.sh*
-rwxr-xr-x 1 root root 17800 3月 9 2023 lav2mpeg*
-rwxr-xr-x 1 root root 14120 3月 9 2023 lav2wav*
-rwxr-xr-x 1 root root 18216 3月 9 2023 lav2yuv*
-rwxr-xr-x 1 root root 22312 3月 9 2023 lavaddwav*
-rwxr-xr-x 1 root root 10024 3月 9 2023 lavinfo*
-rwxr-xr-x 1 root root 14112 3月 9 2023 lavpipe*
-rwxr-xr-x 1 root root 26667 3月 9 2023 lavtc.sh*
-rwxr-xr-x 1 root root 14120 3月 9 2023 lavtrans*
-rwxr-xr-x 1 root root 5344 3月 9 2023 ldd*
lrwxrwxrwx 1 root root 17 3月 9 2023 less -> ../../bin/busybox*
-rwxr-xr-x 1 root root 14608 3月 9 2023 libevdev-tweak-device*
-rwxr-xr-x 1 root root 47272 3月 9 2023 libinput*
-rwxr-xr-x 1 root root 100336 3月 9 2023 line*
-rwxr-xr-x 1 root root 12049 3月 9 2023 lmbench*
-rwxr-xr-x 1 root root 39072 3月 9 2023 lmdd*
-rwxr-xr-x 1 root root 18224 3月 9 2023 lmhttp*
-rwxr-xr-x 1 root root 14352 3月 9 2023 lockfile-check*
-rwxr-xr-x 1 root root 14352 3月 9 2023 lockfile-create*
-rwxr-xr-x 1 root root 14352 3月 9 2023 lockfile-remove*
-rwxr-xr-x 1 root root 14352 3月 9 2023 lockfile-touch*
-rwxr-xr-x 1 root root 22504 3月 9 2023 log2asc*
-rwxr-xr-x 1 root root 18408 3月 9 2023 log2long*
lrwxrwxrwx 1 root root 17 3月 9 2023 logger -> ../../bin/busybox*
lrwxrwxrwx 1 root root 9 3月 9 2023 logname -> coreutils*
-rwxr-xr-x 1 root root 30552 3月 9 2023 loop_o*
lrwxrwxrwx 1 root root 2 3月 9 2023 lrz -> rz*
lrwxrwxrwx 1 root root 17 3月 9 2023 lsof -> ../../bin/busybox*
lrwxrwxrwx 1 root root 17 3月 9 2023 lspci -> ../../bin/busybox*
lrwxrwxrwx 1 root root 17 3月 9 2023 lsscsi -> ../../bin/busybox*
lrwxrwxrwx 1 root root 17 3月 9 2023 lsusb -> ../../bin/busybox*
lrwxrwxrwx 1 root root 2 3月 9 2023 lsz -> sz*
lrwxrwxrwx 1 root root 17 3月 9 2023 lzcat -> ../../bin/busybox*
lrwxrwxrwx 1 root root 17 3月 9 2023 lzma -> ../../bin/busybox*
lrwxrwxrwx 1 root root 17 3月 9 2023 lzopcat -> ../../bin/busybox*
-rwxr-xr-x 1 root root 14352 3月 9 2023 mail-lock*
-rwxr-xr-x 1 root root 14352 3月 9 2023 mail-touchlock*
-rwxr-xr-x 1 root root 14352 3月 9 2023 mail-unlock*
-rwxr-xr-x 1 root root 14200 3月 9 2023 matrix-browser*
-rwxr-xr-x 1 root root 10016 3月 9 2023 matteblend.flt*
-rwxr-xr-x 1 root root 30560 3月 9 2023 mcp251xfd-dump*
lrwxrwxrwx 1 root root 9 3月 9 2023 md5sum -> coreutils*
-rwxr-xr-x 1 root root 51664 3月 9 2023 media-ctl*
-rwxr-xr-x 1 root root 14280 3月 9 2023 memhog*
-rwxr-xr-x 1 root root 1870 3月 9 2023 memInfo.sh*
-rwxr-xr-x 1 root root 477 3月 9 2023 memory_bandwidth.sh*
-rwxr-xr-x 1 root root 30560 3月 9 2023 memsize*
-rwxr-xr-x 1 root root 22600 3月 9 2023 memtester*
lrwxrwxrwx 1 root root 17 3月 9 2023 mesg -> ../../bin/busybox*
-rwxr-xr-x 1 root root 102048 3月 9 2023 metaflac*
-rwxr-xr-x 1 root root 51184 3月 9 2023 mhz*
lrwxrwxrwx 1 root root 17 3月 9 2023 microcom -> ../../bin/busybox*
-rwxr-xr-x 1 root root 10248 3月 9 2023 migratepages*
-rwxr-xr-x 1 root root 14288 3月 9 2023 migspeed*
-rwxr-xr-x 1 root root 5920 3月 9 2023 mjpeg_simd_helper*
lrwxrwxrwx 1 root root 9 3月 9 2023 mkfifo -> coreutils*
lrwxrwxrwx 1 root root 17 3月 9 2023 mkpasswd -> ../../bin/busybox*
-rwxr-xr-x 1 root root 18288 3月 9 2023 modeprint*
-rwxr-xr-x 1 root root 63368 3月 9 2023 modetest*
-rwxr-xr-x 1 root root 14112 3月 9 2023 mouse-dpi-tool*
-rwxr-xr-x 1 root root 117856 3月 9 2023 mp2enc*
-rwxr-xr-x 1 root root 40392 3月 9 2023 mpeg2enc*
-rwxr-xr-x 1 root root 1638 3月 9 2023 mpegtranscode*
-rwxr-xr-x 1 root root 115216 3月 9 2023 mpg123*
-rwxr-xr-x 1 root root 22688 3月 9 2023 mpg123-id3dump*
-rwxr-xr-x 1 root root 14384 3月 9 2023 mpg123-strip*
-rwxr-xr-x 1 root root 52248 3月 9 2023 mpi_dec_mt_test*
-rwxr-xr-x 1 root root 52248 3月 9 2023 mpi_dec_multi_test*
-rwxr-xr-x 1 root root 52248 3月 9 2023 mpi_dec_test*
-rwxr-xr-x 1 root root 80920 3月 9 2023 mpi_enc_mt_test*
-rwxr-xr-x 1 root root 80920 3月 9 2023 mpi_enc_test*
-rwxr-xr-x 1 root root 77472 3月 9 2023 mpi_rc2_test*
-rwxr-xr-x 1 root root 27240 3月 9 2023 mplex*
-rwxr-xr-x 1 root root 14192 3月 9 2023 mpp_info_test*
-rwxr-xr-x 1 root root 92216 3月 9 2023 mpris-proxy*
-rwxr-xr-x 1 root root 5920 3月 9 2023 msleep*
-rwxr-xr-x 1 root root 10016 3月 9 2023 mtdev-test*
-rwxr-xr-x 1 root root 10016 3月 9 2023 multiblend.flt*
-rwxr-xr-x 1 root root 1865 3月 9 2023 networkSettings.sh*
lrwxrwxrwx 1 root root 9 3月 9 2023 nl -> coreutils*
lrwxrwxrwx 1 root root 9 3月 9 2023 nohup -> coreutils*
lrwxrwxrwx 1 root root 9 3月 9 2023 nproc -> coreutils*
lrwxrwxrwx 1 root root 17 3月 9 2023 nslookup -> ../../bin/busybox*
-rwxr-xr-x 1 root root 31408 3月 9 2023 numactl*
-rwxr-xr-x 1 root root 30656 3月 9 2023 numademo*
-rwxr-xr-x 1 root root 31672 3月 9 2023 numastat*
lrwxrwxrwx 1 root root 9 3月 9 2023 numfmt -> coreutils*
-rwxr-xr-x 1 root root 178104 3月 9 2023 obexctl*
-rwxr-xr-x 1 root root 519416 3月 9 2023 obexd*
lrwxrwxrwx 1 root root 9 3月 9 2023 od -> coreutils*
-rwxr-xr-x 1 root root 1506 3月 9 2023 on_ac_power*
-rwxr-xr-x 1 root root 1369 3月 9 2023 onig-config*
lrwxrwxrwx 1 root root 17 3月 9 2023 openvt -> ../../bin/busybox*
-rwxr-xr-x 1 root root 5968 3月 9 2023 oslat*
-rwxr-xr-x 1 root root 36560 3月 9 2023 out123*
-rwxr-xr-x 1 root root 38800 3月 9 2023 pacat*
-rwxr-xr-x 1 root root 14192 3月 9 2023 pacmd*
-rwxr-xr-x 1 root root 55168 3月 9 2023 pactl*
-rwxr-xr-x 1 root root 2225 3月 9 2023 padsp*
-rwxr-xr-x 1 root root 2039 3月 9 2023 pa-info*
lrwxrwxrwx 1 root root 5 3月 9 2023 pamon -> pacat*
-rwxr-xr-x 1 root root 14112 3月 9 2023 pango-list*
-rwxr-xr-x 1 root root 14112 3月 9 2023 pango-segmentation*
-rwxr-xr-x 1 root root 47112 3月 9 2023 pango-view*
lrwxrwxrwx 1 root root 5 3月 9 2023 paplay -> pacat*
lrwxrwxrwx 1 root root 5 3月 9 2023 parec -> pacat*
lrwxrwxrwx 1 root root 5 3月 9 2023 parecord -> pacat*
-rwxr-xr-x 1 root root 100336 3月 9 2023 par_mem*
-rwxr-xr-x 1 root root 270176 3月 9 2023 par_ops*
lrwxrwxrwx 1 root root 17 3月 9 2023 passwd -> ../../bin/busybox*
lrwxrwxrwx 1 root root 9 3月 9 2023 paste -> coreutils*
-rwxr-xr-x 1 root root 14200 3月 9 2023 pasuspender*
lrwxrwxrwx 1 root root 17 3月 9 2023 patch -> ../../bin/busybox*
lrwxrwxrwx 1 root root 9 3月 9 2023 pathchk -> coreutils*
-rwxr-xr-x 1 root root 44960 3月 9 2023 pcre2grep*
-rwxr-xr-x 1 root root 115632 3月 9 2023 pcre2test*
-rwxr-xr-x 1 root root 36568 3月 9 2023 pcregrep*
-rwxr-xr-x 1 root root 63344 3月 9 2023 pcretest*
-rwxr-xr-x 1 root root 14112 3月 9 2023 pgmtoy4m*
-rwxr-xr-x 1 root root 13023584 3月 9 2023 php*
-rwxr-xr-x 1 root root 12904480 3月 9 2023 php-cgi*
lrwxrwxrwx 1 root root 9 3月 9 2023 pinky -> coreutils*
-rwxr-xr-x 1 root root 26552 3月 9 2023 pip_stress*
-rwxr-xr-x 1 root root 43368 3月 9 2023 pi_stress*
-rwxr-xr-x 1 root root 44016 3月 9 2023 pkgdata*
lrwxrwxrwx 1 root root 17 3月 9 2023 pmap -> ../../bin/busybox*
-rwxr-xr-x 1 root root 981 3月 9 2023 pm-is-supported*
-rwxr-xr-x 1 root root 31088 3月 9 2023 pmqtest*
-rwxr-xr-x 1 root root 22304 3月 9 2023 png2yuv*
-rwxr-xr-x 1 root root 22448 3月 9 2023 pnmtoy4m*
-rwxr-xr-x 1 root root 22304 3月 9 2023 ppmtoy4m*
lrwxrwxrwx 1 root root 9 3月 9 2023 pr -> coreutils*
-rwxr-xr-x 1 root root 4907 7月 1 2021 prerr.properties*
lrwxrwxrwx 1 root root 9 3月 9 2023 printf -> coreutils*
-rwxr-xr-x 1 root root 22392 3月 9 2023 procrank*
-rwxr-xr-x 1 root root 14192 3月 9 2023 proptest*
-rwxr-xr-x 1 root root 31008 3月 9 2023 ptsematest*
lrwxrwxrwx 1 root root 9 3月 9 2023 ptx -> coreutils*
-rwxr-xr-x 1 root root 79792 3月 9 2023 pulseaudio*
-rwxr-xr-x 1 root root 133248 3月 9 2023 qml*
-rwxr-xr-x 1 root root 133328 3月 9 2023 qmlpreview*
-rwxr-xr-x 1 root root 67720 3月 9 2023 qmlscene*
-rwxr-xr-x 1 root root 67632 3月 9 2023 qmltestrunner*
-rwxr-xr-x 1 root root 67632 3月 9 2023 QtWebProcess*
-rwxr-xr-x 1 root root 175536 3月 9 2023 quectelCM*
-rwxr-xr-x 1 root root 14368 3月 9 2023 queuelat*
-rwxr-xr-x 1 root root 436176 3月 9 2023 qv4l2*
lrwxrwxrwx 1 root root 2 3月 9 2023 rb -> rz*
-rwxr-xr-x 1 root root 185544 3月 9 2023 rctest*
-rwxr-xr-x 1 root root 35400 3月 9 2023 rds-ctl*
lrwxrwxrwx 1 root root 9 3月 9 2023 readlink -> coreutils*
lrwxrwxrwx 1 root root 9 3月 9 2023 realpath -> coreutils*
lrwxrwxrwx 1 root root 17 3月 9 2023 renice -> ../../bin/busybox*
lrwxrwxrwx 1 root root 17 3月 9 2023 reset -> ../../bin/busybox*
lrwxrwxrwx 1 root root 17 3月 9 2023 resize -> ../../bin/busybox*
-rwxr-xr-x 1 root root 252 3月 9 2023 restart_rknn.sh*
-rwxr-xr-x 1 root root 147752 3月 9 2023 rfcomm*
-rwxr-xr-x 1 root root 14216 3月 9 2023 rkaiq_3A_server*
-rwxr-xr-x 1 root root 417188 3月 9 2023 rk_airkiss*
-rwxr-xr-x 1 root root 195264 3月 9 2023 rkisp_demo*
-rwxr-xr-x 1 root root 18288 3月 9 2023 rk_mpi_adec_test*
-rwxr-xr-x 1 root root 18288 3月 9 2023 rk_mpi_aenc_test*
-rwxr-xr-x 1 root root 18288 3月 9 2023 rk_mpi_ai_test*
-rwxr-xr-x 1 root root 26480 3月 9 2023 rk_mpi_ao_test*
-rwxr-xr-x 1 root root 14360 3月 9 2023 rk_mpi_avio_test*
-rwxr-xr-x 1 root root 47144 3月 9 2023 rk_mpi_avs_test*
-rwxr-xr-x 1 root root 30592 3月 9 2023 rk_mpi_gdc_test*
-rwxr-xr-x 1 root root 14280 3月 9 2023 rk_mpi_mb_test*
-rwxr-xr-x 1 root root 14360 3月 9 2023 rk_mpi_mmz_test*
-rwxr-xr-x 1 root root 55512 3月 9 2023 rk_mpi_rgn_test*
-rwxr-xr-x 1 root root 18288 3月 9 2023 rk_mpi_sys_test*
-rwxr-xr-x 1 root root 43048 3月 9 2023 rk_mpi_tde_test*
-rwxr-xr-x 1 root root 22384 3月 9 2023 rk_mpi_vdec_test*
-rwxr-xr-x 1 root root 43048 3月 9 2023 rk_mpi_venc_test*
-rwxr-xr-x 1 root root 47144 3月 9 2023 rk_mpi_vgs_test*
-rwxr-xr-x 1 root root 39024 3月 9 2023 rk_mpi_vi_test*
-rwxr-xr-x 1 root root 47176 3月 9 2023 rk_mpi_vo_test*
-rwxr-xr-x 1 root root 43048 3月 9 2023 rk_mpi_vpss_test*
-rwxr-xr-x 1 root root 385448 3月 9 2023 rknn_server*
drwxr-xr-x 8 root root 4096 3月 9 2023 rknpu2_examples/
-rwxr-xr-x 1 root root 31008 3月 9 2023 rt-migrate-test*
lrwxrwxrwx 1 root root 9 3月 9 2023 runcon -> coreutils*
-rwxr-xr-x 1 root root 87 3月 9 2023 runMatrixShutdown.sh*
-rwxr-xr-x 1 root root 147 3月 9 2023 runRefreshMatrix.sh*
-rwxr-xr-x 1 root root 83 3月 9 2023 runSystemShutdown.sh*
lrwxrwxrwx 1 root root 2 3月 9 2023 rx -> rz*
-rwxr-xr-x 1 root root 57800 3月 9 2023 rz*
lrwxrwxrwx 1 root root 2 3月 9 2023 sb -> sz*
-rwxr-xr-x 1 root root 34784 3月 9 2023 sbcdec*
-rwxr-xr-x 1 root root 34912 3月 9 2023 sbcenc*
-rwxr-xr-x 1 root root 10016 3月 9 2023 sbcinfo*
-rwxr-xr-x 1 root root 174328 3月 9 2023 scp*
-rwxr-xr-x 1 root root 67632 3月 9 2023 sdpscanner*
-rwxr-xr-x 1 root root 242312 3月 9 2023 sdptool*
lrwxrwxrwx 1 root root 9 3月 9 2023 seq -> coreutils*
-rwxr-xr-x 1 root root 129 3月 9 2023 setclockspeed.sh*
lrwxrwxrwx 1 root root 17 3月 9 2023 setfattr -> ../../bin/busybox*
-rwxr-xr-x 1 root root 75 3月 9 2023 setgovernor.sh*
lrwxrwxrwx 1 root root 17 3月 9 2023 setkeycodes -> ../../bin/busybox*
lrwxrwxrwx 1 root root 17 3月 9 2023 setsid -> ../../bin/busybox*
-rwxr-xr-x 1 root root 174304 3月 9 2023 sftp*
lrwxrwxrwx 1 root root 9 3月 9 2023 sha1sum -> coreutils*
lrwxrwxrwx 1 root root 9 3月 9 2023 sha224sum -> coreutils*
lrwxrwxrwx 1 root root 9 3月 9 2023 sha256sum -> coreutils*
lrwxrwxrwx 1 root root 9 3月 9 2023 sha384sum -> coreutils*
lrwxrwxrwx 1 root root 17 3月 9 2023 sha3sum -> ../../bin/busybox*
lrwxrwxrwx 1 root root 9 3月 9 2023 sha512sum -> coreutils*
lrwxrwxrwx 1 root root 9 3月 9 2023 shred -> coreutils*
lrwxrwxrwx 1 root root 9 3月 9 2023 shuf -> coreutils*
-rwxr-xr-x 1 root root 31000 3月 9 2023 signaltest*
-rwxr-xr-x 1 root root 31016 3月 9 2023 sigwaittest*
-rwxr-xr-x 1 root root 10016 3月 9 2023 slcan_attach*
-rwxr-xr-x 1 root root 14120 3月 9 2023 slcand*
-rwxr-xr-x 1 root root 14112 3月 9 2023 slcanpty*
lrwxrwxrwx 1 root root 9 3月 9 2023 sort -> coreutils*
-rwxr-xr-x 1 root root 22816 3月 9 2023 speexdec*
-rwxr-xr-x 1 root root 27328 3月 9 2023 speexenc*
lrwxrwxrwx 1 root root 9 3月 9 2023 split -> coreutils*
-rwxr-xr-x 1 root root 237040 3月 9 2023 sqlite3*
-rwxr-xr-x 1 root root 26760 3月 9 2023 ssdd*
-rwxr-xr-x 1 root root 744024 3月 9 2023 ssh*
-rwxr-xr-x 1 root root 346120 3月 9 2023 ssh-add*
-rwxr-xr-x 1 root root 329712 3月 9 2023 ssh-agent*
-rwxr-xr-x 1 root root 12676 3月 9 2023 ssh-copy-id*
-rwxr-xr-x 1 root root 452776 3月 9 2023 ssh-keygen*
-rwxr-xr-x 1 root root 428192 3月 9 2023 ssh-keyscan*
-rwxr-xr-x 1 root root 71 3月 9 2023 start_rknn.sh*
lrwxrwxrwx 1 root root 9 3月 9 2023 stat -> coreutils*
lrwxrwxrwx 1 root root 9 3月 9 2023 stdbuf -> coreutils*
-rwxr-xr-x 1 root root 1333456 3月 9 2023 strace*
-rwxr-xr-x 1 root root 1821 3月 9 2023 strace-log-merge*
-rwxr-xr-x 1 root root 34656 3月 9 2023 stream*
-rwxr-xr-x 1 root root 22320 3月 9 2023 stress*
-rwxr-xr-x 1 root root 285760 3月 9 2023 stressapptest*
-rwxr-xr-x 1 root root 1525776 3月 9 2023 stress-ng*
lrwxrwxrwx 1 root root 17 3月 9 2023 strings -> ../../bin/busybox*
lrwxrwxrwx 1 root root 9 3月 9 2023 sum -> coreutils*
lrwxrwxrwx 1 root root 17 3月 9 2023 svc -> ../../bin/busybox*
lrwxrwxrwx 1 root root 17 3月 9 2023 svok -> ../../bin/busybox*
-rwxr-xr-x 1 root root 31048 3月 9 2023 svsematest*
lrwxrwxrwx 1 root root 2 3月 9 2023 sx -> sz*
-rwxr-xr-x 1 root root 2282 3月 9 2023 sysSettings.sh*
-rwxr-xr-x 1 root root 66016 3月 9 2023 sz*
lrwxrwxrwx 1 root root 9 3月 9 2023 tac -> coreutils*
lrwxrwxrwx 1 root root 9 3月 9 2023 tail -> coreutils*
-rwxr-xr-x 1 root root 1836 3月 9 2023 taskInfo.sh*
-rwxr-xr-x 1 root root 27256 3月 9 2023 taskset*
lrwxrwxrwx 1 root root 9 3月 9 2023 tee -> coreutils*
lrwxrwxrwx 1 root root 17 3月 9 2023 telnet -> ../../bin/busybox*
lrwxrwxrwx 1 root root 9 3月 9 2023 test -> coreutils*
-rwxr-xr-x 1 root root 14112 3月 9 2023 testj1939*
lrwxrwxrwx 1 root root 17 3月 9 2023 tftp -> ../../bin/busybox*
lrwxrwxrwx 1 root root 17 3月 9 2023 time -> ../../bin/busybox*
lrwxrwxrwx 1 root root 9 3月 9 2023 timeout -> coreutils*
-rwxr-xr-x 1 root root 30552 3月 9 2023 timing_o*
-rwxr-xr-x 1 root root 100352 3月 9 2023 tlb*
lrwxrwxrwx 1 root root 17 3月 9 2023 top -> ../../bin/busybox*
-rwxr-xr-x 1 root root 14112 3月 9 2023 touchpad-edge-detector*
lrwxrwxrwx 1 root root 9 3月 9 2023 tr -> coreutils*
-rwxr-xr-x 1 root root 18208 3月 9 2023 tracepath*
lrwxrwxrwx 1 root root 17 3月 9 2023 traceroute -> ../../bin/busybox*
-rwsr-xr-x 1 root root 22304 3月 9 2023 traceroute6*
-rwxr-xr-x 1 root root 10016 3月 9 2023 transist.flt*
lrwxrwxrwx 1 root root 9 3月 9 2023 truncate -> coreutils*
lrwxrwxrwx 1 root root 17 3月 9 2023 ts -> ../../bin/busybox*
lrwxrwxrwx 1 root root 9 3月 9 2023 tsort -> coreutils*
lrwxrwxrwx 1 root root 9 3月 9 2023 tty -> coreutils*
-rwxr-xr-x 1 root root 313432 3月 9 2023 udevadm*
lrwxrwxrwx 1 root root 9 3月 9 2023 unexpand -> coreutils*
lrwxrwxrwx 1 root root 9 3月 9 2023 uniq -> coreutils*
lrwxrwxrwx 1 root root 17 3月 9 2023 unix2dos -> ../../bin/busybox*
lrwxrwxrwx 1 root root 9 3月 9 2023 unlink -> coreutils*
lrwxrwxrwx 1 root root 17 3月 9 2023 unlzma -> ../../bin/busybox*
lrwxrwxrwx 1 root root 17 3月 9 2023 unlzop -> ../../bin/busybox*
lrwxrwxrwx 1 root root 17 3月 9 2023 unxz -> ../../bin/busybox*
lrwxrwxrwx 1 root root 17 3月 9 2023 unzip -> ../../bin/busybox*
-rwxr-xr-x 1 root root 14192 3月 9 2023 update*
-rwxr-xr-x 1 root root 14112 3月 9 2023 upower*
lrwxrwxrwx 1 root root 9 3月 9 2023 uptime -> coreutils*
-rwxr-xr-x 1 root root 1682 3月 9 2023 usbdevice*
lrwxrwxrwx 1 root root 9 3月 9 2023 users -> coreutils*
lrwxrwxrwx 1 root root 17 3月 9 2023 uudecode -> ../../bin/busybox*
lrwxrwxrwx 1 root root 17 3月 9 2023 uuencode -> ../../bin/busybox*
-rwxr-xr-x 1 root root 392280 3月 9 2023 v4l2-compliance*
-rwxr-xr-x 1 root root 354600 3月 9 2023 v4l2-ctl*
-rwxr-xr-x 1 root root 18360 3月 9 2023 v4l2-sysfs-path*
-rwxr-xr-x 1 root root 14200 3月 9 2023 vbltest*
-rwxr-xr-x 1 root root 14192 3月 9 2023 vendor_storage*
lrwxrwxrwx 1 root root 17 3月 9 2023 vlock -> ../../bin/busybox*
-rwxr-xr-x 1 root root 14304 3月 9 2023 vpu_api_test*
lrwxrwxrwx 1 root root 17 3月 9 2023 w -> ../../bin/busybox*
-rwxr-xr-x 1 root root 38840 3月 9 2023 wayland-scanner*
lrwxrwxrwx 1 root root 9 3月 9 2023 wc -> coreutils*
-rwxr-xr-x 1 root root 14112 3月 9 2023 wcap-decode*
-rwxr-xr-x 1 root root 22384 3月 9 2023 webpinfo*
-rwxr-xr-x 1 root root 30576 3月 9 2023 webpmux*
-rwxr-xr-x 1 root root 5920 3月 9 2023 weston*
-rwxr-xr-x 1 root root 117520 3月 9 2023 weston-calibrator*
-rwxr-xr-x 1 root root 14232 3月 9 2023 weston-debug*
-rwxr-xr-x 1 root root 39192 3月 9 2023 weston-info*
-rwxr-xr-x 1 root root 18304 3月 9 2023 weston-screenshooter*
-rwxr-xr-x 1 root root 30912 3月 9 2023 weston-simple-damage*
-rwxr-xr-x 1 root root 43600 3月 9 2023 weston-simple-dmabuf-egl*
-rwxr-xr-x 1 root root 31216 3月 9 2023 weston-simple-dmabuf-v4l*
-rwxr-xr-x 1 root root 30824 3月 9 2023 weston-simple-egl*
-rwxr-xr-x 1 root root 26808 3月 9 2023 weston-simple-shm*
-rwxr-xr-x 1 root root 22600 3月 9 2023 weston-simple-touch*
-rwxr-xr-x 1 root root 143064 3月 9 2023 weston-terminal*
-rwxr-xr-x 1 root root 125776 3月 9 2023 weston-touch-calibrator*
lrwxrwxrwx 1 root root 17 3月 9 2023 wget -> ../../bin/busybox*
-rwxr-xr-x 1 root root 10016 3月 9 2023 whetstone*
lrwxrwxrwx 1 root root 17 3月 9 2023 which -> ../../bin/busybox*
lrwxrwxrwx 1 root root 9 3月 9 2023 who -> coreutils*
lrwxrwxrwx 1 root root 9 3月 9 2023 whoami -> coreutils*
lrwxrwxrwx 1 root root 17 3月 9 2023 xargs -> ../../bin/busybox*
-rwxr-xr-x 1 root root 14208 3月 9 2023 xkbcli*
-rwxr-xr-x 1 root root 18208 3月 9 2023 xmlcatalog*
-rwxr-xr-x 1 root root 64056 3月 9 2023 xmllint*
-rwxr-xr-x 1 root root 30496 3月 9 2023 xmlwf*
-rwxr-xr-x 1 root root 22312 3月 9 2023 xsltproc*
lrwxrwxrwx 1 root root 17 3月 9 2023 xxd -> ../../bin/busybox*
lrwxrwxrwx 1 root root 17 3月 9 2023 xz -> ../../bin/busybox*
lrwxrwxrwx 1 root root 17 3月 9 2023 xzcat -> ../../bin/busybox*
-rwxr-xr-x 1 root root 14112 3月 9 2023 y4mblack*
-rwxr-xr-x 1 root root 18320 3月 9 2023 y4mcolorbars*
-rwxr-xr-x 1 root root 100512 3月 9 2023 y4mdenoise*
-rwxr-xr-x 1 root root 10016 3月 9 2023 y4mhist*
-rwxr-xr-x 1 root root 14112 3月 9 2023 y4minterlace*
-rwxr-xr-x 1 root root 10016 3月 9 2023 y4mivtc*
-rwxr-xr-x 1 root root 92104 3月 9 2023 y4mscaler*
-rwxr-xr-x 1 root root 14120 3月 9 2023 y4mshift*
-rwxr-xr-x 1 root root 14112 3月 9 2023 y4mspatialfilter*
-rwxr-xr-x 1 root root 26400 3月 9 2023 y4mstabilizer*
-rwxr-xr-x 1 root root 18208 3月 9 2023 y4mtopnm*
-rwxr-xr-x 1 root root 18208 3月 9 2023 y4mtoppm*
-rwxr-xr-x 1 root root 10016 3月 9 2023 y4mtoyuv*
-rwxr-xr-x 1 root root 14160 3月 9 2023 y4munsharp*
lrwxrwxrwx 1 root root 9 3月 9 2023 yes -> coreutils*
-rwxr-xr-x 1 root root 10016 3月 9 2023 ypipe*
-rwxr-xr-x 1 root root 18232 3月 9 2023 yuv2lav*
-rwxr-xr-x 1 root root 14112 3月 9 2023 yuv4mpeg*
-rwxr-xr-x 1 root root 30504 3月 9 2023 yuvcorrect*
-rwxr-xr-x 1 root root 38696 3月 9 2023 yuvcorrect_tune*
-rwxr-xr-x 1 root root 10104 3月 9 2023 yuvdeinterlace*
-rwxr-xr-x 1 root root 26408 3月 9 2023 yuvdenoise*
-rwxr-xr-x 1 root root 14112 3月 9 2023 yuvfps*
-rwxr-xr-x 1 root root 18216 3月 9 2023 yuvinactive*
-rwxr-xr-x 1 root root 26480 3月 9 2023 yuvkineco*
-rwxr-xr-x 1 root root 18256 3月 9 2023 yuvmedianfilter*
-rwxr-xr-x 1 root root 46912 3月 9 2023 yuvscaler*
-rwxr-xr-x 1 root root 18288 3月 9 2023 yuvycsnoise*
-rwxr-xr-x 1 root root 10016 3月 9 2023 yuyvtoy4m*
rootroot@rootroot-X99-Turbo:~/version/OK3588_Linux_fs/linuxfs/R4/usr/bin$
rootroot@rootroot-X99-Turbo:~/version/OK3588_Linux_fs/linuxfs/R4/usr/bin$ ll adbd
-rwxr-xr-x 1 root root 133832 3月 9 2023 adbd*
rootroot@rootroot-X99-Turbo:~/version/OK3588_Linux_fs/linuxfs/R4/usr/bin$ sudo chmod 777 adbd
rootroot@rootroot-X99-Turbo:~/version/OK3588_Linux_fs/linuxfs/R4/usr/bin$ ll adbd
-rwxrwxrwx 1 root root 133832 3月 9 2023 adbd*
rootroot@rootroot-X99-Turbo:~/version/OK3588_Linux_fs/linuxfs/R4/usr/bin$ sudo mv adbd adbd2
rootroot@rootroot-X99-Turbo:~/version/OK3588_Linux_fs/linuxfs/R4/usr/bin$ ll
total 55184
drwxr-xr-x 3 root root 20480 2月 27 16:06 ./
drwxr-xr-x 11 root root 4096 9月 14 2023 ../
lrwxrwxrwx 1 root root 4 3月 9 2023 '[' -> test*
lrwxrwxrwx 1 root root 17 3月 9 2023 '[[' -> ../../bin/busybox*
-rwxr-xr-x 1 root root 18416 3月 9 2023 a2dpconf*
-rwxrwxrwx 1 root root 133832 3月 9 2023 adbd2*
-rwxr-xr-x 1 root root 73768 3月 9 2023 alsamixer*
-rwxr-xr-x 1 root root 51120 3月 9 2023 amixer*
-rwxr-xr-x 1 root root 27332 3月 9 2023 anytovcd.sh*
-rwxr-xr-x 1 root root 67488 3月 9 2023 aplay*
lrwxrwxrwx 1 root root 17 3月 9 2023 ar -> ../../bin/busybox*
-rwxr-xr-x 1 root root 67488 3月 9 2023 arecord*
-rwxr-xr-x 1 root root 22504 3月 9 2023 asc2log*
lrwxrwxrwx 1 root root 17 3月 9 2023 ascii -> ../../bin/busybox*
-rwxr-xr-x 1 root root 30656 3月 9 2023 aserver*
lrwxrwxrwx 1 root root 17 3月 9 2023 awk -> ../../bin/busybox*
lrwxrwxrwx 1 root root 9 3月 9 2023 b2sum -> coreutils*
lrwxrwxrwx 1 root root 9 3月 9 2023 base32 -> coreutils*
lrwxrwxrwx 1 root root 9 3月 9 2023 basename -> coreutils*
lrwxrwxrwx 1 root root 9 3月 9 2023 basenc -> coreutils*
lrwxrwxrwx 1 root root 17 3月 9 2023 bc -> ../../bin/busybox*
-rwxr-xr-x 1 root root 10016 3月 9 2023 bcmserver*
-rwxr-xr-x 1 root root 118008 3月 9 2023 bluealsa*
-rwxr-xr-x 1 root root 43352 3月 9 2023 bluealsa-aplay*
-rwxr-xr-x 1 root root 96112 3月 9 2023 bluemoon*
-rwxr-xr-x 1 root root 272656 3月 9 2023 bluetoothctl*
-rwxr-xr-x 1 root root 87920 3月 9 2023 btattach*
lrwxrwxrwx 1 root root 17 3月 9 2023 bunzip2 -> ../../bin/busybox*
-rwxr-xr-x 1 root root 34656 3月 9 2023 bw_file_rd*
-rwxr-xr-x 1 root root 38752 3月 9 2023 bw_mem*
-rwxr-xr-x 1 root root 34656 3月 9 2023 bw_mmap_rd*
-rwxr-xr-x 1 root root 30568 3月 9 2023 bw_pipe*
-rwxr-xr-x 1 root root 34656 3月 9 2023 bw_tcp*
-rwxr-xr-x 1 root root 34664 3月 9 2023 bw_unix*
lrwxrwxrwx 1 root root 17 3月 9 2023 bzcat -> ../../bin/busybox*
-rwxr-xr-x 1 root root 18216 3月 9 2023 canbusload*
-rwxr-xr-x 1 root root 67704 3月 9 2023 canbusutil*
-rwxr-xr-x 1 root root 17832 3月 9 2023 can-calc-bit-timing*
-rwxr-xr-x 1 root root 26544 3月 9 2023 canconfig*
-rwxr-xr-x 1 root root 30704 3月 9 2023 candump*
-rwxr-xr-x 1 root root 14120 3月 9 2023 canfdtest*
-rwxr-xr-x 1 root root 26608 3月 9 2023 cangen*
-rwxr-xr-x 1 root root 22304 3月 9 2023 cangw*
-rwxr-xr-x 1 root root 22512 3月 9 2023 canlogserver*
-rwxr-xr-x 1 root root 26608 3月 9 2023 canplayer*
-rwxr-xr-x 1 root root 18408 3月 9 2023 cansend*
-rwxr-xr-x 1 root root 14448 3月 9 2023 cansequence*
-rwxr-xr-x 1 root root 22344 3月 9 2023 cansniffer*
-rwxr-xr-x 1 root root 200152 3月 9 2023 cec-compliance*
-rwxr-xr-x 1 root root 291992 3月 9 2023 cec-ctl*
-rwxr-xr-x 1 root root 153968 3月 9 2023 cec-follower*
-rwxr-xr-x 1 root root 174416 3月 9 2023 certutil*
lrwxrwxrwx 1 root root 9 3月 9 2023 chcon -> coreutils*
lrwxrwxrwx 1 root root 34 5月 3 2022 chromium -> /usr/lib/chromium/chromium-wrapper
lrwxrwxrwx 1 root root 17 3月 9 2023 chrt -> ../../bin/busybox*
lrwxrwxrwx 1 root root 17 3月 9 2023 chvt -> ../../bin/busybox*
-rwxr-xr-x 1 root root 181584 3月 9 2023 ciptool*
lrwxrwxrwx 1 root root 9 3月 9 2023 cksum -> coreutils*
lrwxrwxrwx 1 root root 17 3月 9 2023 clear -> ../../bin/busybox*
-rwsr-xr-x 1 root root 18288 3月 9 2023 clockdiff*
lrwxrwxrwx 1 root root 17 3月 9 2023 cmp -> ../../bin/busybox*
lrwxrwxrwx 1 root root 9 3月 9 2023 comm -> coreutils*
-rwxr-xr-x 1 root root 2679 7月 1 2021 compile-et.pl*
-rwxr-xr-x 1 root root 1122008 3月 9 2023 coreutils*
lrwxrwxrwx 1 root root 17 3月 9 2023 crc32 -> ../../bin/busybox*
lrwxrwxrwx 1 root root 17 3月 9 2023 crontab -> ../../bin/busybox*
lrwxrwxrwx 1 root root 9 3月 9 2023 csplit -> coreutils*
lrwxrwxrwx 1 root root 9 3月 9 2023 cut -> coreutils*
-rwxr-xr-x 1 root root 55152 3月 9 2023 cwebp*
-rwxr-xr-x 1 root root 14424 3月 9 2023 cx18-ctl*
-rwxr-xr-x 1 root root 34960 3月 9 2023 cyclicdeadline*
-rwxr-xr-x 1 root root 52376 3月 9 2023 cyclictest*
-rwxr-xr-x 1 root root 10016 3月 9 2023 dbus-cleanup-sockets*
-rwxr-xr-x 1 root root 203008 3月 9 2023 dbus-daemon*
-rwxr-xr-x 1 root root 18216 3月 9 2023 dbus-launch*
-rwxr-xr-x 1 root root 22312 3月 9 2023 dbus-monitor*
-rwxr-xr-x 1 root root 14112 3月 9 2023 dbus-run-session*
-rwxr-xr-x 1 root root 22304 3月 9 2023 dbus-send*
-rwxr-xr-x 1 root root 18288 3月 9 2023 dbus-test-tool*
-rwxr-xr-x 1 root root 14112 3月 9 2023 dbus-update-activation-environment*
-rwxr-xr-x 1 root root 10016 3月 9 2023 dbus-uuidgen*
lrwxrwxrwx 1 root root 17 3月 9 2023 dc -> ../../bin/busybox*
-rwxr-xr-x 1 root root 13286 3月 9 2023 ddcmon*
-rwxr-xr-x 1 root root 38768 3月 9 2023 deadline_test*
lrwxrwxrwx 1 root root 17 3月 9 2023 deallocvt -> ../../bin/busybox*
-rwxr-xr-x 1 root root 109436 3月 9 2023 decode-dimms*
-rwxr-xr-x 1 root root 5600 3月 9 2023 decode-edid*
-rwxr-xr-x 1 root root 22672 3月 9 2023 decode_tm6000*
-rwxr-xr-x 1 root root 6528 3月 9 2023 decode-vaio*
-rwxr-xr-x 1 root root 4895 3月 9 2023 determine_maximum_mpps.sh*
-rwxr-xr-x 1 root root 14112 3月 9 2023 dhrystone*
lrwxrwxrwx 1 root root 17 3月 9 2023 diff -> ../../bin/busybox*
lrwxrwxrwx 1 root root 9 3月 9 2023 dircolors -> coreutils*
lrwxrwxrwx 1 root root 9 3月 9 2023 dirname -> coreutils*
-rwxr-xr-x 1 root root 30552 3月 9 2023 disk*
lrwxrwxrwx 1 root root 17 3月 9 2023 dos2unix -> ../../bin/busybox*
-rwxr-xr-x 1 root root 18208 3月 9 2023 dotlockfile*
-rwxr-xr-x 1 root root 10016 3月 9 2023 drmdevice*
lrwxrwxrwx 1 root root 16 3月 9 2023 dropbearconvert -> ../sbin/dropbear*
lrwxrwxrwx 1 root root 16 3月 9 2023 dropbearkey -> ../sbin/dropbear*
lrwxrwxrwx 1 root root 9 3月 9 2023 du -> coreutils*
-rwxr-xr-x 1 root root 39480 3月 9 2023 dumpsys*
-rwxr-xr-x 1 root root 14264 3月 9 2023 dvb-fe-tool*
-rwxr-xr-x 1 root root 10112 3月 9 2023 dvb-format-convert*
-rwxr-xr-x 1 root root 31168 3月 9 2023 dvbv5-daemon*
-rwxr-xr-x 1 root root 18304 3月 9 2023 dvbv5-scan*
-rwxr-xr-x 1 root root 30592 3月 9 2023 dvbv5-zap*
-rwxr-xr-x 1 root root 30576 3月 9 2023 dwebp*
lrwxrwxrwx 1 root root 17 3月 9 2023 eject -> ../../bin/busybox*
-rwxr-xr-x 1 root root 30552 3月 9 2023 enough*
lrwxrwxrwx 1 root root 9 3月 9 2023 env -> coreutils*
-rwxr-xr-x 1 root root 2529 3月 9 2023 esdcompat*
-rwxr-xr-x 1 root root 51056 3月 9 2023 evtest*
lrwxrwxrwx 1 root root 9 3月 9 2023 expand -> coreutils*
lrwxrwxrwx 1 root root 9 3月 9 2023 expr -> coreutils*
-rwxr-xr-x 1 root root 44376 3月 9 2023 faad*
lrwxrwxrwx 1 root root 9 3月 9 2023 factor -> coreutils*
lrwxrwxrwx 1 root root 17 3月 9 2023 fallocate -> ../../bin/busybox*
-rwxr-xr-x 1 root root 14192 3月 9 2023 fc-cache*
-rwxr-xr-x 1 root root 14192 3月 9 2023 fc-cat*
-rwxr-xr-x 1 root root 10096 3月 9 2023 fc-conflist*
-rwxr-xr-x 1 root root 10096 3月 9 2023 fc-list*
-rwxr-xr-x 1 root root 14192 3月 9 2023 fc-match*
-rwxr-xr-x 1 root root 10096 3月 9 2023 fc-pattern*
-rwxr-xr-x 1 root root 10096 3月 9 2023 fc-query*
-rwxr-xr-x 1 root root 10096 3月 9 2023 fc-scan*
-rwxr-xr-x 1 root root 10096 3月 9 2023 fc-validate*
-rwxr-xr-x 1 root root 276584 3月 9 2023 ffmpeg*
lrwxrwxrwx 1 root root 17 3月 9 2023 find -> ../../bin/busybox*
-rwxr-xr-x 1 root root 181280 3月 9 2023 flac*
lrwxrwxrwx 1 root root 17 3月 9 2023 flock -> ../../bin/busybox*
-rwxr-xr-x 1 root root 636 3月 9 2023 fltest_extgpio.sh*
-rwxr-xr-x 1 root root 501 3月 9 2023 fltest_gpio.sh*
-rwxr-xr-x 1 root root 505 3月 9 2023 fltest_hostapd.sh*
-rwxr-xr-x 1 root root 10016 3月 9 2023 fltest_keytest*
-rwxr-xr-x 1 root root 477 3月 9 2023 fltest_memory_bandwidth.sh*
-rwxr-xr-x 1 root root 160 3月 9 2023 fltest_obexctl.sh*
-rwxr-xr-x 1 root root 38856 3月 9 2023 fltest_qt_4g*
-rwxr-xr-x 1 root root 30664 3月 9 2023 fltest_qt_backlight*
-rwxr-xr-x 1 root root 67528 3月 9 2023 fltest_qt_books*
-rw-r--r-- 1 root root 370 3月 9 2023 fltest_qt_books.pro
-rwxr-xr-x 1 root root 30664 3月 9 2023 fltest_qt_keypad*
-rwxr-xr-x 1 root root 67528 3月 9 2023 fltest_qt_musicplayer*
-rwxr-xr-x 1 root root 75720 3月 9 2023 fltest_qt_network*
-rwxr-xr-x 1 root root 63432 3月 9 2023 fltest_qt_opengl*
-rwxr-xr-x 1 root root 34760 3月 9 2023 fltest_qt_ping_test*
-rwxr-xr-x 1 root root 59336 3月 9 2023 fltest_qt_qplayer*
-rwxr-xr-x 1 root root 26568 3月 9 2023 fltest_qt_qtmultscreen*
-rwxr-xr-x 1 root root 34760 3月 9 2023 fltest_qt_rtc*
-rwxr-xr-x 1 root root 190408 3月 9 2023 fltest_qt_simplebrowser*
-rwxr-xr-x 1 root root 47048 3月 9 2023 fltest_qt_spitest*
-rwxr-xr-x 1 root root 153544 3月 9 2023 fltest_qt_terminal*
-rwxr-xr-x 1 root root 34760 3月 9 2023 fltest_qt_tftpUpdate*
-rwxr-xr-x 1 root root 43552 3月 9 2023 fltest_qt_ubootmenu*
-rwxr-xr-x 1 root root 30664 3月 9 2023 fltest_qt_watchdog*
-rwxr-xr-x 1 root root 38856 3月 9 2023 fltest_qt_wifi*
-rwxr-xr-x 1 root root 404 3月 9 2023 fltest_quectel.sh*
-rwxr-xr-x 1 root root 10112 3月 9 2023 fltest_spidev_test*
-rwxr-xr-x 1 root root 10112 3月 9 2023 fltest_uarttest*
-rwxr-xr-x 1 root root 10016 3月 9 2023 fltest_watchdog*
-rwxr-xr-x 1 root root 5920 3月 9 2023 fltest_watchdogrestart*
-rwxr-xr-x 1 root root 2930 3月 9 2023 fltest_wifi.sh*
-rwxr-xr-x 1 root root 27360 3月 9 2023 fluidsynth*
-rwxr-xr-x 1 root root 5920 3月 9 2023 flushdisk*
lrwxrwxrwx 1 root root 9 3月 9 2023 fmt -> coreutils*
lrwxrwxrwx 1 root root 9 3月 9 2023 fold -> coreutils*
lrwxrwxrwx 1 root root 17 3月 9 2023 free -> ../../bin/busybox*
-rwxr-xr-x 1 root root 19072 3月 9 2023 fribidi*
lrwxrwxrwx 1 root root 17 3月 9 2023 fuser -> ../../bin/busybox*
-rwxr-xr-x 1 root root 18288 3月 9 2023 gapplication*
-rwxr-xr-x 1 root root 334272 3月 9 2023 gatttool*
-rwxr-xr-x 1 root root 42864 3月 9 2023 gdbus*
-rwxr-xr-x 1 root root 10032 3月 9 2023 gdk-pixbuf-csource*
-rwxr-xr-x 1 root root 10016 3月 9 2023 gdk-pixbuf-pixdata*
-rwxr-xr-x 1 root root 14112 3月 9 2023 gdk-pixbuf-query-loaders*
-rwxr-xr-x 1 root root 30576 3月 9 2023 getconf*
-rwxr-xr-x 1 root root 83872 3月 9 2023 gio*
-rwxr-xr-x 1 root root 14112 3月 9 2023 gio-querymodules*
-rwxr-xr-x 1 root root 469520 3月 9 2023 glmark2-es2-drm*
-rwxr-xr-x 1 root root 473824 3月 9 2023 glmark2-es2-wayland*
-rwxr-xr-x 1 root root 14112 3月 9 2023 gresource*
lrwxrwxrwx 1 root root 9 3月 9 2023 groups -> coreutils*
-rwxr-xr-x 1 root root 26400 3月 9 2023 gsettings*
-rwxr-xr-x 1 root root 18288 3月 9 2023 gst-device-monitor-1.0*
-rwxr-xr-x 1 root root 30496 3月 9 2023 gst-discoverer-1.0*
-rwxr-xr-x 1 root root 55160 3月 9 2023 gst-inspect-1.0*
-rwxr-xr-x 1 root root 34608 3月 9 2023 gst-launch-1.0*
-rwxr-xr-x 1 root root 42864 3月 9 2023 gst-play-1.0*
-rwxr-xr-x 1 root root 30576 3月 9 2023 gst-stats-1.0*
-rwxr-xr-x 1 root root 26400 3月 9 2023 gst-transcoder-1.0*
-rwxr-xr-x 1 root root 14112 3月 9 2023 gst-typefind-1.0*
-rwxr-xr-x 1 root root 14456 3月 9 2023 hackbench*
-rwxr-xr-x 1 root root 34656 3月 9 2023 hb-ot-shape-closure*
-rwxr-xr-x 1 root root 42848 3月 9 2023 hb-shape*
-rwxr-xr-x 1 root root 34624 3月 9 2023 hb-subset*
-rwxr-xr-x 1 root root 59336 3月 9 2023 hb-view*
-rwxr-xr-x 1 root root 177848 3月 9 2023 hciattach*
-rwxr-xr-x 1 root root 172040 3月 9 2023 hciconfig*
-rwxr-xr-x 1 root root 328088 3月 9 2023 hcidump*
-rwxr-xr-x 1 root root 187760 3月 9 2023 hcitool*
-rwxr-xr-x 1 root root 10144 3月 9 2023 hcitop*
lrwxrwxrwx 1 root root 9 3月 9 2023 head -> coreutils*
-rwxr-xr-x 1 root root 5920 3月 9 2023 hello*
-rwxr-xr-x 1 root root 14192 3月 9 2023 hex2hcd*
lrwxrwxrwx 1 root root 17 3月 9 2023 hexdump -> ../../bin/busybox*
lrwxrwxrwx 1 root root 17 3月 9 2023 hexedit -> ../../bin/busybox*
-rwxr-xr-x 1 root root 75704 3月 9 2023 hostapd_cli*
lrwxrwxrwx 1 root root 9 3月 9 2023 hostid -> coreutils*
lrwxrwxrwx 1 root root 9 3月 9 2023 id -> coreutils*
-rwxr-xr-x 1 root root 38768 3月 9 2023 img2webp*
-rwxr-xr-x 1 root root 42864 3月 9 2023 input-event-daemon*
lrwxrwxrwx 1 root root 9 3月 9 2023 install -> coreutils*
-rwxr-xr-x 1 root root 14112 3月 9 2023 io*
lrwxrwxrwx 1 root root 17 3月 9 2023 ipcrm -> ../../bin/busybox*
lrwxrwxrwx 1 root root 17 3月 9 2023 ipcs -> ../../bin/busybox*
-rwxr-xr-x 1 root root 170080 3月 9 2023 iperf*
-rwxr-xr-x 1 root root 10016 3月 9 2023 iperf3*
lrwxrwxrwx 1 root root 30 3月 9 2023 iptables-xml -> /usr/sbin/xtables-legacy-multi*
-rwxr-xr-x 1 root root 59264 3月 9 2023 ir-ctl*
-rwxr-xr-x 1 root root 94880 3月 9 2023 ir-keytable*
-rwxr-xr-x 1 root root 18208 3月 9 2023 isotpdump*
-rwxr-xr-x 1 root root 14112 3月 9 2023 isotpperf*
-rwxr-xr-x 1 root root 10016 3月 9 2023 isotprecv*
-rwxr-xr-x 1 root root 14112 3月 9 2023 isotpsend*
-rwxr-xr-x 1 root root 14112 3月 9 2023 isotpserver*
-rwxr-xr-x 1 root root 14112 3月 9 2023 isotpsniffer*
-rwxr-xr-x 1 root root 14144 3月 9 2023 isotptun*
-rwxr-xr-x 1 root root 14496 3月 9 2023 ivtv-ctl*
-rwxr-xr-x 1 root root 18512 3月 9 2023 j1939acd*
-rwxr-xr-x 1 root root 18208 3月 9 2023 j1939cat*
-rwxr-xr-x 1 root root 14352 3月 9 2023 j1939spy*
-rwxr-xr-x 1 root root 14376 3月 9 2023 j1939sr*
-rwxr-xr-x 1 root root 18208 3月 9 2023 jpeg2yuv*
-rwxr-xr-x 1 root root 1974232 3月 9 2023 jsc*
lrwxrwxrwx 1 root root 17 3月 9 2023 killall -> ../../bin/busybox*
-rwxr-xr-x 1 root root 30576 3月 9 2023 kms-steal-crtc*
-rwxr-xr-x 1 root root 14192 3月 9 2023 kmstest*
-rwxr-xr-x 1 root root 18480 3月 9 2023 kms-universal-planes*
-rwxr-xr-x 1 root root 138864 3月 9 2023 l2ping*
-rwxr-xr-x 1 root root 155576 3月 9 2023 l2test*
lrwxrwxrwx 1 root root 17 3月 9 2023 last -> ../../bin/busybox*
-rwxr-xr-x 1 root root 34656 3月 9 2023 lat_connect*
-rwxr-xr-x 1 root root 34656 3月 9 2023 lat_ctx*
-rwxr-xr-x 1 root root 34656 3月 9 2023 lat_fcntl*
-rwxr-xr-x 1 root root 30560 3月 9 2023 lat_fifo*
-rwxr-xr-x 1 root root 34656 3月 9 2023 lat_fs*
-rwxr-xr-x 1 root root 34656 3月 9 2023 lat_http*
-rwxr-xr-x 1 root root 100344 3月 9 2023 lat_mem_rd*
-rwxr-xr-x 1 root root 34656 3月 9 2023 lat_mmap*
-rwxr-xr-x 1 root root 42848 3月 9 2023 lat_ops*
-rwxr-xr-x 1 root root 34656 3月 9 2023 lat_pagefault*
-rwxr-xr-x 1 root root 30560 3月 9 2023 lat_pipe*
-rwxr-xr-x 1 root root 34656 3月 9 2023 lat_proc*
-rwxr-xr-x 1 root root 34688 3月 9 2023 lat_rpc*
-rwxr-xr-x 1 root root 38752 3月 9 2023 lat_select*
-rwxr-xr-x 1 root root 30560 3月 9 2023 lat_sem*
-rwxr-xr-x 1 root root 34656 3月 9 2023 lat_sig*
-rwxr-xr-x 1 root root 34656 3月 9 2023 lat_syscall*
-rwxr-xr-x 1 root root 34656 3月 9 2023 lat_tcp*
-rwxr-xr-x 1 root root 38752 3月 9 2023 lat_udp*
-rwxr-xr-x 1 root root 30560 3月 9 2023 lat_unix*
-rwxr-xr-x 1 root root 34656 3月 9 2023 lat_unix_connect*
-rwxr-xr-x 1 root root 2594 3月 9 2023 lav2avi.sh*
-rwxr-xr-x 1 root root 17800 3月 9 2023 lav2mpeg*
-rwxr-xr-x 1 root root 14120 3月 9 2023 lav2wav*
-rwxr-xr-x 1 root root 18216 3月 9 2023 lav2yuv*
-rwxr-xr-x 1 root root 22312 3月 9 2023 lavaddwav*
-rwxr-xr-x 1 root root 10024 3月 9 2023 lavinfo*
-rwxr-xr-x 1 root root 14112 3月 9 2023 lavpipe*
-rwxr-xr-x 1 root root 26667 3月 9 2023 lavtc.sh*
-rwxr-xr-x 1 root root 14120 3月 9 2023 lavtrans*
-rwxr-xr-x 1 root root 5344 3月 9 2023 ldd*
lrwxrwxrwx 1 root root 17 3月 9 2023 less -> ../../bin/busybox*
-rwxr-xr-x 1 root root 14608 3月 9 2023 libevdev-tweak-device*
-rwxr-xr-x 1 root root 47272 3月 9 2023 libinput*
-rwxr-xr-x 1 root root 100336 3月 9 2023 line*
-rwxr-xr-x 1 root root 12049 3月 9 2023 lmbench*
-rwxr-xr-x 1 root root 39072 3月 9 2023 lmdd*
-rwxr-xr-x 1 root root 18224 3月 9 2023 lmhttp*
-rwxr-xr-x 1 root root 14352 3月 9 2023 lockfile-check*
-rwxr-xr-x 1 root root 14352 3月 9 2023 lockfile-create*
-rwxr-xr-x 1 root root 14352 3月 9 2023 lockfile-remove*
-rwxr-xr-x 1 root root 14352 3月 9 2023 lockfile-touch*
-rwxr-xr-x 1 root root 22504 3月 9 2023 log2asc*
-rwxr-xr-x 1 root root 18408 3月 9 2023 log2long*
lrwxrwxrwx 1 root root 17 3月 9 2023 logger -> ../../bin/busybox*
lrwxrwxrwx 1 root root 9 3月 9 2023 logname -> coreutils*
-rwxr-xr-x 1 root root 30552 3月 9 2023 loop_o*
lrwxrwxrwx 1 root root 2 3月 9 2023 lrz -> rz*
lrwxrwxrwx 1 root root 17 3月 9 2023 lsof -> ../../bin/busybox*
lrwxrwxrwx 1 root root 17 3月 9 2023 lspci -> ../../bin/busybox*
lrwxrwxrwx 1 root root 17 3月 9 2023 lsscsi -> ../../bin/busybox*
lrwxrwxrwx 1 root root 17 3月 9 2023 lsusb -> ../../bin/busybox*
lrwxrwxrwx 1 root root 2 3月 9 2023 lsz -> sz*
lrwxrwxrwx 1 root root 17 3月 9 2023 lzcat -> ../../bin/busybox*
lrwxrwxrwx 1 root root 17 3月 9 2023 lzma -> ../../bin/busybox*
lrwxrwxrwx 1 root root 17 3月 9 2023 lzopcat -> ../../bin/busybox*
-rwxr-xr-x 1 root root 14352 3月 9 2023 mail-lock*
-rwxr-xr-x 1 root root 14352 3月 9 2023 mail-touchlock*
-rwxr-xr-x 1 root root 14352 3月 9 2023 mail-unlock*
-rwxr-xr-x 1 root root 14200 3月 9 2023 matrix-browser*
-rwxr-xr-x 1 root root 10016 3月 9 2023 matteblend.flt*
-rwxr-xr-x 1 root root 30560 3月 9 2023 mcp251xfd-dump*
lrwxrwxrwx 1 root root 9 3月 9 2023 md5sum -> coreutils*
-rwxr-xr-x 1 root root 51664 3月 9 2023 media-ctl*
-rwxr-xr-x 1 root root 14280 3月 9 2023 memhog*
-rwxr-xr-x 1 root root 1870 3月 9 2023 memInfo.sh*
-rwxr-xr-x 1 root root 477 3月 9 2023 memory_bandwidth.sh*
-rwxr-xr-x 1 root root 30560 3月 9 2023 memsize*
-rwxr-xr-x 1 root root 22600 3月 9 2023 memtester*
lrwxrwxrwx 1 root root 17 3月 9 2023 mesg -> ../../bin/busybox*
-rwxr-xr-x 1 root root 102048 3月 9 2023 metaflac*
-rwxr-xr-x 1 root root 51184 3月 9 2023 mhz*
lrwxrwxrwx 1 root root 17 3月 9 2023 microcom -> ../../bin/busybox*
-rwxr-xr-x 1 root root 10248 3月 9 2023 migratepages*
-rwxr-xr-x 1 root root 14288 3月 9 2023 migspeed*
-rwxr-xr-x 1 root root 5920 3月 9 2023 mjpeg_simd_helper*
lrwxrwxrwx 1 root root 9 3月 9 2023 mkfifo -> coreutils*
lrwxrwxrwx 1 root root 17 3月 9 2023 mkpasswd -> ../../bin/busybox*
-rwxr-xr-x 1 root root 18288 3月 9 2023 modeprint*
-rwxr-xr-x 1 root root 63368 3月 9 2023 modetest*
-rwxr-xr-x 1 root root 14112 3月 9 2023 mouse-dpi-tool*
-rwxr-xr-x 1 root root 117856 3月 9 2023 mp2enc*
-rwxr-xr-x 1 root root 40392 3月 9 2023 mpeg2enc*
-rwxr-xr-x 1 root root 1638 3月 9 2023 mpegtranscode*
-rwxr-xr-x 1 root root 115216 3月 9 2023 mpg123*
-rwxr-xr-x 1 root root 22688 3月 9 2023 mpg123-id3dump*
-rwxr-xr-x 1 root root 14384 3月 9 2023 mpg123-strip*
-rwxr-xr-x 1 root root 52248 3月 9 2023 mpi_dec_mt_test*
-rwxr-xr-x 1 root root 52248 3月 9 2023 mpi_dec_multi_test*
-rwxr-xr-x 1 root root 52248 3月 9 2023 mpi_dec_test*
-rwxr-xr-x 1 root root 80920 3月 9 2023 mpi_enc_mt_test*
-rwxr-xr-x 1 root root 80920 3月 9 2023 mpi_enc_test*
-rwxr-xr-x 1 root root 77472 3月 9 2023 mpi_rc2_test*
-rwxr-xr-x 1 root root 27240 3月 9 2023 mplex*
-rwxr-xr-x 1 root root 14192 3月 9 2023 mpp_info_test*
-rwxr-xr-x 1 root root 92216 3月 9 2023 mpris-proxy*
-rwxr-xr-x 1 root root 5920 3月 9 2023 msleep*
-rwxr-xr-x 1 root root 10016 3月 9 2023 mtdev-test*
-rwxr-xr-x 1 root root 10016 3月 9 2023 multiblend.flt*
-rwxr-xr-x 1 root root 1865 3月 9 2023 networkSettings.sh*
lrwxrwxrwx 1 root root 9 3月 9 2023 nl -> coreutils*
lrwxrwxrwx 1 root root 9 3月 9 2023 nohup -> coreutils*
lrwxrwxrwx 1 root root 9 3月 9 2023 nproc -> coreutils*
lrwxrwxrwx 1 root root 17 3月 9 2023 nslookup -> ../../bin/busybox*
-rwxr-xr-x 1 root root 31408 3月 9 2023 numactl*
-rwxr-xr-x 1 root root 30656 3月 9 2023 numademo*
-rwxr-xr-x 1 root root 31672 3月 9 2023 numastat*
lrwxrwxrwx 1 root root 9 3月 9 2023 numfmt -> coreutils*
-rwxr-xr-x 1 root root 178104 3月 9 2023 obexctl*
-rwxr-xr-x 1 root root 519416 3月 9 2023 obexd*
lrwxrwxrwx 1 root root 9 3月 9 2023 od -> coreutils*
-rwxr-xr-x 1 root root 1506 3月 9 2023 on_ac_power*
-rwxr-xr-x 1 root root 1369 3月 9 2023 onig-config*
lrwxrwxrwx 1 root root 17 3月 9 2023 openvt -> ../../bin/busybox*
-rwxr-xr-x 1 root root 5968 3月 9 2023 oslat*
-rwxr-xr-x 1 root root 36560 3月 9 2023 out123*
-rwxr-xr-x 1 root root 38800 3月 9 2023 pacat*
-rwxr-xr-x 1 root root 14192 3月 9 2023 pacmd*
-rwxr-xr-x 1 root root 55168 3月 9 2023 pactl*
-rwxr-xr-x 1 root root 2225 3月 9 2023 padsp*
-rwxr-xr-x 1 root root 2039 3月 9 2023 pa-info*
lrwxrwxrwx 1 root root 5 3月 9 2023 pamon -> pacat*
-rwxr-xr-x 1 root root 14112 3月 9 2023 pango-list*
-rwxr-xr-x 1 root root 14112 3月 9 2023 pango-segmentation*
-rwxr-xr-x 1 root root 47112 3月 9 2023 pango-view*
lrwxrwxrwx 1 root root 5 3月 9 2023 paplay -> pacat*
lrwxrwxrwx 1 root root 5 3月 9 2023 parec -> pacat*
lrwxrwxrwx 1 root root 5 3月 9 2023 parecord -> pacat*
-rwxr-xr-x 1 root root 100336 3月 9 2023 par_mem*
-rwxr-xr-x 1 root root 270176 3月 9 2023 par_ops*
lrwxrwxrwx 1 root root 17 3月 9 2023 passwd -> ../../bin/busybox*
lrwxrwxrwx 1 root root 9 3月 9 2023 paste -> coreutils*
-rwxr-xr-x 1 root root 14200 3月 9 2023 pasuspender*
lrwxrwxrwx 1 root root 17 3月 9 2023 patch -> ../../bin/busybox*
lrwxrwxrwx 1 root root 9 3月 9 2023 pathchk -> coreutils*
-rwxr-xr-x 1 root root 44960 3月 9 2023 pcre2grep*
-rwxr-xr-x 1 root root 115632 3月 9 2023 pcre2test*
-rwxr-xr-x 1 root root 36568 3月 9 2023 pcregrep*
-rwxr-xr-x 1 root root 63344 3月 9 2023 pcretest*
-rwxr-xr-x 1 root root 14112 3月 9 2023 pgmtoy4m*
-rwxr-xr-x 1 root root 13023584 3月 9 2023 php*
-rwxr-xr-x 1 root root 12904480 3月 9 2023 php-cgi*
lrwxrwxrwx 1 root root 9 3月 9 2023 pinky -> coreutils*
-rwxr-xr-x 1 root root 26552 3月 9 2023 pip_stress*
-rwxr-xr-x 1 root root 43368 3月 9 2023 pi_stress*
-rwxr-xr-x 1 root root 44016 3月 9 2023 pkgdata*
lrwxrwxrwx 1 root root 17 3月 9 2023 pmap -> ../../bin/busybox*
-rwxr-xr-x 1 root root 981 3月 9 2023 pm-is-supported*
-rwxr-xr-x 1 root root 31088 3月 9 2023 pmqtest*
-rwxr-xr-x 1 root root 22304 3月 9 2023 png2yuv*
-rwxr-xr-x 1 root root 22448 3月 9 2023 pnmtoy4m*
-rwxr-xr-x 1 root root 22304 3月 9 2023 ppmtoy4m*
lrwxrwxrwx 1 root root 9 3月 9 2023 pr -> coreutils*
-rwxr-xr-x 1 root root 4907 7月 1 2021 prerr.properties*
lrwxrwxrwx 1 root root 9 3月 9 2023 printf -> coreutils*
-rwxr-xr-x 1 root root 22392 3月 9 2023 procrank*
-rwxr-xr-x 1 root root 14192 3月 9 2023 proptest*
-rwxr-xr-x 1 root root 31008 3月 9 2023 ptsematest*
lrwxrwxrwx 1 root root 9 3月 9 2023 ptx -> coreutils*
-rwxr-xr-x 1 root root 79792 3月 9 2023 pulseaudio*
-rwxr-xr-x 1 root root 133248 3月 9 2023 qml*
-rwxr-xr-x 1 root root 133328 3月 9 2023 qmlpreview*
-rwxr-xr-x 1 root root 67720 3月 9 2023 qmlscene*
-rwxr-xr-x 1 root root 67632 3月 9 2023 qmltestrunner*
-rwxr-xr-x 1 root root 67632 3月 9 2023 QtWebProcess*
-rwxr-xr-x 1 root root 175536 3月 9 2023 quectelCM*
-rwxr-xr-x 1 root root 14368 3月 9 2023 queuelat*
-rwxr-xr-x 1 root root 436176 3月 9 2023 qv4l2*
lrwxrwxrwx 1 root root 2 3月 9 2023 rb -> rz*
-rwxr-xr-x 1 root root 185544 3月 9 2023 rctest*
-rwxr-xr-x 1 root root 35400 3月 9 2023 rds-ctl*
lrwxrwxrwx 1 root root 9 3月 9 2023 readlink -> coreutils*
lrwxrwxrwx 1 root root 9 3月 9 2023 realpath -> coreutils*
lrwxrwxrwx 1 root root 17 3月 9 2023 renice -> ../../bin/busybox*
lrwxrwxrwx 1 root root 17 3月 9 2023 reset -> ../../bin/busybox*
lrwxrwxrwx 1 root root 17 3月 9 2023 resize -> ../../bin/busybox*
-rwxr-xr-x 1 root root 252 3月 9 2023 restart_rknn.sh*
-rwxr-xr-x 1 root root 147752 3月 9 2023 rfcomm*
-rwxr-xr-x 1 root root 14216 3月 9 2023 rkaiq_3A_server*
-rwxr-xr-x 1 root root 417188 3月 9 2023 rk_airkiss*
-rwxr-xr-x 1 root root 195264 3月 9 2023 rkisp_demo*
-rwxr-xr-x 1 root root 18288 3月 9 2023 rk_mpi_adec_test*
-rwxr-xr-x 1 root root 18288 3月 9 2023 rk_mpi_aenc_test*
-rwxr-xr-x 1 root root 18288 3月 9 2023 rk_mpi_ai_test*
-rwxr-xr-x 1 root root 26480 3月 9 2023 rk_mpi_ao_test*
-rwxr-xr-x 1 root root 14360 3月 9 2023 rk_mpi_avio_test*
-rwxr-xr-x 1 root root 47144 3月 9 2023 rk_mpi_avs_test*
-rwxr-xr-x 1 root root 30592 3月 9 2023 rk_mpi_gdc_test*
-rwxr-xr-x 1 root root 14280 3月 9 2023 rk_mpi_mb_test*
-rwxr-xr-x 1 root root 14360 3月 9 2023 rk_mpi_mmz_test*
-rwxr-xr-x 1 root root 55512 3月 9 2023 rk_mpi_rgn_test*
-rwxr-xr-x 1 root root 18288 3月 9 2023 rk_mpi_sys_test*
-rwxr-xr-x 1 root root 43048 3月 9 2023 rk_mpi_tde_test*
-rwxr-xr-x 1 root root 22384 3月 9 2023 rk_mpi_vdec_test*
-rwxr-xr-x 1 root root 43048 3月 9 2023 rk_mpi_venc_test*
-rwxr-xr-x 1 root root 47144 3月 9 2023 rk_mpi_vgs_test*
-rwxr-xr-x 1 root root 39024 3月 9 2023 rk_mpi_vi_test*
-rwxr-xr-x 1 root root 47176 3月 9 2023 rk_mpi_vo_test*
-rwxr-xr-x 1 root root 43048 3月 9 2023 rk_mpi_vpss_test*
-rwxr-xr-x 1 root root 385448 3月 9 2023 rknn_server*
drwxr-xr-x 8 root root 4096 3月 9 2023 rknpu2_examples/
-rwxr-xr-x 1 root root 31008 3月 9 2023 rt-migrate-test*
lrwxrwxrwx 1 root root 9 3月 9 2023 runcon -> coreutils*
-rwxr-xr-x 1 root root 87 3月 9 2023 runMatrixShutdown.sh*
-rwxr-xr-x 1 root root 147 3月 9 2023 runRefreshMatrix.sh*
-rwxr-xr-x 1 root root 83 3月 9 2023 runSystemShutdown.sh*
lrwxrwxrwx 1 root root 2 3月 9 2023 rx -> rz*
-rwxr-xr-x 1 root root 57800 3月 9 2023 rz*
lrwxrwxrwx 1 root root 2 3月 9 2023 sb -> sz*
-rwxr-xr-x 1 root root 34784 3月 9 2023 sbcdec*
-rwxr-xr-x 1 root root 34912 3月 9 2023 sbcenc*
-rwxr-xr-x 1 root root 10016 3月 9 2023 sbcinfo*
-rwxr-xr-x 1 root root 174328 3月 9 2023 scp*
-rwxr-xr-x 1 root root 67632 3月 9 2023 sdpscanner*
-rwxr-xr-x 1 root root 242312 3月 9 2023 sdptool*
lrwxrwxrwx 1 root root 9 3月 9 2023 seq -> coreutils*
-rwxr-xr-x 1 root root 129 3月 9 2023 setclockspeed.sh*
lrwxrwxrwx 1 root root 17 3月 9 2023 setfattr -> ../../bin/busybox*
-rwxr-xr-x 1 root root 75 3月 9 2023 setgovernor.sh*
lrwxrwxrwx 1 root root 17 3月 9 2023 setkeycodes -> ../../bin/busybox*
lrwxrwxrwx 1 root root 17 3月 9 2023 setsid -> ../../bin/busybox*
-rwxr-xr-x 1 root root 174304 3月 9 2023 sftp*
lrwxrwxrwx 1 root root 9 3月 9 2023 sha1sum -> coreutils*
lrwxrwxrwx 1 root root 9 3月 9 2023 sha224sum -> coreutils*
lrwxrwxrwx 1 root root 9 3月 9 2023 sha256sum -> coreutils*
lrwxrwxrwx 1 root root 9 3月 9 2023 sha384sum -> coreutils*
lrwxrwxrwx 1 root root 17 3月 9 2023 sha3sum -> ../../bin/busybox*
lrwxrwxrwx 1 root root 9 3月 9 2023 sha512sum -> coreutils*
lrwxrwxrwx 1 root root 9 3月 9 2023 shred -> coreutils*
lrwxrwxrwx 1 root root 9 3月 9 2023 shuf -> coreutils*
-rwxr-xr-x 1 root root 31000 3月 9 2023 signaltest*
-rwxr-xr-x 1 root root 31016 3月 9 2023 sigwaittest*
-rwxr-xr-x 1 root root 10016 3月 9 2023 slcan_attach*
-rwxr-xr-x 1 root root 14120 3月 9 2023 slcand*
-rwxr-xr-x 1 root root 14112 3月 9 2023 slcanpty*
lrwxrwxrwx 1 root root 9 3月 9 2023 sort -> coreutils*
-rwxr-xr-x 1 root root 22816 3月 9 2023 speexdec*
-rwxr-xr-x 1 root root 27328 3月 9 2023 speexenc*
lrwxrwxrwx 1 root root 9 3月 9 2023 split -> coreutils*
-rwxr-xr-x 1 root root 237040 3月 9 2023 sqlite3*
-rwxr-xr-x 1 root root 26760 3月 9 2023 ssdd*
-rwxr-xr-x 1 root root 744024 3月 9 2023 ssh*
-rwxr-xr-x 1 root root 346120 3月 9 2023 ssh-add*
-rwxr-xr-x 1 root root 329712 3月 9 2023 ssh-agent*
-rwxr-xr-x 1 root root 12676 3月 9 2023 ssh-copy-id*
-rwxr-xr-x 1 root root 452776 3月 9 2023 ssh-keygen*
-rwxr-xr-x 1 root root 428192 3月 9 2023 ssh-keyscan*
-rwxr-xr-x 1 root root 71 3月 9 2023 start_rknn.sh*
lrwxrwxrwx 1 root root 9 3月 9 2023 stat -> coreutils*
lrwxrwxrwx 1 root root 9 3月 9 2023 stdbuf -> coreutils*
-rwxr-xr-x 1 root root 1333456 3月 9 2023 strace*
-rwxr-xr-x 1 root root 1821 3月 9 2023 strace-log-merge*
-rwxr-xr-x 1 root root 34656 3月 9 2023 stream*
-rwxr-xr-x 1 root root 22320 3月 9 2023 stress*
-rwxr-xr-x 1 root root 285760 3月 9 2023 stressapptest*
-rwxr-xr-x 1 root root 1525776 3月 9 2023 stress-ng*
lrwxrwxrwx 1 root root 17 3月 9 2023 strings -> ../../bin/busybox*
lrwxrwxrwx 1 root root 9 3月 9 2023 sum -> coreutils*
lrwxrwxrwx 1 root root 17 3月 9 2023 svc -> ../../bin/busybox*
lrwxrwxrwx 1 root root 17 3月 9 2023 svok -> ../../bin/busybox*
-rwxr-xr-x 1 root root 31048 3月 9 2023 svsematest*
lrwxrwxrwx 1 root root 2 3月 9 2023 sx -> sz*
-rwxr-xr-x 1 root root 2282 3月 9 2023 sysSettings.sh*
-rwxr-xr-x 1 root root 66016 3月 9 2023 sz*
lrwxrwxrwx 1 root root 9 3月 9 2023 tac -> coreutils*
lrwxrwxrwx 1 root root 9 3月 9 2023 tail -> coreutils*
-rwxr-xr-x 1 root root 1836 3月 9 2023 taskInfo.sh*
-rwxr-xr-x 1 root root 27256 3月 9 2023 taskset*
lrwxrwxrwx 1 root root 9 3月 9 2023 tee -> coreutils*
lrwxrwxrwx 1 root root 17 3月 9 2023 telnet -> ../../bin/busybox*
lrwxrwxrwx 1 root root 9 3月 9 2023 test -> coreutils*
-rwxr-xr-x 1 root root 14112 3月 9 2023 testj1939*
lrwxrwxrwx 1 root root 17 3月 9 2023 tftp -> ../../bin/busybox*
lrwxrwxrwx 1 root root 17 3月 9 2023 time -> ../../bin/busybox*
lrwxrwxrwx 1 root root 9 3月 9 2023 timeout -> coreutils*
-rwxr-xr-x 1 root root 30552 3月 9 2023 timing_o*
-rwxr-xr-x 1 root root 100352 3月 9 2023 tlb*
lrwxrwxrwx 1 root root 17 3月 9 2023 top -> ../../bin/busybox*
-rwxr-xr-x 1 root root 14112 3月 9 2023 touchpad-edge-detector*
lrwxrwxrwx 1 root root 9 3月 9 2023 tr -> coreutils*
-rwxr-xr-x 1 root root 18208 3月 9 2023 tracepath*
lrwxrwxrwx 1 root root 17 3月 9 2023 traceroute -> ../../bin/busybox*
-rwsr-xr-x 1 root root 22304 3月 9 2023 traceroute6*
-rwxr-xr-x 1 root root 10016 3月 9 2023 transist.flt*
lrwxrwxrwx 1 root root 9 3月 9 2023 truncate -> coreutils*
lrwxrwxrwx 1 root root 17 3月 9 2023 ts -> ../../bin/busybox*
lrwxrwxrwx 1 root root 9 3月 9 2023 tsort -> coreutils*
lrwxrwxrwx 1 root root 9 3月 9 2023 tty -> coreutils*
-rwxr-xr-x 1 root root 313432 3月 9 2023 udevadm*
lrwxrwxrwx 1 root root 9 3月 9 2023 unexpand -> coreutils*
lrwxrwxrwx 1 root root 9 3月 9 2023 uniq -> coreutils*
lrwxrwxrwx 1 root root 17 3月 9 2023 unix2dos -> ../../bin/busybox*
lrwxrwxrwx 1 root root 9 3月 9 2023 unlink -> coreutils*
lrwxrwxrwx 1 root root 17 3月 9 2023 unlzma -> ../../bin/busybox*
lrwxrwxrwx 1 root root 17 3月 9 2023 unlzop -> ../../bin/busybox*
lrwxrwxrwx 1 root root 17 3月 9 2023 unxz -> ../../bin/busybox*
lrwxrwxrwx 1 root root 17 3月 9 2023 unzip -> ../../bin/busybox*
-rwxr-xr-x 1 root root 14192 3月 9 2023 update*
-rwxr-xr-x 1 root root 14112 3月 9 2023 upower*
lrwxrwxrwx 1 root root 9 3月 9 2023 uptime -> coreutils*
-rwxr-xr-x 1 root root 1682 3月 9 2023 usbdevice*
lrwxrwxrwx 1 root root 9 3月 9 2023 users -> coreutils*
lrwxrwxrwx 1 root root 17 3月 9 2023 uudecode -> ../../bin/busybox*
lrwxrwxrwx 1 root root 17 3月 9 2023 uuencode -> ../../bin/busybox*
-rwxr-xr-x 1 root root 392280 3月 9 2023 v4l2-compliance*
-rwxr-xr-x 1 root root 354600 3月 9 2023 v4l2-ctl*
-rwxr-xr-x 1 root root 18360 3月 9 2023 v4l2-sysfs-path*
-rwxr-xr-x 1 root root 14200 3月 9 2023 vbltest*
-rwxr-xr-x 1 root root 14192 3月 9 2023 vendor_storage*
lrwxrwxrwx 1 root root 17 3月 9 2023 vlock -> ../../bin/busybox*
-rwxr-xr-x 1 root root 14304 3月 9 2023 vpu_api_test*
lrwxrwxrwx 1 root root 17 3月 9 2023 w -> ../../bin/busybox*
-rwxr-xr-x 1 root root 38840 3月 9 2023 wayland-scanner*
lrwxrwxrwx 1 root root 9 3月 9 2023 wc -> coreutils*
-rwxr-xr-x 1 root root 14112 3月 9 2023 wcap-decode*
-rwxr-xr-x 1 root root 22384 3月 9 2023 webpinfo*
-rwxr-xr-x 1 root root 30576 3月 9 2023 webpmux*
-rwxr-xr-x 1 root root 5920 3月 9 2023 weston*
-rwxr-xr-x 1 root root 117520 3月 9 2023 weston-calibrator*
-rwxr-xr-x 1 root root 14232 3月 9 2023 weston-debug*
-rwxr-xr-x 1 root root 39192 3月 9 2023 weston-info*
-rwxr-xr-x 1 root root 18304 3月 9 2023 weston-screenshooter*
-rwxr-xr-x 1 root root 30912 3月 9 2023 weston-simple-damage*
-rwxr-xr-x 1 root root 43600 3月 9 2023 weston-simple-dmabuf-egl*
-rwxr-xr-x 1 root root 31216 3月 9 2023 weston-simple-dmabuf-v4l*
-rwxr-xr-x 1 root root 30824 3月 9 2023 weston-simple-egl*
-rwxr-xr-x 1 root root 26808 3月 9 2023 weston-simple-shm*
-rwxr-xr-x 1 root root 22600 3月 9 2023 weston-simple-touch*
-rwxr-xr-x 1 root root 143064 3月 9 2023 weston-terminal*
-rwxr-xr-x 1 root root 125776 3月 9 2023 weston-touch-calibrator*
lrwxrwxrwx 1 root root 17 3月 9 2023 wget -> ../../bin/busybox*
-rwxr-xr-x 1 root root 10016 3月 9 2023 whetstone*
lrwxrwxrwx 1 root root 17 3月 9 2023 which -> ../../bin/busybox*
lrwxrwxrwx 1 root root 9 3月 9 2023 who -> coreutils*
lrwxrwxrwx 1 root root 9 3月 9 2023 whoami -> coreutils*
lrwxrwxrwx 1 root root 17 3月 9 2023 xargs -> ../../bin/busybox*
-rwxr-xr-x 1 root root 14208 3月 9 2023 xkbcli*
-rwxr-xr-x 1 root root 18208 3月 9 2023 xmlcatalog*
-rwxr-xr-x 1 root root 64056 3月 9 2023 xmllint*
-rwxr-xr-x 1 root root 30496 3月 9 2023 xmlwf*
-rwxr-xr-x 1 root root 22312 3月 9 2023 xsltproc*
lrwxrwxrwx 1 root root 17 3月 9 2023 xxd -> ../../bin/busybox*
lrwxrwxrwx 1 root root 17 3月 9 2023 xz -> ../../bin/busybox*
lrwxrwxrwx 1 root root 17 3月 9 2023 xzcat -> ../../bin/busybox*
-rwxr-xr-x 1 root root 14112 3月 9 2023 y4mblack*
-rwxr-xr-x 1 root root 18320 3月 9 2023 y4mcolorbars*
-rwxr-xr-x 1 root root 100512 3月 9 2023 y4mdenoise*
-rwxr-xr-x 1 root root 10016 3月 9 2023 y4mhist*
-rwxr-xr-x 1 root root 14112 3月 9 2023 y4minterlace*
-rwxr-xr-x 1 root root 10016 3月 9 2023 y4mivtc*
-rwxr-xr-x 1 root root 92104 3月 9 2023 y4mscaler*
-rwxr-xr-x 1 root root 14120 3月 9 2023 y4mshift*
-rwxr-xr-x 1 root root 14112 3月 9 2023 y4mspatialfilter*
-rwxr-xr-x 1 root root 26400 3月 9 2023 y4mstabilizer*
-rwxr-xr-x 1 root root 18208 3月 9 2023 y4mtopnm*
-rwxr-xr-x 1 root root 18208 3月 9 2023 y4mtoppm*
-rwxr-xr-x 1 root root 10016 3月 9 2023 y4mtoyuv*
-rwxr-xr-x 1 root root 14160 3月 9 2023 y4munsharp*
lrwxrwxrwx 1 root root 9 3月 9 2023 yes -> coreutils*
-rwxr-xr-x 1 root root 10016 3月 9 2023 ypipe*
-rwxr-xr-x 1 root root 18232 3月 9 2023 yuv2lav*
-rwxr-xr-x 1 root root 14112 3月 9 2023 yuv4mpeg*
-rwxr-xr-x 1 root root 30504 3月 9 2023 yuvcorrect*
-rwxr-xr-x 1 root root 38696 3月 9 2023 yuvcorrect_tune*
-rwxr-xr-x 1 root root 10104 3月 9 2023 yuvdeinterlace*
-rwxr-xr-x 1 root root 26408 3月 9 2023 yuvdenoise*
-rwxr-xr-x 1 root root 14112 3月 9 2023 yuvfps*
-rwxr-xr-x 1 root root 18216 3月 9 2023 yuvinactive*
-rwxr-xr-x 1 root root 26480 3月 9 2023 yuvkineco*
-rwxr-xr-x 1 root root 18256 3月 9 2023 yuvmedianfilter*
-rwxr-xr-x 1 root root 46912 3月 9 2023 yuvscaler*
-rwxr-xr-x 1 root root 18288 3月 9 2023 yuvycsnoise*
-rwxr-xr-x 1 root root 10016 3月 9 2023 yuyvtoy4m*
rootroot@rootroot-X99-Turbo:~/version/OK3588_Linux_fs/linuxfs/R4/usr/bin$
rootroot@rootroot-X99-Turbo:~/version/OK3588_Linux_fs/linuxfs/R4/usr/bin$ ll
total 55184
drwxr-xr-x 3 root root 20480 2月 27 16:06 ./
drwxr-xr-x 11 root root 4096 9月 14 2023 ../
lrwxrwxrwx 1 root root 4 3月 9 2023 '[' -> test*
lrwxrwxrwx 1 root root 17 3月 9 2023 '[[' -> ../../bin/busybox*
-rwxr-xr-x 1 root root 18416 3月 9 2023 a2dpconf*
-rwxrwxrwx 1 root root 133832 3月 9 2023 adbd2*
-rwxr-xr-x 1 root root 73768 3月 9 2023 alsamixer*
-rwxr-xr-x 1 root root 51120 3月 9 2023 amixer*
-rwxr-xr-x 1 root root 27332 3月 9 2023 anytovcd.sh*
-rwxr-xr-x 1 root root 67488 3月 9 2023 aplay*
lrwxrwxrwx 1 root root 17 3月 9 2023 ar -> ../../bin/busybox*
-rwxr-xr-x 1 root root 67488 3月 9 2023 arecord*
-rwxr-xr-x 1 root root 22504 3月 9 2023 asc2log*
lrwxrwxrwx 1 root root 17 3月 9 2023 ascii -> ../../bin/busybox*
-rwxr-xr-x 1 root root 30656 3月 9 2023 aserver*
lrwxrwxrwx 1 root root 17 3月 9 2023 awk -> ../../bin/busybox*
lrwxrwxrwx 1 root root 9 3月 9 2023 b2sum -> coreutils*
lrwxrwxrwx 1 root root 9 3月 9 2023 base32 -> coreutils*
lrwxrwxrwx 1 root root 9 3月 9 2023 basename -> coreutils*
lrwxrwxrwx 1 root root 9 3月 9 2023 basenc -> coreutils*
lrwxrwxrwx 1 root root 17 3月 9 2023 bc -> ../../bin/busybox*
-rwxr-xr-x 1 root root 10016 3月 9 2023 bcmserver*
-rwxr-xr-x 1 root root 118008 3月 9 2023 bluealsa*
-rwxr-xr-x 1 root root 43352 3月 9 2023 bluealsa-aplay*
-rwxr-xr-x 1 root root 96112 3月 9 2023 bluemoon*
-rwxr-xr-x 1 root root 272656 3月 9 2023 bluetoothctl*
-rwxr-xr-x 1 root root 87920 3月 9 2023 btattach*
lrwxrwxrwx 1 root root 17 3月 9 2023 bunzip2 -> ../../bin/busybox*
-rwxr-xr-x 1 root root 34656 3月 9 2023 bw_file_rd*
-rwxr-xr-x 1 root root 38752 3月 9 2023 bw_mem*
-rwxr-xr-x 1 root root 34656 3月 9 2023 bw_mmap_rd*
-rwxr-xr-x 1 root root 30568 3月 9 2023 bw_pipe*
-rwxr-xr-x 1 root root 34656 3月 9 2023 bw_tcp*
-rwxr-xr-x 1 root root 34664 3月 9 2023 bw_unix*
lrwxrwxrwx 1 root root 17 3月 9 2023 bzcat -> ../../bin/busybox*
-rwxr-xr-x 1 root root 18216 3月 9 2023 canbusload*
-rwxr-xr-x 1 root root 67704 3月 9 2023 canbusutil*
-rwxr-xr-x 1 root root 17832 3月 9 2023 can-calc-bit-timing*
-rwxr-xr-x 1 root root 26544 3月 9 2023 canconfig*
-rwxr-xr-x 1 root root 30704 3月 9 2023 candump*
-rwxr-xr-x 1 root root 14120 3月 9 2023 canfdtest*
-rwxr-xr-x 1 root root 26608 3月 9 2023 cangen*
-rwxr-xr-x 1 root root 22304 3月 9 2023 cangw*
-rwxr-xr-x 1 root root 22512 3月 9 2023 canlogserver*
-rwxr-xr-x 1 root root 26608 3月 9 2023 canplayer*
-rwxr-xr-x 1 root root 18408 3月 9 2023 cansend*
-rwxr-xr-x 1 root root 14448 3月 9 2023 cansequence*
-rwxr-xr-x 1 root root 22344 3月 9 2023 cansniffer*
-rwxr-xr-x 1 root root 200152 3月 9 2023 cec-compliance*
-rwxr-xr-x 1 root root 291992 3月 9 2023 cec-ctl*
-rwxr-xr-x 1 root root 153968 3月 9 2023 cec-follower*
-rwxr-xr-x 1 root root 174416 3月 9 2023 certutil*
lrwxrwxrwx 1 root root 9 3月 9 2023 chcon -> coreutils*
lrwxrwxrwx 1 root root 34 5月 3 2022 chromium -> /usr/lib/chromium/chromium-wrapper
lrwxrwxrwx 1 root root 17 3月 9 2023 chrt -> ../../bin/busybox*
lrwxrwxrwx 1 root root 17 3月 9 2023 chvt -> ../../bin/busybox*
-rwxr-xr-x 1 root root 181584 3月 9 2023 ciptool*
lrwxrwxrwx 1 root root 9 3月 9 2023 cksum -> coreutils*
lrwxrwxrwx 1 root root 17 3月 9 2023 clear -> ../../bin/busybox*
-rwsr-xr-x 1 root root 18288 3月 9 2023 clockdiff*
lrwxrwxrwx 1 root root 17 3月 9 2023 cmp -> ../../bin/busybox*
lrwxrwxrwx 1 root root 9 3月 9 2023 comm -> coreutils*
-rwxr-xr-x 1 root root 2679 7月 1 2021 compile-et.pl*
-rwxr-xr-x 1 root root 1122008 3月 9 2023 coreutils*
lrwxrwxrwx 1 root root 17 3月 9 2023 crc32 -> ../../bin/busybox*
lrwxrwxrwx 1 root root 17 3月 9 2023 crontab -> ../../bin/busybox*
lrwxrwxrwx 1 root root 9 3月 9 2023 csplit -> coreutils*
lrwxrwxrwx 1 root root 9 3月 9 2023 cut -> coreutils*
-rwxr-xr-x 1 root root 55152 3月 9 2023 cwebp*
-rwxr-xr-x 1 root root 14424 3月 9 2023 cx18-ctl*
-rwxr-xr-x 1 root root 34960 3月 9 2023 cyclicdeadline*
-rwxr-xr-x 1 root root 52376 3月 9 2023 cyclictest*
-rwxr-xr-x 1 root root 10016 3月 9 2023 dbus-cleanup-sockets*
-rwxr-xr-x 1 root root 203008 3月 9 2023 dbus-daemon*
-rwxr-xr-x 1 root root 18216 3月 9 2023 dbus-launch*
-rwxr-xr-x 1 root root 22312 3月 9 2023 dbus-monitor*
-rwxr-xr-x 1 root root 14112 3月 9 2023 dbus-run-session*
-rwxr-xr-x 1 root root 22304 3月 9 2023 dbus-send*
-rwxr-xr-x 1 root root 18288 3月 9 2023 dbus-test-tool*
-rwxr-xr-x 1 root root 14112 3月 9 2023 dbus-update-activation-environment*
-rwxr-xr-x 1 root root 10016 3月 9 2023 dbus-uuidgen*
lrwxrwxrwx 1 root root 17 3月 9 2023 dc -> ../../bin/busybox*
-rwxr-xr-x 1 root root 13286 3月 9 2023 ddcmon*
-rwxr-xr-x 1 root root 38768 3月 9 2023 deadline_test*
lrwxrwxrwx 1 root root 17 3月 9 2023 deallocvt -> ../../bin/busybox*
-rwxr-xr-x 1 root root 109436 3月 9 2023 decode-dimms*
-rwxr-xr-x 1 root root 5600 3月 9 2023 decode-edid*
-rwxr-xr-x 1 root root 22672 3月 9 2023 decode_tm6000*
-rwxr-xr-x 1 root root 6528 3月 9 2023 decode-vaio*
-rwxr-xr-x 1 root root 4895 3月 9 2023 determine_maximum_mpps.sh*
-rwxr-xr-x 1 root root 14112 3月 9 2023 dhrystone*
lrwxrwxrwx 1 root root 17 3月 9 2023 diff -> ../../bin/busybox*
lrwxrwxrwx 1 root root 9 3月 9 2023 dircolors -> coreutils*
lrwxrwxrwx 1 root root 9 3月 9 2023 dirname -> coreutils*
-rwxr-xr-x 1 root root 30552 3月 9 2023 disk*
lrwxrwxrwx 1 root root 17 3月 9 2023 dos2unix -> ../../bin/busybox*
-rwxr-xr-x 1 root root 18208 3月 9 2023 dotlockfile*
-rwxr-xr-x 1 root root 10016 3月 9 2023 drmdevice*
lrwxrwxrwx 1 root root 16 3月 9 2023 dropbearconvert -> ../sbin/dropbear*
lrwxrwxrwx 1 root root 16 3月 9 2023 dropbearkey -> ../sbin/dropbear*
lrwxrwxrwx 1 root root 9 3月 9 2023 du -> coreutils*
-rwxr-xr-x 1 root root 39480 3月 9 2023 dumpsys*
-rwxr-xr-x 1 root root 14264 3月 9 2023 dvb-fe-tool*
-rwxr-xr-x 1 root root 10112 3月 9 2023 dvb-format-convert*
-rwxr-xr-x 1 root root 31168 3月 9 2023 dvbv5-daemon*
-rwxr-xr-x 1 root root 18304 3月 9 2023 dvbv5-scan*
-rwxr-xr-x 1 root root 30592 3月 9 2023 dvbv5-zap*
-rwxr-xr-x 1 root root 30576 3月 9 2023 dwebp*
lrwxrwxrwx 1 root root 17 3月 9 2023 eject -> ../../bin/busybox*
-rwxr-xr-x 1 root root 30552 3月 9 2023 enough*
lrwxrwxrwx 1 root root 9 3月 9 2023 env -> coreutils*
-rwxr-xr-x 1 root root 2529 3月 9 2023 esdcompat*
-rwxr-xr-x 1 root root 51056 3月 9 2023 evtest*
lrwxrwxrwx 1 root root 9 3月 9 2023 expand -> coreutils*
lrwxrwxrwx 1 root root 9 3月 9 2023 expr -> coreutils*
-rwxr-xr-x 1 root root 44376 3月 9 2023 faad*
lrwxrwxrwx 1 root root 9 3月 9 2023 factor -> coreutils*
lrwxrwxrwx 1 root root 17 3月 9 2023 fallocate -> ../../bin/busybox*
-rwxr-xr-x 1 root root 14192 3月 9 2023 fc-cache*
-rwxr-xr-x 1 root root 14192 3月 9 2023 fc-cat*
-rwxr-xr-x 1 root root 10096 3月 9 2023 fc-conflist*
-rwxr-xr-x 1 root root 10096 3月 9 2023 fc-list*
-rwxr-xr-x 1 root root 14192 3月 9 2023 fc-match*
-rwxr-xr-x 1 root root 10096 3月 9 2023 fc-pattern*
-rwxr-xr-x 1 root root 10096 3月 9 2023 fc-query*
-rwxr-xr-x 1 root root 10096 3月 9 2023 fc-scan*
-rwxr-xr-x 1 root root 10096 3月 9 2023 fc-validate*
-rwxr-xr-x 1 root root 276584 3月 9 2023 ffmpeg*
lrwxrwxrwx 1 root root 17 3月 9 2023 find -> ../../bin/busybox*
-rwxr-xr-x 1 root root 181280 3月 9 2023 flac*
lrwxrwxrwx 1 root root 17 3月 9 2023 flock -> ../../bin/busybox*
-rwxr-xr-x 1 root root 636 3月 9 2023 fltest_extgpio.sh*
-rwxr-xr-x 1 root root 501 3月 9 2023 fltest_gpio.sh*
-rwxr-xr-x 1 root root 505 3月 9 2023 fltest_hostapd.sh*
-rwxr-xr-x 1 root root 10016 3月 9 2023 fltest_keytest*
-rwxr-xr-x 1 root root 477 3月 9 2023 fltest_memory_bandwidth.sh*
-rwxr-xr-x 1 root root 160 3月 9 2023 fltest_obexctl.sh*
-rwxr-xr-x 1 root root 38856 3月 9 2023 fltest_qt_4g*
-rwxr-xr-x 1 root root 30664 3月 9 2023 fltest_qt_backlight*
-rwxr-xr-x 1 root root 67528 3月 9 2023 fltest_qt_books*
-rw-r--r-- 1 root root 370 3月 9 2023 fltest_qt_books.pro
-rwxr-xr-x 1 root root 30664 3月 9 2023 fltest_qt_keypad*
-rwxr-xr-x 1 root root 67528 3月 9 2023 fltest_qt_musicplayer*
-rwxr-xr-x 1 root root 75720 3月 9 2023 fltest_qt_network*
-rwxr-xr-x 1 root root 63432 3月 9 2023 fltest_qt_opengl*
-rwxr-xr-x 1 root root 34760 3月 9 2023 fltest_qt_ping_test*
-rwxr-xr-x 1 root root 59336 3月 9 2023 fltest_qt_qplayer*
-rwxr-xr-x 1 root root 26568 3月 9 2023 fltest_qt_qtmultscreen*
-rwxr-xr-x 1 root root 34760 3月 9 2023 fltest_qt_rtc*
-rwxr-xr-x 1 root root 190408 3月 9 2023 fltest_qt_simplebrowser*
-rwxr-xr-x 1 root root 47048 3月 9 2023 fltest_qt_spitest*
-rwxr-xr-x 1 root root 153544 3月 9 2023 fltest_qt_terminal*
-rwxr-xr-x 1 root root 34760 3月 9 2023 fltest_qt_tftpUpdate*
-rwxr-xr-x 1 root root 43552 3月 9 2023 fltest_qt_ubootmenu*
-rwxr-xr-x 1 root root 30664 3月 9 2023 fltest_qt_watchdog*
-rwxr-xr-x 1 root root 38856 3月 9 2023 fltest_qt_wifi*
-rwxr-xr-x 1 root root 404 3月 9 2023 fltest_quectel.sh*
-rwxr-xr-x 1 root root 10112 3月 9 2023 fltest_spidev_test*
-rwxr-xr-x 1 root root 10112 3月 9 2023 fltest_uarttest*
-rwxr-xr-x 1 root root 10016 3月 9 2023 fltest_watchdog*
-rwxr-xr-x 1 root root 5920 3月 9 2023 fltest_watchdogrestart*
-rwxr-xr-x 1 root root 2930 3月 9 2023 fltest_wifi.sh*
-rwxr-xr-x 1 root root 27360 3月 9 2023 fluidsynth*
-rwxr-xr-x 1 root root 5920 3月 9 2023 flushdisk*
lrwxrwxrwx 1 root root 9 3月 9 2023 fmt -> coreutils*
lrwxrwxrwx 1 root root 9 3月 9 2023 fold -> coreutils*
lrwxrwxrwx 1 root root 17 3月 9 2023 free -> ../../bin/busybox*
-rwxr-xr-x 1 root root 19072 3月 9 2023 fribidi*
lrwxrwxrwx 1 root root 17 3月 9 2023 fuser -> ../../bin/busybox*
-rwxr-xr-x 1 root root 18288 3月 9 2023 gapplication*
-rwxr-xr-x 1 root root 334272 3月 9 2023 gatttool*
-rwxr-xr-x 1 root root 42864 3月 9 2023 gdbus*
-rwxr-xr-x 1 root root 10032 3月 9 2023 gdk-pixbuf-csource*
-rwxr-xr-x 1 root root 10016 3月 9 2023 gdk-pixbuf-pixdata*
-rwxr-xr-x 1 root root 14112 3月 9 2023 gdk-pixbuf-query-loaders*
-rwxr-xr-x 1 root root 30576 3月 9 2023 getconf*
-rwxr-xr-x 1 root root 83872 3月 9 2023 gio*
-rwxr-xr-x 1 root root 14112 3月 9 2023 gio-querymodules*
-rwxr-xr-x 1 root root 469520 3月 9 2023 glmark2-es2-drm*
-rwxr-xr-x 1 root root 473824 3月 9 2023 glmark2-es2-wayland*
-rwxr-xr-x 1 root root 14112 3月 9 2023 gresource*
lrwxrwxrwx 1 root root 9 3月 9 2023 groups -> coreutils*
-rwxr-xr-x 1 root root 26400 3月 9 2023 gsettings*
-rwxr-xr-x 1 root root 18288 3月 9 2023 gst-device-monitor-1.0*
-rwxr-xr-x 1 root root 30496 3月 9 2023 gst-discoverer-1.0*
-rwxr-xr-x 1 root root 55160 3月 9 2023 gst-inspect-1.0*
-rwxr-xr-x 1 root root 34608 3月 9 2023 gst-launch-1.0*
-rwxr-xr-x 1 root root 42864 3月 9 2023 gst-play-1.0*
-rwxr-xr-x 1 root root 30576 3月 9 2023 gst-stats-1.0*
-rwxr-xr-x 1 root root 26400 3月 9 2023 gst-transcoder-1.0*
-rwxr-xr-x 1 root root 14112 3月 9 2023 gst-typefind-1.0*
-rwxr-xr-x 1 root root 14456 3月 9 2023 hackbench*
-rwxr-xr-x 1 root root 34656 3月 9 2023 hb-ot-shape-closure*
-rwxr-xr-x 1 root root 42848 3月 9 2023 hb-shape*
-rwxr-xr-x 1 root root 34624 3月 9 2023 hb-subset*
-rwxr-xr-x 1 root root 59336 3月 9 2023 hb-view*
-rwxr-xr-x 1 root root 177848 3月 9 2023 hciattach*
-rwxr-xr-x 1 root root 172040 3月 9 2023 hciconfig*
-rwxr-xr-x 1 root root 328088 3月 9 2023 hcidump*
-rwxr-xr-x 1 root root 187760 3月 9 2023 hcitool*
-rwxr-xr-x 1 root root 10144 3月 9 2023 hcitop*
lrwxrwxrwx 1 root root 9 3月 9 2023 head -> coreutils*
-rwxr-xr-x 1 root root 5920 3月 9 2023 hello*
-rwxr-xr-x 1 root root 14192 3月 9 2023 hex2hcd*
lrwxrwxrwx 1 root root 17 3月 9 2023 hexdump -> ../../bin/busybox*
lrwxrwxrwx 1 root root 17 3月 9 2023 hexedit -> ../../bin/busybox*
-rwxr-xr-x 1 root root 75704 3月 9 2023 hostapd_cli*
lrwxrwxrwx 1 root root 9 3月 9 2023 hostid -> coreutils*
lrwxrwxrwx 1 root root 9 3月 9 2023 id -> coreutils*
-rwxr-xr-x 1 root root 38768 3月 9 2023 img2webp*
-rwxr-xr-x 1 root root 42864 3月 9 2023 input-event-daemon*
lrwxrwxrwx 1 root root 9 3月 9 2023 install -> coreutils*
-rwxr-xr-x 1 root root 14112 3月 9 2023 io*
lrwxrwxrwx 1 root root 17 3月 9 2023 ipcrm -> ../../bin/busybox*
lrwxrwxrwx 1 root root 17 3月 9 2023 ipcs -> ../../bin/busybox*
-rwxr-xr-x 1 root root 170080 3月 9 2023 iperf*
-rwxr-xr-x 1 root root 10016 3月 9 2023 iperf3*
lrwxrwxrwx 1 root root 30 3月 9 2023 iptables-xml -> /usr/sbin/xtables-legacy-multi*
-rwxr-xr-x 1 root root 59264 3月 9 2023 ir-ctl*
-rwxr-xr-x 1 root root 94880 3月 9 2023 ir-keytable*
-rwxr-xr-x 1 root root 18208 3月 9 2023 isotpdump*
-rwxr-xr-x 1 root root 14112 3月 9 2023 isotpperf*
-rwxr-xr-x 1 root root 10016 3月 9 2023 isotprecv*
-rwxr-xr-x 1 root root 14112 3月 9 2023 isotpsend*
-rwxr-xr-x 1 root root 14112 3月 9 2023 isotpserver*
-rwxr-xr-x 1 root root 14112 3月 9 2023 isotpsniffer*
-rwxr-xr-x 1 root root 14144 3月 9 2023 isotptun*
-rwxr-xr-x 1 root root 14496 3月 9 2023 ivtv-ctl*
-rwxr-xr-x 1 root root 18512 3月 9 2023 j1939acd*
-rwxr-xr-x 1 root root 18208 3月 9 2023 j1939cat*
-rwxr-xr-x 1 root root 14352 3月 9 2023 j1939spy*
-rwxr-xr-x 1 root root 14376 3月 9 2023 j1939sr*
-rwxr-xr-x 1 root root 18208 3月 9 2023 jpeg2yuv*
-rwxr-xr-x 1 root root 1974232 3月 9 2023 jsc*
lrwxrwxrwx 1 root root 17 3月 9 2023 killall -> ../../bin/busybox*
-rwxr-xr-x 1 root root 30576 3月 9 2023 kms-steal-crtc*
-rwxr-xr-x 1 root root 14192 3月 9 2023 kmstest*
-rwxr-xr-x 1 root root 18480 3月 9 2023 kms-universal-planes*
-rwxr-xr-x 1 root root 138864 3月 9 2023 l2ping*
-rwxr-xr-x 1 root root 155576 3月 9 2023 l2test*
lrwxrwxrwx 1 root root 17 3月 9 2023 last -> ../../bin/busybox*
-rwxr-xr-x 1 root root 34656 3月 9 2023 lat_connect*
-rwxr-xr-x 1 root root 34656 3月 9 2023 lat_ctx*
-rwxr-xr-x 1 root root 34656 3月 9 2023 lat_fcntl*
-rwxr-xr-x 1 root root 30560 3月 9 2023 lat_fifo*
-rwxr-xr-x 1 root root 34656 3月 9 2023 lat_fs*
-rwxr-xr-x 1 root root 34656 3月 9 2023 lat_http*
-rwxr-xr-x 1 root root 100344 3月 9 2023 lat_mem_rd*
-rwxr-xr-x 1 root root 34656 3月 9 2023 lat_mmap*
-rwxr-xr-x 1 root root 42848 3月 9 2023 lat_ops*
-rwxr-xr-x 1 root root 34656 3月 9 2023 lat_pagefault*
-rwxr-xr-x 1 root root 30560 3月 9 2023 lat_pipe*
-rwxr-xr-x 1 root root 34656 3月 9 2023 lat_proc*
-rwxr-xr-x 1 root root 34688 3月 9 2023 lat_rpc*
-rwxr-xr-x 1 root root 38752 3月 9 2023 lat_select*
-rwxr-xr-x 1 root root 30560 3月 9 2023 lat_sem*
-rwxr-xr-x 1 root root 34656 3月 9 2023 lat_sig*
-rwxr-xr-x 1 root root 34656 3月 9 2023 lat_syscall*
-rwxr-xr-x 1 root root 34656 3月 9 2023 lat_tcp*
-rwxr-xr-x 1 root root 38752 3月 9 2023 lat_udp*
-rwxr-xr-x 1 root root 30560 3月 9 2023 lat_unix*
-rwxr-xr-x 1 root root 34656 3月 9 2023 lat_unix_connect*
-rwxr-xr-x 1 root root 2594 3月 9 2023 lav2avi.sh*
-rwxr-xr-x 1 root root 17800 3月 9 2023 lav2mpeg*
-rwxr-xr-x 1 root root 14120 3月 9 2023 lav2wav*
-rwxr-xr-x 1 root root 18216 3月 9 2023 lav2yuv*
-rwxr-xr-x 1 root root 22312 3月 9 2023 lavaddwav*
-rwxr-xr-x 1 root root 10024 3月 9 2023 lavinfo*
-rwxr-xr-x 1 root root 14112 3月 9 2023 lavpipe*
-rwxr-xr-x 1 root root 26667 3月 9 2023 lavtc.sh*
-rwxr-xr-x 1 root root 14120 3月 9 2023 lavtrans*
-rwxr-xr-x 1 root root 5344 3月 9 2023 ldd*
lrwxrwxrwx 1 root root 17 3月 9 2023 less -> ../../bin/busybox*
-rwxr-xr-x 1 root root 14608 3月 9 2023 libevdev-tweak-device*
-rwxr-xr-x 1 root root 47272 3月 9 2023 libinput*
-rwxr-xr-x 1 root root 100336 3月 9 2023 line*
-rwxr-xr-x 1 root root 12049 3月 9 2023 lmbench*
-rwxr-xr-x 1 root root 39072 3月 9 2023 lmdd*
-rwxr-xr-x 1 root root 18224 3月 9 2023 lmhttp*
-rwxr-xr-x 1 root root 14352 3月 9 2023 lockfile-check*
-rwxr-xr-x 1 root root 14352 3月 9 2023 lockfile-create*
-rwxr-xr-x 1 root root 14352 3月 9 2023 lockfile-remove*
-rwxr-xr-x 1 root root 14352 3月 9 2023 lockfile-touch*
-rwxr-xr-x 1 root root 22504 3月 9 2023 log2asc*
-rwxr-xr-x 1 root root 18408 3月 9 2023 log2long*
lrwxrwxrwx 1 root root 17 3月 9 2023 logger -> ../../bin/busybox*
lrwxrwxrwx 1 root root 9 3月 9 2023 logname -> coreutils*
-rwxr-xr-x 1 root root 30552 3月 9 2023 loop_o*
lrwxrwxrwx 1 root root 2 3月 9 2023 lrz -> rz*
lrwxrwxrwx 1 root root 17 3月 9 2023 lsof -> ../../bin/busybox*
lrwxrwxrwx 1 root root 17 3月 9 2023 lspci -> ../../bin/busybox*
lrwxrwxrwx 1 root root 17 3月 9 2023 lsscsi -> ../../bin/busybox*
lrwxrwxrwx 1 root root 17 3月 9 2023 lsusb -> ../../bin/busybox*
lrwxrwxrwx 1 root root 2 3月 9 2023 lsz -> sz*
lrwxrwxrwx 1 root root 17 3月 9 2023 lzcat -> ../../bin/busybox*
lrwxrwxrwx 1 root root 17 3月 9 2023 lzma -> ../../bin/busybox*
lrwxrwxrwx 1 root root 17 3月 9 2023 lzopcat -> ../../bin/busybox*
-rwxr-xr-x 1 root root 14352 3月 9 2023 mail-lock*
-rwxr-xr-x 1 root root 14352 3月 9 2023 mail-touchlock*
-rwxr-xr-x 1 root root 14352 3月 9 2023 mail-unlock*
-rwxr-xr-x 1 root root 14200 3月 9 2023 matrix-browser*
-rwxr-xr-x 1 root root 10016 3月 9 2023 matteblend.flt*
-rwxr-xr-x 1 root root 30560 3月 9 2023 mcp251xfd-dump*
lrwxrwxrwx 1 root root 9 3月 9 2023 md5sum -> coreutils*
-rwxr-xr-x 1 root root 51664 3月 9 2023 media-ctl*
-rwxr-xr-x 1 root root 14280 3月 9 2023 memhog*
-rwxr-xr-x 1 root root 1870 3月 9 2023 memInfo.sh*
-rwxr-xr-x 1 root root 477 3月 9 2023 memory_bandwidth.sh*
-rwxr-xr-x 1 root root 30560 3月 9 2023 memsize*
-rwxr-xr-x 1 root root 22600 3月 9 2023 memtester*
lrwxrwxrwx 1 root root 17 3月 9 2023 mesg -> ../../bin/busybox*
-rwxr-xr-x 1 root root 102048 3月 9 2023 metaflac*
-rwxr-xr-x 1 root root 51184 3月 9 2023 mhz*
lrwxrwxrwx 1 root root 17 3月 9 2023 microcom -> ../../bin/busybox*
-rwxr-xr-x 1 root root 10248 3月 9 2023 migratepages*
-rwxr-xr-x 1 root root 14288 3月 9 2023 migspeed*
-rwxr-xr-x 1 root root 5920 3月 9 2023 mjpeg_simd_helper*
lrwxrwxrwx 1 root root 9 3月 9 2023 mkfifo -> coreutils*
lrwxrwxrwx 1 root root 17 3月 9 2023 mkpasswd -> ../../bin/busybox*
-rwxr-xr-x 1 root root 18288 3月 9 2023 modeprint*
-rwxr-xr-x 1 root root 63368 3月 9 2023 modetest*
-rwxr-xr-x 1 root root 14112 3月 9 2023 mouse-dpi-tool*
-rwxr-xr-x 1 root root 117856 3月 9 2023 mp2enc*
-rwxr-xr-x 1 root root 40392 3月 9 2023 mpeg2enc*
-rwxr-xr-x 1 root root 1638 3月 9 2023 mpegtranscode*
-rwxr-xr-x 1 root root 115216 3月 9 2023 mpg123*
-rwxr-xr-x 1 root root 22688 3月 9 2023 mpg123-id3dump*
-rwxr-xr-x 1 root root 14384 3月 9 2023 mpg123-strip*
-rwxr-xr-x 1 root root 52248 3月 9 2023 mpi_dec_mt_test*
-rwxr-xr-x 1 root root 52248 3月 9 2023 mpi_dec_multi_test*
-rwxr-xr-x 1 root root 52248 3月 9 2023 mpi_dec_test*
-rwxr-xr-x 1 root root 80920 3月 9 2023 mpi_enc_mt_test*
-rwxr-xr-x 1 root root 80920 3月 9 2023 mpi_enc_test*
-rwxr-xr-x 1 root root 77472 3月 9 2023 mpi_rc2_test*
-rwxr-xr-x 1 root root 27240 3月 9 2023 mplex*
-rwxr-xr-x 1 root root 14192 3月 9 2023 mpp_info_test*
-rwxr-xr-x 1 root root 92216 3月 9 2023 mpris-proxy*
-rwxr-xr-x 1 root root 5920 3月 9 2023 msleep*
-rwxr-xr-x 1 root root 10016 3月 9 2023 mtdev-test*
-rwxr-xr-x 1 root root 10016 3月 9 2023 multiblend.flt*
-rwxr-xr-x 1 root root 1865 3月 9 2023 networkSettings.sh*
lrwxrwxrwx 1 root root 9 3月 9 2023 nl -> coreutils*
lrwxrwxrwx 1 root root 9 3月 9 2023 nohup -> coreutils*
lrwxrwxrwx 1 root root 9 3月 9 2023 nproc -> coreutils*
lrwxrwxrwx 1 root root 17 3月 9 2023 nslookup -> ../../bin/busybox*
-rwxr-xr-x 1 root root 31408 3月 9 2023 numactl*
-rwxr-xr-x 1 root root 30656 3月 9 2023 numademo*
-rwxr-xr-x 1 root root 31672 3月 9 2023 numastat*
lrwxrwxrwx 1 root root 9 3月 9 2023 numfmt -> coreutils*
-rwxr-xr-x 1 root root 178104 3月 9 2023 obexctl*
-rwxr-xr-x 1 root root 519416 3月 9 2023 obexd*
lrwxrwxrwx 1 root root 9 3月 9 2023 od -> coreutils*
-rwxr-xr-x 1 root root 1506 3月 9 2023 on_ac_power*
-rwxr-xr-x 1 root root 1369 3月 9 2023 onig-config*
lrwxrwxrwx 1 root root 17 3月 9 2023 openvt -> ../../bin/busybox*
-rwxr-xr-x 1 root root 5968 3月 9 2023 oslat*
-rwxr-xr-x 1 root root 36560 3月 9 2023 out123*
-rwxr-xr-x 1 root root 38800 3月 9 2023 pacat*
-rwxr-xr-x 1 root root 14192 3月 9 2023 pacmd*
-rwxr-xr-x 1 root root 55168 3月 9 2023 pactl*
-rwxr-xr-x 1 root root 2225 3月 9 2023 padsp*
-rwxr-xr-x 1 root root 2039 3月 9 2023 pa-info*
lrwxrwxrwx 1 root root 5 3月 9 2023 pamon -> pacat*
-rwxr-xr-x 1 root root 14112 3月 9 2023 pango-list*
-rwxr-xr-x 1 root root 14112 3月 9 2023 pango-segmentation*
-rwxr-xr-x 1 root root 47112 3月 9 2023 pango-view*
lrwxrwxrwx 1 root root 5 3月 9 2023 paplay -> pacat*
lrwxrwxrwx 1 root root 5 3月 9 2023 parec -> pacat*
lrwxrwxrwx 1 root root 5 3月 9 2023 parecord -> pacat*
-rwxr-xr-x 1 root root 100336 3月 9 2023 par_mem*
-rwxr-xr-x 1 root root 270176 3月 9 2023 par_ops*
lrwxrwxrwx 1 root root 17 3月 9 2023 passwd -> ../../bin/busybox*
lrwxrwxrwx 1 root root 9 3月 9 2023 paste -> coreutils*
-rwxr-xr-x 1 root root 14200 3月 9 2023 pasuspender*
lrwxrwxrwx 1 root root 17 3月 9 2023 patch -> ../../bin/busybox*
lrwxrwxrwx 1 root root 9 3月 9 2023 pathchk -> coreutils*
-rwxr-xr-x 1 root root 44960 3月 9 2023 pcre2grep*
-rwxr-xr-x 1 root root 115632 3月 9 2023 pcre2test*
-rwxr-xr-x 1 root root 36568 3月 9 2023 pcregrep*
-rwxr-xr-x 1 root root 63344 3月 9 2023 pcretest*
-rwxr-xr-x 1 root root 14112 3月 9 2023 pgmtoy4m*
-rwxr-xr-x 1 root root 13023584 3月 9 2023 php*
-rwxr-xr-x 1 root root 12904480 3月 9 2023 php-cgi*
lrwxrwxrwx 1 root root 9 3月 9 2023 pinky -> coreutils*
-rwxr-xr-x 1 root root 26552 3月 9 2023 pip_stress*
-rwxr-xr-x 1 root root 43368 3月 9 2023 pi_stress*
-rwxr-xr-x 1 root root 44016 3月 9 2023 pkgdata*
lrwxrwxrwx 1 root root 17 3月 9 2023 pmap -> ../../bin/busybox*
-rwxr-xr-x 1 root root 981 3月 9 2023 pm-is-supported*
-rwxr-xr-x 1 root root 31088 3月 9 2023 pmqtest*
-rwxr-xr-x 1 root root 22304 3月 9 2023 png2yuv*
-rwxr-xr-x 1 root root 22448 3月 9 2023 pnmtoy4m*
-rwxr-xr-x 1 root root 22304 3月 9 2023 ppmtoy4m*
lrwxrwxrwx 1 root root 9 3月 9 2023 pr -> coreutils*
-rwxr-xr-x 1 root root 4907 7月 1 2021 prerr.properties*
lrwxrwxrwx 1 root root 9 3月 9 2023 printf -> coreutils*
-rwxr-xr-x 1 root root 22392 3月 9 2023 procrank*
-rwxr-xr-x 1 root root 14192 3月 9 2023 proptest*
-rwxr-xr-x 1 root root 31008 3月 9 2023 ptsematest*
lrwxrwxrwx 1 root root 9 3月 9 2023 ptx -> coreutils*
-rwxr-xr-x 1 root root 79792 3月 9 2023 pulseaudio*
-rwxr-xr-x 1 root root 133248 3月 9 2023 qml*
-rwxr-xr-x 1 root root 133328 3月 9 2023 qmlpreview*
-rwxr-xr-x 1 root root 67720 3月 9 2023 qmlscene*
-rwxr-xr-x 1 root root 67632 3月 9 2023 qmltestrunner*
-rwxr-xr-x 1 root root 67632 3月 9 2023 QtWebProcess*
-rwxr-xr-x 1 root root 175536 3月 9 2023 quectelCM*
-rwxr-xr-x 1 root root 14368 3月 9 2023 queuelat*
-rwxr-xr-x 1 root root 436176 3月 9 2023 qv4l2*
lrwxrwxrwx 1 root root 2 3月 9 2023 rb -> rz*
-rwxr-xr-x 1 root root 185544 3月 9 2023 rctest*
-rwxr-xr-x 1 root root 35400 3月 9 2023 rds-ctl*
lrwxrwxrwx 1 root root 9 3月 9 2023 readlink -> coreutils*
lrwxrwxrwx 1 root root 9 3月 9 2023 realpath -> coreutils*
lrwxrwxrwx 1 root root 17 3月 9 2023 renice -> ../../bin/busybox*
lrwxrwxrwx 1 root root 17 3月 9 2023 reset -> ../../bin/busybox*
lrwxrwxrwx 1 root root 17 3月 9 2023 resize -> ../../bin/busybox*
-rwxr-xr-x 1 root root 252 3月 9 2023 restart_rknn.sh*
-rwxr-xr-x 1 root root 147752 3月 9 2023 rfcomm*
-rwxr-xr-x 1 root root 14216 3月 9 2023 rkaiq_3A_server*
-rwxr-xr-x 1 root root 417188 3月 9 2023 rk_airkiss*
-rwxr-xr-x 1 root root 195264 3月 9 2023 rkisp_demo*
-rwxr-xr-x 1 root root 18288 3月 9 2023 rk_mpi_adec_test*
-rwxr-xr-x 1 root root 18288 3月 9 2023 rk_mpi_aenc_test*
-rwxr-xr-x 1 root root 18288 3月 9 2023 rk_mpi_ai_test*
-rwxr-xr-x 1 root root 26480 3月 9 2023 rk_mpi_ao_test*
-rwxr-xr-x 1 root root 14360 3月 9 2023 rk_mpi_avio_test*
-rwxr-xr-x 1 root root 47144 3月 9 2023 rk_mpi_avs_test*
-rwxr-xr-x 1 root root 30592 3月 9 2023 rk_mpi_gdc_test*
-rwxr-xr-x 1 root root 14280 3月 9 2023 rk_mpi_mb_test*
-rwxr-xr-x 1 root root 14360 3月 9 2023 rk_mpi_mmz_test*
-rwxr-xr-x 1 root root 55512 3月 9 2023 rk_mpi_rgn_test*
-rwxr-xr-x 1 root root 18288 3月 9 2023 rk_mpi_sys_test*
-rwxr-xr-x 1 root root 43048 3月 9 2023 rk_mpi_tde_test*
-rwxr-xr-x 1 root root 22384 3月 9 2023 rk_mpi_vdec_test*
-rwxr-xr-x 1 root root 43048 3月 9 2023 rk_mpi_venc_test*
-rwxr-xr-x 1 root root 47144 3月 9 2023 rk_mpi_vgs_test*
-rwxr-xr-x 1 root root 39024 3月 9 2023 rk_mpi_vi_test*
-rwxr-xr-x 1 root root 47176 3月 9 2023 rk_mpi_vo_test*
-rwxr-xr-x 1 root root 43048 3月 9 2023 rk_mpi_vpss_test*
-rwxr-xr-x 1 root root 385448 3月 9 2023 rknn_server*
drwxr-xr-x 8 root root 4096 3月 9 2023 rknpu2_examples/
-rwxr-xr-x 1 root root 31008 3月 9 2023 rt-migrate-test*
lrwxrwxrwx 1 root root 9 3月 9 2023 runcon -> coreutils*
-rwxr-xr-x 1 root root 87 3月 9 2023 runMatrixShutdown.sh*
-rwxr-xr-x 1 root root 147 3月 9 2023 runRefreshMatrix.sh*
-rwxr-xr-x 1 root root 83 3月 9 2023 runSystemShutdown.sh*
lrwxrwxrwx 1 root root 2 3月 9 2023 rx -> rz*
-rwxr-xr-x 1 root root 57800 3月 9 2023 rz*
lrwxrwxrwx 1 root root 2 3月 9 2023 sb -> sz*
-rwxr-xr-x 1 root root 34784 3月 9 2023 sbcdec*
-rwxr-xr-x 1 root root 34912 3月 9 2023 sbcenc*
-rwxr-xr-x 1 root root 10016 3月 9 2023 sbcinfo*
-rwxr-xr-x 1 root root 174328 3月 9 2023 scp*
-rwxr-xr-x 1 root root 67632 3月 9 2023 sdpscanner*
-rwxr-xr-x 1 root root 242312 3月 9 2023 sdptool*
lrwxrwxrwx 1 root root 9 3月 9 2023 seq -> coreutils*
-rwxr-xr-x 1 root root 129 3月 9 2023 setclockspeed.sh*
lrwxrwxrwx 1 root root 17 3月 9 2023 setfattr -> ../../bin/busybox*
-rwxr-xr-x 1 root root 75 3月 9 2023 setgovernor.sh*
lrwxrwxrwx 1 root root 17 3月 9 2023 setkeycodes -> ../../bin/busybox*
lrwxrwxrwx 1 root root 17 3月 9 2023 setsid -> ../../bin/busybox*
-rwxr-xr-x 1 root root 174304 3月 9 2023 sftp*
lrwxrwxrwx 1 root root 9 3月 9 2023 sha1sum -> coreutils*
lrwxrwxrwx 1 root root 9 3月 9 2023 sha224sum -> coreutils*
lrwxrwxrwx 1 root root 9 3月 9 2023 sha256sum -> coreutils*
lrwxrwxrwx 1 root root 9 3月 9 2023 sha384sum -> coreutils*
lrwxrwxrwx 1 root root 17 3月 9 2023 sha3sum -> ../../bin/busybox*
lrwxrwxrwx 1 root root 9 3月 9 2023 sha512sum -> coreutils*
lrwxrwxrwx 1 root root 9 3月 9 2023 shred -> coreutils*
lrwxrwxrwx 1 root root 9 3月 9 2023 shuf -> coreutils*
-rwxr-xr-x 1 root root 31000 3月 9 2023 signaltest*
-rwxr-xr-x 1 root root 31016 3月 9 2023 sigwaittest*
-rwxr-xr-x 1 root root 10016 3月 9 2023 slcan_attach*
-rwxr-xr-x 1 root root 14120 3月 9 2023 slcand*
-rwxr-xr-x 1 root root 14112 3月 9 2023 slcanpty*
lrwxrwxrwx 1 root root 9 3月 9 2023 sort -> coreutils*
-rwxr-xr-x 1 root root 22816 3月 9 2023 speexdec*
-rwxr-xr-x 1 root root 27328 3月 9 2023 speexenc*
lrwxrwxrwx 1 root root 9 3月 9 2023 split -> coreutils*
-rwxr-xr-x 1 root root 237040 3月 9 2023 sqlite3*
-rwxr-xr-x 1 root root 26760 3月 9 2023 ssdd*
-rwxr-xr-x 1 root root 744024 3月 9 2023 ssh*
-rwxr-xr-x 1 root root 346120 3月 9 2023 ssh-add*
-rwxr-xr-x 1 root root 329712 3月 9 2023 ssh-agent*
-rwxr-xr-x 1 root root 12676 3月 9 2023 ssh-copy-id*
-rwxr-xr-x 1 root root 452776 3月 9 2023 ssh-keygen*
-rwxr-xr-x 1 root root 428192 3月 9 2023 ssh-keyscan*
-rwxr-xr-x 1 root root 71 3月 9 2023 start_rknn.sh*
lrwxrwxrwx 1 root root 9 3月 9 2023 stat -> coreutils*
lrwxrwxrwx 1 root root 9 3月 9 2023 stdbuf -> coreutils*
-rwxr-xr-x 1 root root 1333456 3月 9 2023 strace*
-rwxr-xr-x 1 root root 1821 3月 9 2023 strace-log-merge*
-rwxr-xr-x 1 root root 34656 3月 9 2023 stream*
-rwxr-xr-x 1 root root 22320 3月 9 2023 stress*
-rwxr-xr-x 1 root root 285760 3月 9 2023 stressapptest*
-rwxr-xr-x 1 root root 1525776 3月 9 2023 stress-ng*
lrwxrwxrwx 1 root root 17 3月 9 2023 strings -> ../../bin/busybox*
lrwxrwxrwx 1 root root 9 3月 9 2023 sum -> coreutils*
lrwxrwxrwx 1 root root 17 3月 9 2023 svc -> ../../bin/busybox*
lrwxrwxrwx 1 root root 17 3月 9 2023 svok -> ../../bin/busybox*
-rwxr-xr-x 1 root root 31048 3月 9 2023 svsematest*
lrwxrwxrwx 1 root root 2 3月 9 2023 sx -> sz*
-rwxr-xr-x 1 root root 2282 3月 9 2023 sysSettings.sh*
-rwxr-xr-x 1 root root 66016 3月 9 2023 sz*
lrwxrwxrwx 1 root root 9 3月 9 2023 tac -> coreutils*
lrwxrwxrwx 1 root root 9 3月 9 2023 tail -> coreutils*
-rwxr-xr-x 1 root root 1836 3月 9 2023 taskInfo.sh*
-rwxr-xr-x 1 root root 27256 3月 9 2023 taskset*
lrwxrwxrwx 1 root root 9 3月 9 2023 tee -> coreutils*
lrwxrwxrwx 1 root root 17 3月 9 2023 telnet -> ../../bin/busybox*
lrwxrwxrwx 1 root root 9 3月 9 2023 test -> coreutils*
-rwxr-xr-x 1 root root 14112 3月 9 2023 testj1939*
lrwxrwxrwx 1 root root 17 3月 9 2023 tftp -> ../../bin/busybox*
lrwxrwxrwx 1 root root 17 3月 9 2023 time -> ../../bin/busybox*
lrwxrwxrwx 1 root root 9 3月 9 2023 timeout -> coreutils*
-rwxr-xr-x 1 root root 30552 3月 9 2023 timing_o*
-rwxr-xr-x 1 root root 100352 3月 9 2023 tlb*
lrwxrwxrwx 1 root root 17 3月 9 2023 top -> ../../bin/busybox*
-rwxr-xr-x 1 root root 14112 3月 9 2023 touchpad-edge-detector*
lrwxrwxrwx 1 root root 9 3月 9 2023 tr -> coreutils*
-rwxr-xr-x 1 root root 18208 3月 9 2023 tracepath*
lrwxrwxrwx 1 root root 17 3月 9 2023 traceroute -> ../../bin/busybox*
-rwsr-xr-x 1 root root 22304 3月 9 2023 traceroute6*
-rwxr-xr-x 1 root root 10016 3月 9 2023 transist.flt*
lrwxrwxrwx 1 root root 9 3月 9 2023 truncate -> coreutils*
lrwxrwxrwx 1 root root 17 3月 9 2023 ts -> ../../bin/busybox*
lrwxrwxrwx 1 root root 9 3月 9 2023 tsort -> coreutils*
lrwxrwxrwx 1 root root 9 3月 9 2023 tty -> coreutils*
-rwxr-xr-x 1 root root 313432 3月 9 2023 udevadm*
lrwxrwxrwx 1 root root 9 3月 9 2023 unexpand -> coreutils*
lrwxrwxrwx 1 root root 9 3月 9 2023 uniq -> coreutils*
lrwxrwxrwx 1 root root 17 3月 9 2023 unix2dos -> ../../bin/busybox*
lrwxrwxrwx 1 root root 9 3月 9 2023 unlink -> coreutils*
lrwxrwxrwx 1 root root 17 3月 9 2023 unlzma -> ../../bin/busybox*
lrwxrwxrwx 1 root root 17 3月 9 2023 unlzop -> ../../bin/busybox*
lrwxrwxrwx 1 root root 17 3月 9 2023 unxz -> ../../bin/busybox*
lrwxrwxrwx 1 root root 17 3月 9 2023 unzip -> ../../bin/busybox*
-rwxr-xr-x 1 root root 14192 3月 9 2023 update*
-rwxr-xr-x 1 root root 14112 3月 9 2023 upower*
lrwxrwxrwx 1 root root 9 3月 9 2023 uptime -> coreutils*
-rwxr-xr-x 1 root root 1682 3月 9 2023 usbdevice*
lrwxrwxrwx 1 root root 9 3月 9 2023 users -> coreutils*
lrwxrwxrwx 1 root root 17 3月 9 2023 uudecode -> ../../bin/busybox*
lrwxrwxrwx 1 root root 17 3月 9 2023 uuencode -> ../../bin/busybox*
-rwxr-xr-x 1 root root 392280 3月 9 2023 v4l2-compliance*
-rwxr-xr-x 1 root root 354600 3月 9 2023 v4l2-ctl*
-rwxr-xr-x 1 root root 18360 3月 9 2023 v4l2-sysfs-path*
-rwxr-xr-x 1 root root 14200 3月 9 2023 vbltest*
-rwxr-xr-x 1 root root 14192 3月 9 2023 vendor_storage*
lrwxrwxrwx 1 root root 17 3月 9 2023 vlock -> ../../bin/busybox*
-rwxr-xr-x 1 root root 14304 3月 9 2023 vpu_api_test*
lrwxrwxrwx 1 root root 17 3月 9 2023 w -> ../../bin/busybox*
-rwxr-xr-x 1 root root 38840 3月 9 2023 wayland-scanner*
lrwxrwxrwx 1 root root 9 3月 9 2023 wc -> coreutils*
-rwxr-xr-x 1 root root 14112 3月 9 2023 wcap-decode*
-rwxr-xr-x 1 root root 22384 3月 9 2023 webpinfo*
-rwxr-xr-x 1 root root 30576 3月 9 2023 webpmux*
-rwxr-xr-x 1 root root 5920 3月 9 2023 weston*
-rwxr-xr-x 1 root root 117520 3月 9 2023 weston-calibrator*
-rwxr-xr-x 1 root root 14232 3月 9 2023 weston-debug*
-rwxr-xr-x 1 root root 39192 3月 9 2023 weston-info*
-rwxr-xr-x 1 root root 18304 3月 9 2023 weston-screenshooter*
-rwxr-xr-x 1 root root 30912 3月 9 2023 weston-simple-damage*
-rwxr-xr-x 1 root root 43600 3月 9 2023 weston-simple-dmabuf-egl*
-rwxr-xr-x 1 root root 31216 3月 9 2023 weston-simple-dmabuf-v4l*
-rwxr-xr-x 1 root root 30824 3月 9 2023 weston-simple-egl*
-rwxr-xr-x 1 root root 26808 3月 9 2023 weston-simple-shm*
-rwxr-xr-x 1 root root 22600 3月 9 2023 weston-simple-touch*
-rwxr-xr-x 1 root root 143064 3月 9 2023 weston-terminal*
-rwxr-xr-x 1 root root 125776 3月 9 2023 weston-touch-calibrator*
lrwxrwxrwx 1 root root 17 3月 9 2023 wget -> ../../bin/busybox*
-rwxr-xr-x 1 root root 10016 3月 9 2023 whetstone*
lrwxrwxrwx 1 root root 17 3月 9 2023 which -> ../../bin/busybox*
lrwxrwxrwx 1 root root 9 3月 9 2023 who -> coreutils*
lrwxrwxrwx 1 root root 9 3月 9 2023 whoami -> coreutils*
lrwxrwxrwx 1 root root 17 3月 9 2023 xargs -> ../../bin/busybox*
-rwxr-xr-x 1 root root 14208 3月 9 2023 xkbcli*
-rwxr-xr-x 1 root root 18208 3月 9 2023 xmlcatalog*
-rwxr-xr-x 1 root root 64056 3月 9 2023 xmllint*
-rwxr-xr-x 1 root root 30496 3月 9 2023 xmlwf*
-rwxr-xr-x 1 root root 22312 3月 9 2023 xsltproc*
lrwxrwxrwx 1 root root 17 3月 9 2023 xxd -> ../../bin/busybox*
lrwxrwxrwx 1 root root 17 3月 9 2023 xz -> ../../bin/busybox*
lrwxrwxrwx 1 root root 17 3月 9 2023 xzcat -> ../../bin/busybox*
-rwxr-xr-x 1 root root 14112 3月 9 2023 y4mblack*
-rwxr-xr-x 1 root root 18320 3月 9 2023 y4mcolorbars*
-rwxr-xr-x 1 root root 100512 3月 9 2023 y4mdenoise*
-rwxr-xr-x 1 root root 10016 3月 9 2023 y4mhist*
-rwxr-xr-x 1 root root 14112 3月 9 2023 y4minterlace*
-rwxr-xr-x 1 root root 10016 3月 9 2023 y4mivtc*
-rwxr-xr-x 1 root root 92104 3月 9 2023 y4mscaler*
-rwxr-xr-x 1 root root 14120 3月 9 2023 y4mshift*
-rwxr-xr-x 1 root root 14112 3月 9 2023 y4mspatialfilter*
-rwxr-xr-x 1 root root 26400 3月 9 2023 y4mstabilizer*
-rwxr-xr-x 1 root root 18208 3月 9 2023 y4mtopnm*
-rwxr-xr-x 1 root root 18208 3月 9 2023 y4mtoppm*
-rwxr-xr-x 1 root root 10016 3月 9 2023 y4mtoyuv*
-rwxr-xr-x 1 root root 14160 3月 9 2023 y4munsharp*
lrwxrwxrwx 1 root root 9 3月 9 2023 yes -> coreutils*
-rwxr-xr-x 1 root root 10016 3月 9 2023 ypipe*
-rwxr-xr-x 1 root root 18232 3月 9 2023 yuv2lav*
-rwxr-xr-x 1 root root 14112 3月 9 2023 yuv4mpeg*
-rwxr-xr-x 1 root root 30504 3月 9 2023 yuvcorrect*
-rwxr-xr-x 1 root root 38696 3月 9 2023 yuvcorrect_tune*
-rwxr-xr-x 1 root root 10104 3月 9 2023 yuvdeinterlace*
-rwxr-xr-x 1 root root 26408 3月 9 2023 yuvdenoise*
-rwxr-xr-x 1 root root 14112 3月 9 2023 yuvfps*
-rwxr-xr-x 1 root root 18216 3月 9 2023 yuvinactive*
-rwxr-xr-x 1 root root 26480 3月 9 2023 yuvkineco*
-rwxr-xr-x 1 root root 18256 3月 9 2023 yuvmedianfilter*
-rwxr-xr-x 1 root root 46912 3月 9 2023 yuvscaler*
-rwxr-xr-x 1 root root 18288 3月 9 2023 yuvycsnoise*
-rwxr-xr-x 1 root root 10016 3月 9 2023 yuyvtoy4m*
rootroot@rootroot-X99-Turbo:~/version/OK3588_Linux_fs/linuxfs/R4/usr/bin$ cd ..
rootroot@rootroot-X99-Turbo:~/version/OK3588_Linux_fs/linuxfs/R4/usr$ ll
total 92
drwxr-xr-x 11 root root 4096 9月 14 2023 ./
drwxr-xr-x 21 root root 4096 3月 9 2023 ../
drwxr-xr-x 3 root root 20480 2月 27 16:06 bin/
drwxr-xr-x 3 root root 4096 9月 14 2023 include/
drwxr-xr-x 26 root root 32768 9月 14 2023 lib/
lrwxrwxrwx 1 root root 3 3月 9 2023 lib64 -> lib/
drwxr-xr-x 8 root root 4096 3月 9 2023 libexec/
drwxr-xr-x 15 root root 4096 3月 9 2023 qml/
drwxr-xr-x 2 root root 4096 3月 9 2023 resources/
drwxr-xr-x 2 root root 4096 3月 9 2023 sbin/
drwxr-xr-x 36 root root 4096 9月 14 2023 share/
drwxr-xr-x 3 root root 4096 3月 9 2023 translations/
rootroot@rootroot-X99-Turbo:~/version/OK3588_Linux_fs/linuxfs/R4/usr$ sudo chmod 777 bin/ -R
rootroot@rootroot-X99-Turbo:~/version/OK3588_Linux_fs/linuxfs/R4/usr$ ll
total 92
drwxr-xr-x 11 root root 4096 9月 14 2023 ./
drwxr-xr-x 21 root root 4096 3月 9 2023 ../
drwxrwxrwx 3 root root 20480 2月 27 16:06 bin/
drwxr-xr-x 3 root root 4096 9月 14 2023 include/
drwxr-xr-x 26 root root 32768 9月 14 2023 lib/
lrwxrwxrwx 1 root root 3 3月 9 2023 lib64 -> lib/
drwxr-xr-x 8 root root 4096 3月 9 2023 libexec/
drwxr-xr-x 15 root root 4096 3月 9 2023 qml/
drwxr-xr-x 2 root root 4096 3月 9 2023 resources/
drwxr-xr-x 2 root root 4096 3月 9 2023 sbin/
drwxr-xr-x 36 root root 4096 9月 14 2023 share/
drwxr-xr-x 3 root root 4096 3月 9 2023 translations/
rootroot@rootroot-X99-Turbo:~/version/OK3588_Linux_fs/linuxfs/R4/usr$ cd bin/
rootroot@rootroot-X99-Turbo:~/version/OK3588_Linux_fs/linuxfs/R4/usr/bin$
rootroot@rootroot-X99-Turbo:~/version/OK3588_Linux_fs/linuxfs/R4/usr/bin$ ll adbd
ls: cannot access 'adbd': No such file or directory
rootroot@rootroot-X99-Turbo:~/version/OK3588_Linux_fs/linuxfs/R4/usr/bin$ ll adbd2
-rwxrwxrwx 1 root root 133832 3月 9 2023 adbd2*
rootroot@rootroot-X99-Turbo:~/version/OK3588_Linux_fs/linuxfs/R4/usr/bin$ ll adb*
-rwx------ 1 rootroot rootroot 2908028 11月 5 20:21 adbd*
-rwxrwxrwx 1 root root 133832 3月 9 2023 adbd2*
rootroot@rootroot-X99-Turbo:~/version/OK3588_Linux_fs/linuxfs/R4/usr/bin$
rootroot@rootroot-X99-Turbo:~/version/OK3588_Linux_fs/linuxfs/R4/usr/bin$ sudo chmod 777 adbd
rootroot@rootroot-X99-Turbo:~/version/OK3588_Linux_fs/linuxfs/R4/usr/bin$ ll
rootroot@rootroot-X99-Turbo:~/version/OK3588_Linux_fs/linuxfs/R4/usr/bin$
rootroot@rootroot-X99-Turbo:~/version/OK3588_Linux_fs/linuxfs/R4/usr/bin$
rootroot@rootroot-X99-Turbo:~/version/OK3588_Linux_fs/linuxfs/R4/usr/bin$
rootroot@rootroot-X99-Turbo:~/version/OK3588_Linux_fs/linuxfs/R4/usr/bin$
rootroot@rootroot-X99-Turbo:~/version/OK3588_Linux_fs/linuxfs/R4/usr/bin$ cd ../../..
rootroot@rootroot-X99-Turbo:~/version/OK3588_Linux_fs/linuxfs$
rootroot@rootroot-X99-Turbo:~/version/OK3588_Linux_fs/linuxfs$ ll
total 1638416
drwxr-xr-x 3 rootroot rootroot 4096 2月 27 16:00 ./
drwxr-xr-x 23 rootroot rootroot 4096 2月 26 10:36 ../
drwxr-xr-x 21 root root 4096 3月 9 2023 R4/
-rw-r--r-- 1 rootroot rootroot 1677721600 2月 27 16:07 rootfs.img
rootroot@rootroot-X99-Turbo:~/version/OK3588_Linux_fs/linuxfs$ sudo umount R4
rootroot@rootroot-X99-Turbo:~/version/OK3588_Linux_fs/linuxfs$ ll
total 1638416
drwxr-xr-x 3 rootroot rootroot 4096 2月 27 16:00 ./
drwxr-xr-x 23 rootroot rootroot 4096 2月 26 10:36 ../
drwxrwxr-x 2 rootroot rootroot 4096 2月 27 15:05 R4/
-rw-r--r-- 1 rootroot rootroot 1677721600 2月 27 16:08 rootfs.img
rootroot@rootroot-X99-Turbo:~/version/OK3588_Linux_fs/linuxfs$ cd R4/
rootroot@rootroot-X99-Turbo:~/version/OK3588_Linux_fs/linuxfs/R4$ ll
total 8
drwxrwxr-x 2 rootroot rootroot 4096 2月 27 15:05 ./
drwxr-xr-x 3 rootroot rootroot 4096 2月 27 16:00 ../
rootroot@rootroot-X99-Turbo:~/version/OK3588_Linux_fs/linuxfs/R4$ cd ..
rootroot@rootroot-X99-Turbo:~/version/OK3588_Linux_fs/linuxfs$ ll
total 1638416
drwxr-xr-x 3 rootroot rootroot 4096 2月 27 16:00 ./
drwxr-xr-x 23 rootroot rootroot 4096 2月 26 10:36 ../
drwxrwxr-x 2 rootroot rootroot 4096 2月 27 15:05 R4/
-rw-r--r-- 1 rootroot rootroot 1677721600 2月 27 16:08 rootfs.img
rootroot@rootroot-X99-Turbo:~/version/OK3588_Linux_fs/linuxfs$