aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDanesh M <danesh@cyngn.com>2016-06-27 14:29:14 -0700
committerAbhisek Devkota <ciwrl@cyanogenmod.com>2016-06-27 14:32:21 -0700
commite97f393734514a4da51ca2f38a892c33952354cf (patch)
treebb333916ef1338969d048f97dc115644c0653ad5
parenta0e9719e30374e5a8a215c60466c313568109c5c (diff)
downloadandroid_packages_apps_CMFileManager-e97f393734514a4da51ca2f38a892c33952354cf.tar.gz
android_packages_apps_CMFileManager-e97f393734514a4da51ca2f38a892c33952354cf.tar.bz2
android_packages_apps_CMFileManager-e97f393734514a4da51ca2f38a892c33952354cf.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 (cherry picked from commit 65db0406851b6785303c9a9f1ac1ba86cbd13f69)
-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" />