1{ 2 "name": "debian", 3 "disks": [ 4 { 5 "partitions": [ 6 { 7 "label": "ROOT", 8 "path": "$PAYLOAD_DIR/root_part", 9 "writable": true, 10 "guid": "{root_part_guid}" 11 }, 12 { 13 "label": "EFI", 14 "path": "$PAYLOAD_DIR/efi_part", 15 "writable": false, 16 "guid": "{efi_part_guid}" 17 } 18 ], 19 "writable": true 20 } 21 ], 22 "sharedPath": [ 23 { 24 "sharedPath": "/storage/emulated" 25 }, 26 { 27 "sharedPath": "$APP_DATA_DIR/files" 28 } 29 ], 30 "kernel": "$PAYLOAD_DIR/vmlinuz", 31 "initrd": "$PAYLOAD_DIR/initrd.img", 32 "params": "root=/dev/vda1", 33 "protected": false, 34 "cpu_topology": "match_host", 35 "platform_version": "~1.0", 36 "memory_mib": 4096, 37 "debuggable": true, 38 "console_out": true, 39 "console_input_device": "ttyS0", 40 "network": true, 41 "auto_memory_balloon": true, 42 "gpu": { 43 "backend": "2d" 44 } 45} 46