summaryrefslogtreecommitdiffstats
path: root/server/tftpboot/grub/default
blob: 85342b49a6a54ff207e1a568e5b24670dc5f917a (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
# 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=''
echo "Searching rEFInd"
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
    echo "Searching Part-01-02"
    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
    echo "Searching Part-01-03"
    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

if [ "$root" == "" ]; then
    echo "Searching Microsoft"
    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
    echo "Searching Ubuntu"
    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
    set label="OpenGnsys ha detectado: $label"
else
    # para evitar mensajes de error.
    set root="(hd0,gpt1)"
fi

menuentry "$label" {
    eval "$chain"
}