私は最近、GoogleのソースコードウェブサイトでBrilloを見つけた。その上に、拡張子がbpt
のファイルがいくつか見つかりました。これらは、デバイス上のパーティションを表すJSONファイルです。 Hereは、ベースファイルの内容です。Brilloの分割スキーム
{
"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のコマンドラインパーティションテーブル解析など)ですか?