Magellan Linux

Annotation of /tags/installer-simple-0_4_90_20140108_2/functions/bootloader.sh

Parent Directory Parent Directory | Revision Log Revision Log


Revision 2503 - (hide annotations) (download) (as text)
Wed Jan 8 13:21:47 2014 UTC (10 years, 5 months ago) by niro
File MIME type: application/x-sh
File size: 366 byte(s)
tagged 'installer-simple-0_4_90_20140108_2'
1 niro 2428 # select a supported bootloader
2    
3     # prefer grub2
4     if [[ ${DEFAULT_BOOTLOADER} = grub2 ]] || [ -x ${INSTALLROOT}/usr/sbin/grub-mkconfig ]
5     then
6     echo "Using grub2" >&2
7     source ${INSTALLER_LIBDIR}/functions/grub2.sh
8     fi
9    
10     if [[ ${DEFAULT_BOOTLOADER} = grub ]] || [ -x ${INSTALLROOT}/sbin/grub ]
11     then
12     echo "Using grub1" >&2
13     source ${INSTALLER_LIBDIR}/functions/grub.sh
14     fi