Changeset 1786 in MondoRescue
- Timestamp:
- Nov 12, 2007, 4:28:35 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2.2.5/mindi/mindi
r1785 r1786 1708 1708 LogIt "Failed to create ISO image." 1709 1709 else 1710 echo "Created bootable ISO image at $CACHE_LOC/mindi.iso" >>$LOGFILE1710 echo "Created bootable ISO image at $CACHE_LOC/mindi.iso" | tee -a $LOGFILE 1711 1711 fi 1712 1712 rm -f $MINDI_TMP/mkisofs.log … … 1718 1718 local i old_pwd 1719 1719 if [ "$PROMPT_MAKE_USB_IMAGE" = "yes" ] && [ _"$MONDO_SHARE" = _"" ]; then 1720 echo "Shall I make a bootable USB image ? (y/[n]"1720 echo -n "Shall I make a bootable USB image ? (y/[n]) " 1721 1721 read i 1722 1722 [ "$i" != "y" ] && [ "$i" != "Y" ] && return 0 … … 2805 2805 mkdir -p tmp 2806 2806 [ -e "/dev/.devfsd" ] && echo "/dev/.devfsd found" > tmp/USE-DEVFS 2807 2808 # Handle the case where busybox is dynamically linked 2809 # Should be done first so that if /lib64 is a link, it's 2810 # created first like that, instead of as a real dir later on 2811 file $MINDI_LIB/rootfs/bin/busybox 2>&1 | grep -q "dynamically" 2812 if [ $? -eq 0 ]; then 2813 LocateDeps $MINDI_LIB/rootfs/bin/busybox > $MINDI_TMP/busy.lis 2814 cp --parents -Rdf `sort -u $MINDI_TMP/busy.lis` . 2815 rm -f $MINDI_TMP/busy.lis 2816 fi 2807 2817 2808 2818 # Management of udev (which includes modprobe in rules) … … 2838 2848 fi 2839 2849 fi 2850 2840 2851 # Management of potential HW info (Proliant only at the moment) 2841 2852 mindi-bkphw $CACHE_LOC $MINDI_CONF | tee -a $LOGFILE … … 2865 2876 cp --parents -Rdf /dev/fd0*[1,2][4,7,8]* . 2> /dev/null 2866 2877 2867 # Handle the case where busybox is dynamically linked2868 file $MINDI_LIB/rootfs/bin/busybox 2>&1 | grep -q "dynamically"2869 if [ $? -eq 0 ]; then2870 LocateDeps $MINDI_LIB/rootfs/bin/busybox > $MINDI_TMP/busy.lis2871 cp --parents -Rdf `sort -u $MINDI_TMP/busy.lis` .2872 rm -f $MINDI_TMP/busy.lis2873 fi2874 2878 cd $old_pwd 2875 2879 echo -en "..."
Note:
See TracChangeset
for help on using the changeset viewer.