Searched refs:boot_a (Results 1 – 3 of 3) sorted by relevance
39 * `fastboot flash boot_a` -- Checks that `boot_a` is a unique GPT partition41 * `fastboot flash boot_a:0x0` or `boot_a:0` -- Flashes in the entire range of42 GPT partition "boot_a" on block device 0.43 * `fastboot flash boot_a:0:200` -- Flashes only in range `[512, end)` of GPT44 partition "boot_a" on block device 0.45 * `fastboot flash boot_a:0:200:200` -- Flashes only in range `[512, 1024)` of46 GPT partition "boot_a" on block device 0.47 * `fastboot flash boot_a:::` -- Same as `"boot_a"`.
24 ":boot_a.bin",
645 let mut boot_a = [0u8; include_bytes!("../test/boot_a.bin").len()]; in test_gpt_rw_overflow() localVariable648 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()