1{
2    "jobs" : [{
3            "name" : "pre-init",
4            "cmds" : [
5                "mkdir /module_update",
6                "chmod 755 /module_update",
7                "mount tmpfs tmpfs /module_update rw nosuid nodev noexec mode=0755",
8                "mount none /module_update /module_update bind",
9                "mount none none /module_update shared",
10                "start check_module_update"
11            ]
12        }
13    ],
14    "services" : [{
15            "name" : "check_module_update",
16            "path" : ["/system/bin/check_module_update"],
17            "uid" : "root",
18            "gid" : ["update", "system", "root"],
19            "secon" : "u:r:module_update_service:s0",
20            "start-mode" : "condition",
21            "once" : 1
22        }
23    ]
24}