You need to sign in or sign up before continuing.
chipset-sandbox.json 3.3 KB
Newer Older
X
xionglei6 已提交
1
{
M
Mupceet 已提交
2
    "sandbox-root" : "/mnt/sandbox/chipset",
X
xionglei6 已提交
3
    "mount-bind-paths" : [{
M
Mupceet 已提交
4 5
            "src-path" : "/system/bin",
            "sandbox-path" : "/system/bin",
X
xionglei6 已提交
6 7
            "sandbox-flags" : [ "bind", "rec", "private" ]
        }, {
M
Mupceet 已提交
8 9
            "src-path" : "/system/etc",
            "sandbox-path" : "/system/etc",
X
xionglei6 已提交
10 11
            "sandbox-flags" : [ "bind", "rec", "private" ]
        }, {
M
Mupceet 已提交
12 13
            "src-path" : "/system/lib",
            "sandbox-path" : "/system/lib",
X
xionglei6 已提交
14 15
            "sandbox-flags" : [ "bind", "rec", "private" ]
        }, {
M
Mupceet 已提交
16 17
            "src-path" : "/system/profile",
            "sandbox-path" : "/system/profile",
X
xionglei6 已提交
18 19
            "sandbox-flags" : [ "bind", "rec", "private" ]
        }, {
M
Mupceet 已提交
20 21
            "src-path" : "/system/app",
            "sandbox-path" : "/system/app",
22 23
            "sandbox-flags" : [ "bind", "rec", "private" ],
            "ignore": 1
X
xionglei6 已提交
24
        }, {
M
Mupceet 已提交
25 26
            "src-path" : "/system/fonts",
            "sandbox-path" : "/system/fonts",
27 28
            "sandbox-flags" : [ "bind", "rec", "private" ],
            "ignore": 1
M
Mupceet 已提交
29 30 31
        }, {
            "src-path" : "/system/usr",
            "sandbox-path" : "/system/usr",
32 33
            "sandbox-flags" : [ "bind", "rec", "private" ],
            "ignore": 1
M
Mupceet 已提交
34 35 36
        }, {
            "src-path" : "/vendor",
            "sandbox-path" : "/vendor",
X
xionglei6 已提交
37 38 39 40 41 42 43 44 45 46 47 48 49
            "sandbox-flags" : [ "bind", "rec", "private" ]
        }, {
            "src-path" : "/dev",
            "sandbox-path" : "/dev",
            "sandbox-flags" : [ "bind", "rec", "private" ]
        }, {
            "src-path" : "/proc",
            "sandbox-path" : "/proc",
            "sandbox-flags" : [ "bind", "rec", "private" ]
        }, {
            "src-path" : "/data",
            "sandbox-path" : "/data",
            "sandbox-flags" : [ "bind", "rec", "private" ]
X
xionglei6 已提交
50 51 52
        }, {
            "src-path" : "/sys/kernel/debug/tracing",
            "sandbox-path" : "/sys/kernel/debug/tracing",
53 54
            "sandbox-flags" : [ "bind", "private" ],
            "ignore": 1
X
xionglei6 已提交
55 56 57 58
        }, {
            "src-path" : "/sys/kernel/debug",
            "sandbox-path" : "/sys/kernel/debug",
            "sandbox-flags" : [ "bind", "private" ]
X
xionglei6 已提交
59 60 61
        }, {
            "src-path" : "/sys",
            "sandbox-path" : "/sys",
X
xionglei6 已提交
62
            "sandbox-flags" : [ "bind", "private" ]
M
Mupceet 已提交
63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78
        }, {
            "src-path" : "/config",
            "sandbox-path" : "/config",
            "sandbox-flags" : [ "bind", "rec", "private" ]
        }, {
            "src-path" : "/mnt",
            "sandbox-path" : "/mnt",
            "sandbox-flags" : [ "bind", "rec", "private" ]
        }, {
            "src-path" : "/storage",
            "sandbox-path" : "/storage",
            "sandbox-flags" : [ "bind", "rec", "private" ]
        }, {
            "src-path" : "/sys_prod",
            "sandbox-path" : "/sys_prod",
            "sandbox-flags" : [ "bind", "rec", "private" ]
C
cheng_jinsong 已提交
79 80 81 82
        }, {
            "src-path" : "/chip_prod",
            "sandbox-path" : "/chip_prod",
            "sandbox-flags" : [ "bind", "rec", "private" ]
X
xionglei6 已提交
83 84 85 86 87
        }
    ],
    "mount-bind-files" : [{
    }],
    "symbol-links" : [{
M
Mupceet 已提交
88
            "target-name" : "/system/lib",
X
xionglei6 已提交
89 90
            "link-name" : "/lib"
        }, {
M
Mupceet 已提交
91
            "target-name" : "/system/bin",
X
xionglei6 已提交
92 93
            "link-name" : "/bin"
        }, {
M
Mupceet 已提交
94
            "target-name" : "/system/etc",
X
xionglei6 已提交
95 96 97
            "link-name" : "/etc"
        }
    ]
X
xionglei6 已提交
98
}