search for: uefi_list

Displaying 3 results from an estimated 3 matches for "uefi_list".

Did you mean: udi_list
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
...List.exists (is_uefi_ESP dev) partitions > - ) > + and is_uefi_bootable_part dev part = > + parttype_is_gpt dev && is_uefi_ESP dev part > in > let devices = Array.to_list (g#list_devices ()) in > - List.exists is_uefi_bootable_device devices > + let uefi_list = ref [] in > + > + List.iter ( > + fun dev -> > + Array.iter ( > + fun part -> > + if (is_uefi_bootable_part dev part) then ( > + uefi_list := (part_dev_name dev part) :: !uefi_list > + ) > + ) (g#part_list dev) > + ) devices; &g...
2016 Jun 10
0
Re: [PATCH 2/2] v2v: remove the 'graphicsmodedisabled' entry in ESP BCD
...hivex_node_delete_child graphics_mode_disabled > + ); > + with > + Not_found -> () > + in > + > + let esp_temp_path = g#mkdtemp "/Windows/Temp/ESP_XXXXXX" in > + > + match inspect.i_uefi with > + | None -> () > + | Some uefi_list -> > + List.iter ( > + fun dev_path -> > + g#mount dev_path esp_temp_path; > + fix_win_uefi_bcd esp_temp_path; > + g#umount esp_temp_path; > + ) uefi_list; > + > + g#rmdir esp_temp_path; > in > > (* Firstboot co...