Changeset 2592 in MondoRescue


Ignore:
Timestamp:
Mar 11, 2010, 2:56:03 AM (14 years ago)
Author:
Bruno Cornec
Message:

r3724@localhost: bruno | 2010-03-10 00:46:58 +0100

  • Remove more busyboix references
  • Avoid some actions when called standalone
Location:
branches/2.2.10
Files:
4 edited

Legend:

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

    r2591 r2592  
    9090/sbin/MAKEDEV
    9191/etc/init.d/functions
     92/etc/services
    9293/sbin/devfsd
    9394/etc/udev
     
    102103/sbin/udevstart
    103104/sbin/create_static_dev_nodes
    104 /etc/init.d/functions
    105105/etc/sysconfig/udev
    106106/sbin/consoletype
  • branches/2.2.10/mindi/rootfs/sbin/init

    r2591 r2592  
    618618    echo "********************************************************************"
    619619    echo "MINDI-LINUX by Mondo Dev Team - web site: http://www.mondorescue.org"
    620     echo "Boot disk based on AlfaLinux & Trinux. BusyBox by Erik Andersen."
    621620which petris > /dev/null 2> /dev/null && echo "Petris was written by Peter Seidler <p.seidler@mail1.stofanet.dk>."
    622621    echo "Executables and source code are covered by the GNU GPL. No warranty."
     
    792791    ExtractDataDisksAndLoadModules
    793792else
    794     HandleCDROM
     793    if [ -f "$MINDI_CACHE/mondorestore.cfg" ] ; then
     794        HandleCDROM
     795    fi
    795796    ExtractDataDisksAndLoadModules
    796797    # We need to get here exported variables from start-netfs
     
    827828    [ "$res" != "1" ] && [ "$res" != "" ] && Die "This is CD #$res in the series. Please insert CD #1."
    828829    [ -e "/cdrom.lnk" ] && mv -f /cdrom.lnk /dev/cdrom && mount /dev/cdrom /mnt/cdrom && CD_MOUNTED_OK=yes
    829     [ "$CD_MOUNTED_OK" != "yes" ] && TryAgainToFindCD
    830     #mount | grep cdrom > /dev/null 2> /dev/null || mount /dev/cdrom /mnt/cdrom >> $LOGFILE 2>> $LOGFILE
     830    [ "$CD_MOUNTED_OK" != "yes" ] && [ -f $MINDI_CACHE/mondorestore.cfg ] && TryAgainToFindCD
    831831fi
    832832hack-cfg-if-necessary || LogIt "Cannot find hack-cfg-if-necessary"
  • branches/2.2.10/mindi/rootfs/sbin/install-additional-tools

    r2508 r2592  
    4949    cd $mountdir
    5050    counter=0
    51     for fname in `tar -zxvf $tarball` ; do
    52      counter=$(($counter+1))
    53         [ "$(($counter % 4))" -eq "0" ] && echo -en "\r\t\t\t\t\t\t\t\\"
    54         [ "$(($counter % 4))" -eq "1" ] && echo -en "\r\t\t\t\t\t\t\t|"
    55         [ "$(($counter % 4))" -eq "2" ] && echo -en "\r\t\t\t\t\t\t\t/"
    56         [ "$(($counter % 4))" -eq "3" ] && echo -en "\r\t\t\t\t\t\t\t-"
    57     done
     51    if [ -f $tarball ]; then
     52        for fname in `tar -zxvf $tarball` ; do
     53            counter=$(($counter+1))
     54            [ "$(($counter % 4))" -eq "0" ] && echo -en "\r\t\t\t\t\t\t\t\\"
     55            [ "$(($counter % 4))" -eq "1" ] && echo -en "\r\t\t\t\t\t\t\t|"
     56            [ "$(($counter % 4))" -eq "2" ] && echo -en "\r\t\t\t\t\t\t\t/"
     57            [ "$(($counter % 4))" -eq "3" ] && echo -en "\r\t\t\t\t\t\t\t-"
     58        done
     59    fi
    5860    cd $old_pwd
    5961    echo -e -n "\r"
  • branches/2.2.10/website/downloads.shtml

    r2569 r2592  
    8383<li><b><a href="">gzip</a></b>: the most standard compressor used by Mondo Rescue</li>
    8484<li><b><a href="">mkisofs</a></b>: the tool to create ISO images</li>
    85 <li><b><a href="ftp://ftp.mondorescue.org/src">mindi-busybox</a></b>: the swiss army knife <a href="http://www.busybox.net">busybox</a> configured for mindi: a full set of commands in a single binary (embedded)</li>
    8685<li><b><a href="ftp://ftp.mondorescue.org/src">mindi</a></b>: the mini-distro builder part of the project</li>
    8786<li><b><a href="ftp://ftp.mondorescue.org/src">mondo</a></b>: the disaster recovery tool itself</li>
Note: See TracChangeset for help on using the changeset viewer.