1. 程式人生 > >Android之seLinux許可權

Android之seLinux許可權

如果想直接關閉掉seLiunx那就在

system/core/init/init.c


把is_enforcing配置成0即可。但是這種方法肯定是不太實用的,我們可以直接給需要的裝置加入許可權即可。

1、device/qcom/sepolicy/common/untrusted_app.te

allow untrusted_app camera_device:chr_file rw_file_perms;
2、external/sepolicy/device.te
type camera_device, dev_type;

3、external/sepolicy/file_contexts
/dev/video1             u:object_r:camera_device:s0
這樣就可以成功使video1裝置獲得許可權。