Changeset 3281 in MondoRescue


Ignore:
Timestamp:
Apr 30, 2014, 7:58:11 PM (10 years ago)
Author:
Bruno Cornec
Message:
  • /usr/sbin/dmeventd is now needed by systemd for dm dev creation (seen with LVM)
  • Keyboard detection needs to be done after MRCFG creation
  • Avoids error msgs in grub detection (when grub2 is in fact used)
Location:
branches/3.2
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • branches/3.2/mindi/deplist.d/udev.conf

    r3274 r3281  
    1717/etc/udev
    1818/etc/hotplug.d
     19
     20/usr/sbin/dmeventd
    1921
    2022# On ArchLinux
  • branches/3.2/mindi/mindi

    r3278 r3281  
    17291729        if [ "$CDRECOVERY" != "yes" ] ; then
    17301730            if [ -e "$MINDI_TMP/NETFS-SERVER-MOUNT" ] ; then
    1731                 echo -en "Press <enter> for network restore\n"
     1731                echo -en "Press <0eenter07> for 0cnetwork restore07\n"
    17321732                echo -en "$BOOT_MEDIA_MESSAGE"
    17331733            elif [ ! "$MINDI_TMP" ] ; then
     
    20932093        Die "You have $res files present in dependency list\nbut absent from filesystem."
    20942094    fi
    2095     FindAndAddUserKeyboardMappingFile
    20962095    mkdir -p $bigdir/tmp
    20972096    if [ _"$MONDO_SHARE" != _"" ]; then
     
    21002099        cp -f $MINDI_TMP/$MRCFG $bigdir/tmp &> /dev/null
    21012100    fi
     2101
     2102    # Needs to be done after the MRCFG creation
     2103    FindAndAddUserKeyboardMappingFile
     2104
    21022105    [ -d "/mnt/.boot.d" ] && echo "GENTOO" > $bigdir/tmp/DUMBASS-GENTOO
    21032106    DropOptimizedLibraries $needlist $bigdir
  • branches/3.2/mondo/src/common/libmondo-archive.c

    r3280 r3281  
    683683            fatal_error("The de facto standard location for your boot loader's config file is /boot/grub/menu.lst, /boot/grub/grub.cfg, or /boot/grub2/grub.cfg but I cannot find it there. What is wrong with your Linux distribution?");
    684684        }
    685         mr_asprintf(bootldr_ver, "%s", call_program_and_get_last_line_of_output("grub --version"));
     685        mr_asprintf(bootldr_ver, "%s", call_program_and_get_last_line_of_output("grub --version 2> /dev/null"));
    686686        if (strcmp(bootldr_ver,"") ==0) {
    687687            mr_free(bootldr_ver);
Note: See TracChangeset for help on using the changeset viewer.