本文链接:https://blog.csdn.net/xuhui_7810/article/details/89225693
客户有个需求,需要增加一个100m大小的分区,用来存放客户预置的资料,并且不能被恢复出厂设置删除。针对这个需求,客户的资料肯定不能放在原有的分区里面,新增的分区,也不能挂载到原有的分区目录下,否则恢复出厂设置时,一定会被清空。这么看来,就只能在系统根目录下,新建个文件夹,并将客户分区,挂载到这个根目录上才行。因为我们用的是android9.0,在这套代码上,会有很多的权限限制,如果没有配置对,会导致各种问题,现记录如下。
1.)在device\qcom\msm8953_64\BoardConfig.mk里做如下修改
BOARD_USERDATAIMAGE_PARTITION_SIZE := 9719880090 #9824737690 对应的,要从userdata上减100m
BOARD_PERSISTIMAGE_PARTITION_SIZE := 33554432
BOARD_PERSISTIMAGE_FILE_SYSTEM_TYPE := ext4
BOARD_OEMIMAGE_PARTITION_SIZE := 268435456
BOARD_UNRECOVERABLEIMAGE_PARTITION_SIZE := 104857600 #单位为字节,换算下来就是100m
2.)device\qcom\msm8953_64\non_hlos\SDM450.LA.3.2.1\common\config\partition.xml
//这里的userdata也要对应的减少100m
顺便说一句,在这个文件里,有一个GROW_LAST_PARTITION_TO_FILL_DISK这样的标签,当它设为true的时候,表示系统前面分剩下的空间,全部自动分到userdata.img里去。设了这个标签后的表现就是,当有些同学各分区的大小没有计算准确时,比如在16g的板子上,system.img、modem.img等除userdata.img外的所有的分区一共占了5g,理论上userdata.img就还剩9g,但是如果某个同学在这两个配置文件里,计算有误,将userdata.img的大小写成了6g,那么就还有3g给浪费了。这时下载完后第一次开机时,userdata.img分区的大小,是下载时从这些分区表里读出来的6g,还有3g空间不见了。但是如果这时恢复出厂设置的话,系统检测到GROW_LAST_PARTITION_TO_FILL_DISK这个标签为true后,会自动将剩下的3g空间也给补到userdata上。所以建议大家,这个标签都要设为true.
3.)\device\qcom\msm8953_64\fstabs-4.9\fstab_non_AB_variant.qti
在最后增加一行:/dev/block/bootdevice/by-name/unrecoverable /unrecoverable ext4 defaults defaults
4.)device\qcom\msm8953_64\msm8953_64.mk里增加一行
PRODUCT_COPY_FILES += device/qcom/msm8953_64/res/unrecoverable.img:$(PRODUCT_OUT)/unrecoverable.img
5.)device\qcom\msm8953_64\non_hlos\SDM450.LA.3.2.1\contents.xml里增加下面代码
<download_fileminimized="true"fastboot="true"><file_name>unrecoverable.img</file_name><file_path>LINUX/android/out/target/product/msm8953_64/</file_path></download_file>
6.)system\core\rootdir\Android.mk,在这里内置分区对应的目录
LOCAL_POST_INSTALL_CMD += ; mkdir -p $(TARGET_ROOT_OUT)/unrecoverable
这里非常重要,在android9.0上,selinux对系统权限限制越来越严格了,不能像之前那样,在init.rc或init.target.rc等初始化脚本里进行系统根目录的mkdir操作。也就是说,在android.9.0上,不能在系统根目录上创建文件夹了。如果要在系统根目录创建文件夹,有两个方法,一是关闭selinux,二是要将系统根目录的文件夹,像内置app那样,在编译时就给内置进去。
7.)device\qcom\sepolicy\vendor\common\file.te
type unrecoverable_data_file, file_type;//创建文件节点
8.)device\qcom\sepolicy\vendor\common\file_contexts
/unrecoverable(/.*)? u:object_r:unrecoverable_data_file:s0//创建文件节点
9.)device\qcom\sepolicy\vendor\common\device.te
type unrecoverable_block_device,dev_type; //创建设备节点
10.)device\qcom\sepolicy\vendor\msm8953\file_contexts
/dev/block/bootdevice/by-name/unrecoverable u:object_r:unrecoverable_block_device:s0//创建设备节点
11.)device\qcom\sepolicy\vendor\common\adbd.te增加adb访问权限
allow adbd unrecoverable_data_file:dir { search open read write add_name create getattr setattr };
allow adbd unrecoverable_data_file:file { open read create write getattr setattr};
12.)device\qcom\sepolicy\vendor\common\init.te增加init进程的对分区设备文件的操作权限
allow init unrecoverable_block_device:blk_file rw_file_perms;
allow init unrecoverable_block_device:blk_file relabelto;
13.)device\qcom\sepolicy\vendor\common\platform_app.te
allow platform_app unrecoverable_data_file:dir { search open read write add_name create getattr setattr };
allow platform_app unrecoverable_data_file:file { open read create write getattr setattr};
14.)device\qcom\sepolicy\vendor\common\recovery.te
allow recovery unrecoverable_block_device:blk_file *;
15.)device\qcom\sepolicy\vendor\common\system_app.te
allow system_app unrecoverable_data_file:dir { search open read write add_name create getattr setattr };
allow system_app unrecoverable_data_file:file { open read create write getattr setattr};
16.)device\qcom\sepolicy\vendor\common\system_server.te
allow system_server unrecoverable_data_file:dir { search open read write add_name create getattr setattr };
allow system_server unrecoverable_data_file:file { open read create write getattr setattr};
17.)device\qcom\sepolicy\vendor\common\vold.te
allow vold unrecoverable_data_file:dir r_dir_perms;
allow vold unrecoverable_block_device:blk_file rw_file_perms;
allow vold unrecoverable_block_device:blk_file create_file_perms;
allow vold unrecoverable_data_file:dir { read getattr open ioctl };
18.)device\qcom\sepolicy\vendor\common\shell.te
r_dir_file(shell, unrecoverable_data_file)
allow shell unrecoverable_data_file:dir { search open read write add_name create getattr setattr };
allow shell unrecoverable_data_file:file { open read create write getattr setattr};
19.)device\qcom\msm8953_64\init.target.rc
chown root root /unrecoverablechmod 0777 /unrecoverablerestorecon_recursive /unrecoverable
其中,如果不做第18、19步的话,会导在user版本上,插上usb后,进入adb shell时,看不到新增加的分区。
20.)将制作好的.img文件,放到device\qcom\msm8953_64\res这个目录下。
————————————————
版权声明:本文为CSDN博主「xuhui_7810」的原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接及本声明。
原文链接:https://blog.csdn.net/xuhui_7810/article/details/89225693
作者:guoyongcan
链接://www.greatytc.com/p/d9627a674769
来源:简书
著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。