Magellan Linux

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 2646 - (hide annotations) (download) (as text)
Wed Jul 2 11:28:56 2014 UTC (9 years, 11 months ago) by niro
File MIME type: application/x-sh
File size: 366 byte(s)
tagged 'installer-simple-0_4_90_20140701_1'
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