Changeset 3324 in MondoRescue
- Timestamp:
- Dec 2, 2014, 1:15:04 PM (10 years ago)
- Location:
- branches/3.2/mindi
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/3.2/mindi/mindi
r3323 r3324 2676 2676 done 2677 2677 2678 # Ensure that with mindi-busybox 1.21, busybox also exists under /bin 2679 if [ ! -e $mountpoint/bin/busybox ]; then 2680 (cd $mountpoint/bin ; ln -sf ../usr/bin/busybox .) 2681 fi 2682 2678 2683 # Copy an additional ProLiant tool for OBDR support 2679 2684 if [ -f $MINDI_TMP/OBDR ]; then … … 2757 2762 cd "$mountpoint" 2758 2763 # kernel expects init in cpio filesystem 2759 ln -sf sbin/init init2764 ln -sf usr/sbin/init init 2760 2765 # create cpio image file and unmount loop filesystem 2761 2766 find . -print | cpio -o -H newc | gzip -9 > $rdz_fname 2> /dev/null -
branches/3.2/mindi/rootfs/etc/init.d/rcS
r3310 r3324 966 966 if [ "`grep -i pxe /proc/cmdline`" ] || [ "`grep -i net /proc/cmdline`" ]; then 967 967 # We need to get here exported variables from start-netfs 968 . / sbin/start-netfs968 . /usr/sbin/start-netfs 969 969 fi 970 970 … … 980 980 sed -i "s/backup-media-type.*/backup-media-type netfs/" /tmp/mondorestore.cfg 981 981 elif [ "`grep -i usb= /proc/cmdline`" ] || [ "`grep -i usb /tmp/mondorestore.cfg 2>/dev/null | grep media-type`" ]; then 982 . / sbin/start-usb982 . /usr/sbin/start-usb 983 983 984 984 # Simulate a local CD … … 989 989 HandleCDROM 990 990 ExtractDataDisksAndLoadModules 991 # We need to get here exported variables from start-netfs992 . /sbin/start-netfs993 991 fi 994 992 res=$?
Note:
See TracChangeset
for help on using the changeset viewer.