Displaying 1 result from an estimated 1 matches for "find_grub".
2016 Oct 31
0
Re: [PATCH] v2v: bootloaders: search grub config for all distributions
...ollowsymlinks:true config_file
> - ) locations
> - with
> - Not_found ->
> - error (f_"no bootloader detected") in
> + | I_BIOS -> "/boot/"
> + | I_UEFI _ -> "/boot/efi/EFI/"
> + in
> +
> + let rec find_grub dirs configs =
> + let rec config_check dir configs =
> + match configs with
> + | [] -> None
> + | (config, typ) :: configs ->
> + let cfg_path = boot_location ^ dir ^ "/" ^ config in
> + if g#is_file ~followsymlinks:tru...