source: client/shared/lib/os-probes/mounted/efi/10elilo @ 38788bf

webconsole3
Last change on this file since 38788bf was 1236d17, checked in by jm.bardallo <juanmanuel.bardallo@…>, 7 years ago

añadidos nuevamente los ficheros de opengnsys del branch devel, se habían quitado por error

  • Property mode set to 100644
File size: 413 bytes
Line 
1#!/bin/sh
2# Detects ELILO bootloader on a EFI System Partition
3
4. /usr/share/os-prober/common.sh
5
6efi="$1"
7
8found=
9
10elilo=`find $1 -name "elilo.efi"`
11if [ -n "$elilo" ]; then
12        bdir=`dirname $elilo`
13        bdir=`basename $bdir`
14        long="ELILO Boot Manager"
15        short="ELILO"
16        path=${bdir}/elilo.efi
17        found=true
18fi 
19
20if [ -n "$found" ]; then
21        label="$(count_next_label "$short")"
22        result "${path}:${long}:${label}"
23fi
24exit 0
Note: See TracBrowser for help on using the repository browser.