Changeset 3156 in MondoRescue for branches/3.0


Ignore:
Timestamp:
Jun 24, 2013, 7:18:38 AM (11 years ago)
Author:
Bruno Cornec
Message:
  • Force /bin/kmod for Debian 7, even if not mandatory anymore with the following mindi change
  • When finding a softlink in LocateDeps, analyze the target, instead of skipping it expecting the target to be already in the list of files. On Debian 7, the /sbin/kmod is now a link to /bin/kmod which wasn't part of the list, thus creating issues at boot time (some dyn. libs not found)
Location:
branches/3.0/mindi
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/3.0/mindi/deplist.d/minimal.conf

    r3151 r3156  
    122122/etc/conf.modules
    123123/etc/modules.conf.local
     124# Debian 7
     125/bin/kmod
    124126
    125127# For mdadm
  • branches/3.0/mindi/mindi

    r3154 r3156  
    878878            fi
    879879        elif [ -h "$fname" ] && [ -x "$fname" ] ; then
    880             LogFile "INFO: $fname is softlink"
     880            newf=`readlink -f $fname`
     881            LogFile "INFO: $fname is softlink to $newf which deps will be analyzed"
     882            ldd $newf 2> /dev/null | ProcessLDD
    881883        else
    882884            ldd $fname 2> /dev/null | ProcessLDD
Note: See TracChangeset for help on using the changeset viewer.