home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / boot / i386 / root / usr / lib / YaST2 / bin / domilo < prev    next >
Text File  |  2006-11-29  |  311b  |  11 lines

  1. #!/bin/bash
  2. # Compute MILO bootloader on Alpha...
  3. # CD1/milo/boot.conf must be in file $2
  4.  
  5. SYSTYPE=`cat /proc/cpuinfo  | grep "system type" | colrm 1 26`
  6. SYSVAR=`cat /proc/cpuinfo  | grep "system variation" | colrm 1 26`
  7.  
  8. MILO=`cat $2 | grep "$SYSTYPE:$SYSVAR" | cut -f 3 -d :` 
  9.  
  10. /bin/cp /usr/lib/$MILO/* /boot
  11.