summaryrefslogtreecommitdiffstats
path: root/server/tftpboot/grub/default
blob: 6c505de6a14045a40008e2ea808e59728670f2b4 (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
62
63
64
65
# 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=5

set detectado='no'
# Compruebo si existen distintos cargadores.
echo "Searching rEFInd"
search --file --set rootRefind /EFI/refind/shimx64.efi.signed
if [ "$rootRefind" != "" ]; then
    set detectado='si'
    menuentry "rEFInd" {
        root="$rootRefind"
        chainloader /EFI/refind/shimx64.efi.signed
}
fi

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 /EFI/Part-01-02/Boot/ogloader.efi
    }
fi

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 /EFI/Part-01-03/Boot/ogloader.efi
    }
fi

echo "Searching Microsoft"
search --file --set rootMS /EFI/Microsoft/Boot/bootmgfw.efi
if [ "$rootMS" != "" ]; then
    set detectado='si'
    menuentry "Microsoft" {
        root="$rootMS"
        chainloader /EFI/Microsoft/Boot/bootmgfw.efi
    }
fi

echo "Searching Ubuntu"
search --file --set rootUb /EFI/ubuntu/grubx64.efi
if [ "$rootUb" != "" ]; then
    set detectado='si'
    menuentry "Ubuntu"
        root="$rootUb"
        chainloader /EFI/ubuntu/grubx64.efi
    }
fi


# Si no hay ningún sistam operativo muestro mensaje.
if [ $detectado == 'no' ]; then
    menuentry "OpenGnsys no ha detectado ningún sistema operativo" {
        # para evitar mensajes de error.
        set root="(hd0,gpt1)"
    }
fi