aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDanesh M <danesh@cyngn.com>2016-06-27 14:29:14 -0700
committerGerrit Code Review <gerrit@cyanogenmod.org>2016-06-27 14:31:22 -0700
commit65db0406851b6785303c9a9f1ac1ba86cbd13f69 (patch)
treede542f0acefa8f8ca2b3f0788d68f7a045b56a74
parent95c92cbfbce8510657642030c6831db8cec6377b (diff)
downloadandroid_packages_apps_CMFileManager-65db0406851b6785303c9a9f1ac1ba86cbd13f69.tar.gz
android_packages_apps_CMFileManager-65db0406851b6785303c9a9f1ac1ba86cbd13f69.tar.bz2
android_packages_apps_CMFileManager-65db0406851b6785303c9a9f1ac1ba86cbd13f69.zip
FileManager : Update to use toybox ls
Toolbox ls does not include inode column, which causes parser to fail and not show directory size in properties dialog. CYNGNOS-3081 Change-Id: I8b0779404795be63de56bc1bc4a7dc46468fcb77
-rw-r--r--res/xml/command_list.xml2
1 files changed, 1 insertions, 1 deletions
diff --git a/res/xml/command_list.xml b/res/xml/command_list.xml
index 5fe0608d..cd04ec92 100644
--- a/res/xml/command_list.xml
+++ b/res/xml/command_list.xml
@@ -67,7 +67,7 @@
<!-- Usage -->
<command commandId="diskusage" commandPath="/system/bin/df" commandArgs="-h %1$s" />
<command commandId="diskusageall" commandPath="/system/bin/df" commandArgs="-h" />
- <command commandId="folderusage" commandPath="/system/bin/ls" commandArgs="-alR %1$s 2&gt; /dev/null" />
+ <command commandId="folderusage" commandPath="/system/bin/toybox" commandArgs="ls -alR %1$s 2&gt; /dev/null" />
<!-- I/O -->
<command commandId="read" commandPath="/system/bin/cat" commandArgs="%1$s" />