Compare commits
No commits in common. "b5c20a6a3bb10001cfbcc3ea6d30faf062c32494" and "62fc0bc88951ebe69187b7c62b5ed74cb70e7996" have entirely different histories.
b5c20a6a3b
...
62fc0bc889
|
@ -1,6 +1,5 @@
|
|||
if ! search --file --set root /Part-__DISK__-__PART__; then
|
||||
search --file --set root /EFI/Part-__DISK__-__PART__/Boot/ogloader.efi
|
||||
fi
|
||||
search --file --set rootEFI /EFI/Part-__DISK__-__PART__/Boot/ogloader.efi
|
||||
chainloader ($rootEFI)/EFI/Part-__DISK__-__PART__/Boot/ogloader.efi
|
||||
chainloader (hd0,gpt1)/EFI/Part-__DISK__-__PART__/Boot/ogloader.efi
|
||||
boot
|
|
@ -22,30 +22,23 @@ if [ "$rootRefind" != "" ]; then
|
|||
}
|
||||
fi
|
||||
|
||||
if ! search --file --set rootP2 /Part-01-02; then
|
||||
search --file --set rootP2 /EFI/Part-01-02/Boot/ogloader.efi
|
||||
fi
|
||||
search --file --set rootEFI /EFI/Part-01-02/Boot/ogloader.efi
|
||||
|
||||
echo "Searching Part-01-02"
|
||||
search --file --set rootP2 /EFI/Part-01-02/Boot/ogloader.efi
|
||||
if [ "$rootP2" != "" ]; then
|
||||
set detectado='si'
|
||||
menuentry "Part-01-02" {
|
||||
root="$rootP2"
|
||||
chainloader ($rootEFI)/EFI/Part-01-02/Boot/ogloader.efi
|
||||
chainloader /EFI/Part-01-02/Boot/ogloader.efi
|
||||
}
|
||||
fi
|
||||
|
||||
if ! search --file --set rootP3 /Part-01-03; then
|
||||
search --file --set rootP3 /EFI/Part-01-03/Boot/ogloader.efi
|
||||
fi
|
||||
|
||||
search --file --set rootEFI /EFI/Part-01-03/Boot/ogloader.efi
|
||||
|
||||
if [ "$rootEFI" != "" ]; then
|
||||
echo "Searching Part-01-03"
|
||||
search --file --set rootP3 /EFI/Part-01-03/Boot/ogloader.efi
|
||||
if [ "$rootP3" != "" ]; then
|
||||
set detectado='si'
|
||||
menuentry "Part-01-03" {
|
||||
root="$rootP3"
|
||||
chainloader ($rootEFI)/EFI/Part-01-03/Boot/ogloader.efi
|
||||
chainloader /EFI/Part-01-03/Boot/ogloader.efi
|
||||
}
|
||||
fi
|
||||
|
||||
|
|
Loading…
Reference in New Issue