Find BIOS boot partition among children.
(&self)
| 187 | |
| 188 | /// Find BIOS boot partition among children. |
| 189 | pub fn find_partition_of_bios_boot(&self) -> Option<&Device> { |
| 190 | self.find_partition_of_type(BIOS_BOOT) |
| 191 | } |
| 192 | |
| 193 | /// Find all ESP partitions across all root devices backing this device. |
| 194 | /// Calls find_all_roots() to discover physical disks, then searches each for an ESP. |