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 / startup / common / arch.sh next >
Text File  |  2006-11-29  |  773b  |  26 lines

  1. #================
  2. # FILE          : arch.sh
  3. #----------------
  4. # PROJECT       : YaST (Yet another Setup Tool v2)
  5. # COPYRIGHT     : (c) 2004 SUSE Linux AG, Germany. All rights reserved
  6. #               :
  7. # AUTHORS       : Marcus Schaefer <ms@suse.de> 
  8. #               :
  9. #               :
  10. # BELONGS TO    : System installation and Administration
  11. #               :
  12. # DESCRIPTION   : Common used functions used for the YaST2 startup process
  13. #               : refering to architecture issues
  14. #               :
  15. # STATUS        : $Id: arch.sh 19738 2004-10-05 14:14:26Z ms $
  16. #----------------
  17. #
  18. #----[ is_iseries ]-----#
  19. function is_iseries () {
  20. #--------------------------------------------------
  21. # check if CPU is a PPC iseries component
  22. # ---
  23.     grep -iq iseries /proc/cpuinfo
  24. }
  25.  
  26.