私はつい最近、Google のソース コード Web サイトで 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 のコマンド ライン パーティション テーブル解析など)?