Home
last modified time | relevance | path

Searched refs:boot_a (Results 1 – 3 of 3) sorted by relevance

/bootable/libbootloader/gbl/docs/
Dgbl_fastboot.md39 * `fastboot flash boot_a` -- Checks that `boot_a` is a unique GPT partition
41 * `fastboot flash boot_a:0x0` or `boot_a:0` -- Flashes in the entire range of
42 GPT partition "boot_a" on block device 0.
43 * `fastboot flash boot_a:0:200` -- Flashes only in range `[512, end)` of GPT
44 partition "boot_a" on block device 0.
45 * `fastboot flash boot_a:0:200:200` -- Flashes only in range `[512, 1024)` of
46 GPT partition "boot_a" on block device 0.
47 * `fastboot flash boot_a:::` -- Same as `"boot_a"`.
/bootable/libbootloader/gbl/libstorage/test/
DBUILD24 ":boot_a.bin",
/bootable/libbootloader/gbl/libstorage/src/
Dgpt.rs645 let mut boot_a = [0u8; include_bytes!("../test/boot_a.bin").len()]; in test_gpt_rw_overflow() localVariable
648 assert!(dev.read_gpt_partition("boot_a", 1, &mut boot_a).is_err()); in test_gpt_rw_overflow()
649 assert!(dev.write_gpt_partition("boot_a", 1, boot_a.as_mut_slice()).is_err()); in test_gpt_rw_overflow()