在init.rc文件中修改文件属性,没有任何作用。解决方法
create a script somewhere, for example, /system/bin/mymod.rc
#!/system/bin/sh
chmod 0777 /dev/mynode
- add the following in /init.rc:
service mymod /system/etc/mymod.rc
oneshot
注意当出把文件mymod.rc 放到 /system/bin/mymod.rc
下是不行的 ,放到 /system/etc/mymod.rc就可以了。
又发现一个简单的方法:
可以在.system/core/include/private/android_filesystem_config.h
或者system/core/rootdir/init.rc
这个文件的数组里添加何修改文件的属性,这里该后是可以的