gpt4 book ai didi

android-source - 使用设备所有者配置构建 AOSP

转载 作者:行者123 更新时间:2023-12-04 04:34:29 27 4
gpt4 key购买 nike

我想使用设备管理器应用程序构建 AOSP。

如何使用已配置的 device_owner.xml 和 device_policies.xml 构建 AOSP?

PS:我的目标是nexus5。

最佳答案

这还不够,直接将文件添加到/data/system 将无法恢复出厂设置(删除数据分区)。
相反,您需要添加您的 device_owner.xmldevice_policies.xml到您的系统分区(任何文件夹,可能只是在 /system/ 下),然后编辑您的 init.rc 文件以复制 device_owner.xmldevice_policies.xml , 这应该在 on post-fs-data 中完成部分(在数据分区挂载后执行)。
不要忘记为所述文件设置正确的权限 chmod 0600chown system sytem您的生成文件应如下所示:

PRODUCT_COPY_FILES += \
device/gateworks/ventana/device_owner.xml:system/device_owner.xml \
device/gateworks/ventana/device_policies.xml:system/device_policies.xml
您的 init.rc 文件应如下所示:
on post-fs-data
# set device manager as device owner
copy /system/device_owner_2.xml /data/system/device_owner_2.xml
chmod 0600 /data/system/device_owner_2.xml
chown system system /data/system/device_owner_2.xml
copy /system/device_policies.xml /data/system/device_policies.xml
chmod 0600 /data/system/device_policies.xml
chown system system /data/system/device_policies.xml

关于android-source - 使用设备所有者配置构建 AOSP,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34004594/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com