저는 최근에 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의 명령 줄 파티션 테이블 구문 분석 등)입니까?