Displaying 2 results from an estimated 2 matches for "part_dev_nam".
Did you mean:
part_dev_name
2016 Jun 13
1
[PATCH] v2v: Fix get_firmware_bootable_device.
I'm going to push this because it's a test blocker, but FYI.
Rich.
2016 Jun 10
0
Re: [PATCH 1/2] v2v: fill the list of the EFI system partitions
...> -and has_uefi_bootable_device g =
> +and get_uefi_bootable_device g =
> let rec uefi_ESP_guid = "C12A7328-F81F-11D2-BA4B-00A0C93EC93B"
> and is_uefi_ESP dev { G.part_num = partnum } =
> g#part_get_gpt_type dev (Int32.to_int partnum) = uefi_ESP_guid
> + and part_dev_name dev { G.part_num = partnum } =
> + sprintf "%s%d" dev (Int32.to_int partnum)
> and parttype_is_gpt dev =
> try g#part_get_parttype dev = "gpt"
> with G.Error msg as exn ->
> @@ -164,14 +166,25 @@ and has_uefi_bootable_device g =
>...