/packages/modules/Virtualization/libs/vmconfig/src/ |
D | lib.rs | 50 pub bootloader: Option<PathBuf>, field 76 if self.bootloader.is_none() && self.kernel.is_none() { in validate() 79 if self.bootloader.is_some() && (self.kernel.is_some() || self.initrd.is_some()) { in validate() 116 bootloader: maybe_open_parcel_file(&self.bootloader, false)?, in to_parcelable()
|
/packages/modules/Virtualization/vmbase/example/tests/ |
D | test.rs | 62 let bootloader = ParcelFileDescriptor::new( in test_run_example_vm() localVariable 99 bootloader: Some(bootloader), in test_run_example_vm()
|
/packages/modules/Virtualization/microdroid/ |
D | README.md | 173 `/avf/reference/`, which may be populated by the [bootloader]. 176 for validating vendor hashtree digest. [Bootloader][bootloader] should append 180 that a [bootloader] can extract the value and populate into VM reference DT. 186 [bootloader]: https://source.android.com/docs/core/architecture/bootloader
|
D | uboot-env.txt | 1 # Empty environment for bootloader debugging
|
D | Android.bp | 395 // python -c "import hashlib; print(hashlib.sha256(b'bootloader').hexdigest())" 400 // bootloader.
|
/packages/modules/adb/ |
D | protocol.txt | 78 where systemtype is "bootloader", "device", or "host", serialno is some 249 For limited environments, like the bootloader, it is allowable to 251 ID numbers such that only one stream may be connected to a bootloader 255 The bootloader will support two streams. A "bootloader:debug" stream, 256 which may be opened to get debug messages from the bootloader and a 257 "bootloader:control", stream which will support the set of basic 258 bootloader commands.
|
D | adb.bash | 66 for state in device recovery rescue sideload bootloader disconnect ; do
|
D | OVERVIEW.TXT | 44 devices when they are in the bootloader or recovery mode.
|
/packages/modules/Virtualization/docs/ |
D | abl.md | 3 [ABL](https://source.android.com/docs/core/architecture/bootloader) is not a component of AVF, but 17 See [ABL Support](../pvmfw/README.md#android-bootloader-abl_support) for more detail.
|
D | custom_vm.md | 30 or build it by https://source.android.com/docs/devices/cuttlefish/bootloader-dev#develop-bootloader 37 "bootloader": "/data/local/tmp/u-boot.bin",
|
D | device_assignment.md | 20 When the host boots, the bootloader provides VM DTBO to both Android and pvmfw. 220 For protected VM, bootloader must provide VM DTBO to the pvmfw. pvmfw sanitizes
|
D | getting_started.md | 25 adb reboot bootloader
|
/packages/modules/Virtualization/vmbase/ |
D | README.md | 5 firmware, a VM bootloader or kernel. 19 The [example](example/) subdirectory contains an example of how to use it for a VM bootloader. 152 ELF binary, but to run it as a VM bootloader you need to `objcopy` it to a raw binary image instead, 169 The resulting binary can then be used to start a VM by passing it as the bootloader in a
|
/packages/modules/Virtualization/virtualizationservice/aidl/android/system/virtualizationservice/ |
D | VirtualMachineRawConfig.aidl | 48 @nullable ParcelFileDescriptor bootloader;
|
/packages/modules/Virtualization/virtualizationmanager/src/ |
D | crosvm.rs | 109 pub bootloader: Option<File>, field 1012 if let Some(bootloader) = &config.bootloader { in run_vm() 1013 command.arg("--bios").arg(add_preserved_fd(&mut preserved_fds, bootloader)); in run_vm() 1159 if config.bootloader.is_none() && config.kernel.is_none() { in validate_config() 1162 if config.bootloader.is_some() && (config.kernel.is_some() || config.initrd.is_some()) { in validate_config()
|
D | aidl.rs | 585 bootloader: maybe_clone_file(&config.bootloader)?, in create_vm_internal() 1022 config.bootloader.as_ref().map_or(Ok(()), check_partition_for_file)?; in check_partitions_for_files()
|
/packages/modules/Virtualization/docs/debug/ |
D | README.md | 63 device manufacturer to implement this in their bootloader. Google Pixel 105 **Note**: Bootloader MUST NOT load debug policy when the bootloader is in LOCKED state.
|
/packages/modules/adb/docs/user/ |
D | adb.1.md | 290 **STATE**: device, recovery, rescue, sideload, bootloader, or disconnect. 294 Print offline | bootloader | device. 308 reboot [**bootloader**|**recovery**|**sideload**|**sideload-auto-reboot**] 309 …bsp;Reboot the device; defaults to booting system image but supports **bootloader** and **recovery…
|
/packages/modules/Virtualization/java/framework/src/android/system/virtualmachine/ |
D | VirtualMachineConfig.java | 681 config.bootloader = in toVsRawConfig() 686 if (config.kernel == null && config.bootloader == null) { in toVsRawConfig() 687 config.bootloader = openOrNull(new File(U_BOOT_PREBUILT_PATH), MODE_READ_ONLY); in toVsRawConfig()
|
/packages/providers/CalendarProvider/tests/ |
D | EMMA_README | 15 # - adb reboot-bootloader
|
/packages/modules/Virtualization/pvmfw/ |
D | README.md | 39 instruction, similarly to a bootloader. 96 [ABL-part]: https://source.android.com/docs/core/architecture/bootloader/partitions 97 [boot-img]: https://source.android.com/docs/core/architecture/bootloader/boot-image-header 209 The bootloader should ensure that the same properties, with the same values,
|
/packages/modules/Virtualization/service_vm/manager/src/ |
D | lib.rs | 229 bootloader: Some(ParcelFileDescriptor::new(rialto)), in protected_vm_instance()
|
/packages/modules/Virtualization/rialto/tests/ |
D | test.rs | 316 bootloader: Some(ParcelFileDescriptor::new(rialto)), in nonprotected_vm_instance()
|
/packages/modules/Virtualization/java/framework/ |
D | README.md | 181 - The code running in the VM, including the bootloader, kernel, Microdroid and
|