aboutsummaryrefslogtreecommitdiffstats
path: root/res/values/overlay.xml
blob: 1a68d53488e6e70542975a490bd07736c6cb52c5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (C) 2012 The CyanogenMod Project

     Licensed under the Apache License, Version 2.0 (the "License");
     you may not use this file except in compliance with the License.
     You may obtain a copy of the License at

          http://www.apache.org/licenses/LICENSE-2.0

     Unless required by applicable law or agreed to in writing, software
     distributed under the License is distributed on an "AS IS" BASIS,
     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     See the License for the specific language governing permissions and
     limitations under the License.
 -->
<!--
     This file contains values that could be overlayed. This allow configure special values
     for each device. Use overlay building folder on device tree for overlay this values
-->
<resources xmlns:android="http://schemas.android.com/apk/res/android">

  <!-- The root directory -->
  <string name="root_dir" translatable="false">/</string>

  <!-- The system directory -->
  <string name="system_dir" translatable="false">/system</string>

  <!-- The shell commands used by this application. All of this commands should
       exist to allow the use of a shell console (and access to root). If any
       of this commands are not present in the system, then app will start in
       non-rooted mode and with a java console.
   -->
  <string name="shell_required_commands" translatable="false">
    /system/bin/cat,
    /system/bin/chmod,
    /system/bin/chown,
    /system/bin/dd,
    /system/bin/df,
    /system/bin/gzip,
    /system/bin/id,
    /system/bin/kill,
    /system/bin/ln,
    /system/bin/ls,
    /system/bin/mkdir,
    /system/bin/mount,
    /system/bin/mv,
    /system/bin/ps,
    /system/bin/rm,
    /system/bin/sh,
    /system/xbin/awk,
    /system/xbin/bunzip2,
    /system/xbin/bzip2,
    /system/xbin/cp,
    /system/xbin/cut,
    /system/xbin/dirname,
    /system/xbin/echo,
    /system/xbin/find,
    /system/xbin/grep,
    /system/xbin/groups,
    /system/xbin/gunzip,
    /system/xbin/pwd,
    /system/xbin/readlink,
    /system/xbin/su,
    /system/xbin/tar,
    /system/xbin/uncompress,
    /system/xbin/unlzma,
    /system/xbin/unxz,
    /system/xbin/unzip,
    /system/xbin/xargs
  </string>

  <!-- The mounts file -->
  <string name="mounts_file" translatable="false">/proc/mounts</string>

  <!-- The system properties -->
  <string name="system_props_file" translatable="false">/system/build.prop</string>

  <!-- The size of the buffers use by the console (in bytes). Default: 4k -->
  <integer name="buffer_size">4096</integer>

  <!-- The number of lines to show in the console dialog -->
  <integer name="console_max_lines">80</integer>

  <!-- The number of characters per line to show in the console dialog -->
  <integer name="console_max_chars_per_line">150</integer>

  <!-- The max limit of file size that the internal editor can open. Default: 4Mb -->
  <integer name="editor_max_file_size">4194304</integer>

</resources>