我最近在 Google 的源代码网站上偶然发现了 Brillo。在它上面,我找到了几个扩展名为bpt
. 这些是似乎描述设备上的分区的 JSON 文件。以下是基本文件的内容:
{
"settings": {
"disk_size": "4 GiB"
},
"partitions": [
{
"ab": true,
"label": "boot",
"size": "32 MiB",
"guid": "auto",
"type_guid": "brillo_boot"
},
{
"ab": true,
"label": "system",
"size": "512 MiB",
"guid": "auto",
"type_guid": "brillo_system"
},
{
"ab": true,
"label": "odm",
"size": "512 MiB",
"guid": "auto",
"type_guid": "brillo_odm"
},
{
"label": "misc",
"size": "1 MiB",
"type_guid": "brillo_misc"
},
{
"label": "userdata",
"grow": true,
"guid": "auto",
"type_guid": "brillo_userdata"
}
]
}
我找不到任何关于此的文档。是不是新的分区方案(如MBR、GPT、APM、Tegra PT、MTD的命令行分区表解析等)?