Changeset 3402 in MondoRescue
- Timestamp:
- Aug 5, 2015, 7:44:14 AM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/3.2/mindi/mindi
r3399 r3402 1874 1874 fi 1875 1875 # EFI or UEFI 1876 # BCO names are hard-coded for now 1876 1877 if [ $BOOT_TYPE = "UEFI" ]; then 1877 1878 # UEFI 1878 1879 lilodir=$mountpoint/EFI 1879 1880 mkdir -p $lilodir 1880 liloconf= $lilodir/BOOTX64.conf1881 lilobin= BOOTX64.efi1881 liloconf="$lilodir/grub.conf" 1882 lilobin="grub.efi" 1882 1883 1883 1884 MakeBootConfFile grub > $liloconf … … 1886 1887 lilodir=$mountpoint 1887 1888 mkdir -p $lilodir 1888 liloconf= $mountpoint/elilo.conf1889 lilobin= elilo.efi1889 liloconf="$mountpoint/elilo.conf" 1890 lilobin="elilo.efi" 1890 1891 1891 1892 MakeBootConfFile elilo > $liloconf … … 1903 1904 mountefi=1 1904 1905 fi 1905 el=`find /boot/efi - name $lilobin`1906 el=`find /boot/efi -iname $lilobin` 1906 1907 cp $el $lilodir 1907 cp $liloconf $lilodir1908 1908 if [ $mountefi -eq 1 ]; then 1909 1909 umount /boot/efi 2>&1 > /dev/null … … 1977 1977 fi 1978 1978 [ "$imagefile" != "" ] && rm -f $imagefile 1979 [ "$retval" -ne "0" ] && LogAll "ERROR: PrepareBootDiskImage() is returning nonzero"1979 [ "$retval" -ne "0" ] && LogAll "ERROR: PrepareBootDiskImage() is returning $retval" 1980 1980 return $retval 1981 1981 }
Note:
See TracChangeset
for help on using the changeset viewer.