Changeset 1721 in MondoRescue
- Timestamp:
- Oct 28, 2007, 5:00:12 PM (17 years ago)
- Location:
- branches/2.2.5/mindi
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2.2.5/mindi/mindi
r1720 r1721 1170 1170 1171 1171 echo -en "for outerloop in 1 2 3 4 5 ; do\necho -en \".\"\n" >> $outfile 1172 # BERLIOS: That code is duplicated - Should be done once only1173 1172 list_to_echo="$MODULES" 1174 1173 # Remove unwanted modules from list … … 1184 1183 infile="/etc/modules.conf" 1185 1184 fi 1185 1186 # Compute libata version 1187 laver=`modinfo libata | grep Version | cut -d: -f2 | cut -d. -f1` 1188 1186 1189 for module in $list_to_echo $EXTRA_MODS ; do 1190 # If libata v2 is used then remove ide-generic as it will perturbate boot 1191 if [ "$module" = "ide-generic" ] && [ `echo "$MODULES" | grep -q libata` ] && [ $laver -ge 2 ]; then 1192 continue 1193 fi 1187 1194 params=`sed -n "s/^options \\+$module \\+//p" $infile` 1188 1195 modpaths=`FindSpecificModuleInPath $searchpath $module` … … 1724 1731 echo -en "." 1725 1732 echo "Unmounting $USBDEVICE just in case" >> $LOGFILE 1726 umount $USBPART 2> &1>> $LOGFILE1733 umount $USBPART 2>> $LOGFILE 1>> $LOGFILE 1727 1734 echo "Erasing $USBDEVICE" >> $LOGFILE 1728 $FDISK $USBDEVICE 2> &1>> $LOGFILE << EOF1735 $FDISK $USBDEVICE 2>> $LOGFILE 1>> $LOGFILE << EOF 1729 1736 d 1730 1737 d … … 1797 1804 cd $old_pwd 1798 1805 echo -en "." 1806 umount $MINDI_TMP/usb 1799 1807 if [ "$ARCH" != "ia64" ] ; then 1800 umount $MINDI_TMP/usb1801 1808 syslinux $USBPART 2>> $MINDI_TMP/syslinux.log 1802 1809 if [ "$?" -ne "0" ] ; then … … 1811 1818 else 1812 1819 echo "No USB boot support for ia64" | tee -a $LOGFILE 1813 umount $MINDI_TMP/usb1814 1820 MindiExit -1 1815 1821 fi … … 2392 2398 incoming=`echo "$incoming" | awk '{if (match($1,/\//)) {print $1} else {if (match($3,/\//)) print $3} fi}'` 2393 2399 for f in $incoming ; do 2394 echo "$f `ReadAllLink $f`" 2400 echo "$f" 2401 echo "`ReadAllLink $f`" 2395 2402 done 2396 2403 read incoming … … 2771 2778 if [ -x /sbin/udevd ]; then 2772 2779 LocateDeps /sbin/udevd > $MINDI_TMP/udev.lis 2773 cp -a /sbin/udevd sbin 2780 cp --parents -Rdf /sbin/udevd `sort -u $MINDI_TMP/udev.lis` . 2781 rm -f $MINDI_TMP/udev.lis 2774 2782 else 2775 2783 echo "udevd daemon not in standard place (/sbin)" 2>&1 | tee -a $LOGFILE … … 2789 2797 2790 2798 cp --parents -Rdf /dev/fd0*[1,2][4,7,8]* . 2> /dev/null 2799 2800 # Handle the case where busybox is dynamically linked 2801 file $MINDI_LIB/rootfs/bin/busybox 2>&1 | grep -q "dynamically" 2802 if [ $? -eq 0 ]; then 2803 LocateDeps $MINDI_LIB/rootfs/bin/busybox > $MINDI_TMP/busy.lis 2804 cp --parents -Rdf `sort -u $MINDI_TMP/busy.lis` . 2805 rm -f $MINDI_TMP/busy.lis 2806 fi 2791 2807 cd $old_pwd 2792 2808 echo -en "..." -
branches/2.2.5/mindi/rootfs/etc/udev-links.conf
r1718 r1721 40 40 M nvidiactl c 195 255 41 41 42 # Addition for mindi 43 M tty1 c 104 1 44 M tty2 c 104 2 45 M tty3 c 104 3 46 M tty4 c 104 4 47 M tty5 c 104 5 48 M tty6 c 104 6 49 M tty7 c 104 7 50 M tty8 c 104 8 51 52 M null c 1 3
Note:
See TracChangeset
for help on using the changeset viewer.