Displaying 2 results from an estimated 2 matches for "esp_temp_path".
2016 Jun 12
0
Re: [PATCH v2 2/2] v2v: remove the 'graphicsmodedisabled' entry in ESP BCD
Thanks, I pushed both patches.  Note you will get conflicts when you
pull, since I have folded in some fixes, largely cosmetic, but there
were two more important ones:
(1) v2v_unit_tests: BIOS -> I_BIOS.  Please run the tests!
(2) The code below
> +    let esp_temp_path = g#mkdtemp "/Windows/Temp/ESP_XXXXXX" in
> +
> +    match inspect.i_firmware with
> +    | I_BIOS -> ()
> +    | I_UEFI esp_list ->
> +      List.iter (
> +        fun dev_path ->
> +        g#mount dev_path esp_temp_path;
> +        fix_win_uefi_bcd esp_...
2016 Jun 10
0
Re: [PATCH 2/2] v2v: remove the 'graphicsmodedisabled' entry in ESP BCD
...Windows.get_node g root path with
> +          | None -> raise Not_found
> +          | Some graphics_mode_disabled ->
> +            g#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_pa...