Changeset 868 in MondoRescue


Ignore:
Timestamp:
Oct 3, 2006, 1:29:21 PM (18 years ago)
Author:
andree
Message:

Removed check for linker in wait-for-petris. It is too much of a moving
target and ensuring we don't start petris prematurely works without it.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/stable/mindi/rootfs/sbin/wait-for-petris

    r377 r868  
    66# Say what we are doing
    77echo -n "Waiting for petris"
    8 # Get the right linker for architecture
    9 arch=`uname -m`
    10 case $arch in
    11   'ia64')
    12     linker="/lib/ld-linux-ia64.so.2" ;;
    13   'x86_64')
    14     linker="/lib/ld-linux-x86-64.so.2" ;;
    15   *)
    16     # we only run on the above two and IA32, so this must be it
    17     linker="/lib/ld-linux.so.2" ;;
    18 esac
    19 # First wait for the libraries to become available...
    20 while   [ ! -f /lib/libncurses.so.5 -o ! -f /lib/libc.so.6 -o ! -f "$linker" ] ; do
     8# Wait for the libraries to become available...
     9while   [ ! -f /lib/libncurses.so.5 -o ! -f /lib/libc.so.6 ] ; do
    2110  echo -n "."
    2211  sleep 1
Note: See TracChangeset for help on using the changeset viewer.