blob: 8691d0e4c6d39b4ff905997c423a3cadc75a98d8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
# Busca cargadores existentes por orden de prioridad e
# inicia el primero que encuentra.
# Si no existe ningún cargador de arranque muestre mensaje de error.
set timeout=0
# Valor si no detecto ningún sistema
set label="OpenGnsys: Ningún cargador de arranque detectado."
set chain=""
# Compruebo si existen distintos cargadores.
set root=''
search --file --set root /EFI/refind/grubx64.efi
if [ "$root" != "" ]; then
set label="rEFInd"
set chain="chainloader /EFI/refind/grubx64.efi"
fi
if [ "$root" == "" ]; then
search --file --set root /EFI/Microsoft/Boot/bootmgfw.efi
if [ "$root" != "" ]; then
set label="Microsoft"
set chain="chainloader /EFI/Microsoft/Boot/bootmgfw.efi"
fi
fi
if [ "$root" == "" ]; then
search --file --set root /EFI/ubuntu/grubx64.efi
if [ "$root" != "" ]; then
set label="Ubuntu"
set chain="chainloader /EFI/ubuntu/grubx64.efi"
fi
fi
if [ "$root" == "" ]; then
search --file --set root /EFI/Part-01-02/Boot/ogloader.efi
if [ "$root" != "" ]; then
set label="Part-01-02"
set chain="chainloader /EFI/Part-01-02/Boot/ogloader.efi"
fi
fi
if [ "$root" == "" ]; then
search --file --set root /EFI/Part-01-03/Boot/ogloader.efi
if [ "$root" != "" ]; then
set label="Part-01-03"
set chain="chainloader /EFI/Part-01-03/Boot/ogloader.efi"
fi
fi
# Timeout
if [ "$root" != "" ]; then
set timeout=5
set label="OpenGnsys ha detectado: $label"
else
# para evitar mensajes de error.
set root="(hd0,gpt1)"
fi
menuentry "$label" {
eval "$chain"
}
|