Changeset 1802 in MondoRescue
- Timestamp:
- Nov 15, 2007, 4:00:47 PM (17 years ago)
- Location:
- branches/2.2.5/mindi
- Files:
-
- 1 deleted
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2.2.5/mindi/deplist.txt
r1793 r1802 50 50 /usr/share/misc/file/magic /usr/share/file/magic 51 51 52 # For swap uuid support and probably then more in the future52 # For swap uuid support, ia64 and probably then more in the future 53 53 /usr/bin/perl 54 54 -
branches/2.2.5/mindi/install.sh
r1801 r1802 96 96 (cd $local/sbin && ln -sf parted2fdisk.pl parted2fdisk) 97 97 install -s -m 755 $local/sbin/parted2fdisk.pl $locallib/mindi/rootfs/sbin/parted2fdisk 98 # Try to avoid the need ot additional perl modules at the moment 99 perl -pi -e 's/use strict;//' $locallib/mindi/rootfs/sbin/parted2fdisk 98 100 else 99 101 # FHS requires fdisk under /sbin -
branches/2.2.5/mindi/rootfs/sbin/init
r1800 r1802 531 531 } 532 532 533 ModprobeAllModules() { 534 535 for m in *.ko; do 536 j=`echo $m | sed 's/\.ko$//'` 537 if [ -e $j ]; then 538 modprobe -q $j 539 fi 540 done 541 } 533 542 534 543 ExtractDataDisksAndLoadModules() { … … 537 546 # Keep the kernel silent again 538 547 PKLVL=`cut -f1 /proc/sys/kernel/printk` 548 echo 0 > /proc/sys/kernel/printk 539 549 if [ ! -e "/tmp/USE-UDEV" ] ; then 540 550 echo "Inserting modules ..." 541 echo 0 > /proc/sys/kernel/printk542 551 insert-all-my-modules >> $LOGFILE 2>> $LOGFILE 543 552 else 544 for m in *.ko; do 545 j=`echo $m | sed 's/\.ko$//'` 546 modprobe -q $j 547 done 553 ModprobeAllModules 548 554 fi 549 555 echo $PKLVL > /proc/sys/kernel/printk … … 596 602 InsertEssentialModules 597 603 else 598 for m in *.ko; do 599 j=`echo $m | sed 's/\.ko$//'` 600 modprobe -q $j 601 done 604 ModprobeAllModules 602 605 fi 603 606 echo $PKLVL > /proc/sys/kernel/printk
Note:
See TracChangeset
for help on using the changeset viewer.