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 / arch / s390 / console.sh
Linux/UNIX/POSIX Shell Script  |  2006-11-29  |  279b  |  15 lines

  1. #!/bin/sh
  2.  
  3. function s390_check_need_initvicons () {
  4.     [ -n "$HOSTTYPE" ] || HOSTTYPE=$(arch)
  5.     if [ "$HOSTTYPE" = "s390" ];then
  6.         export NEED_INITVICONS="no"
  7.         return
  8.     fi
  9.     if [ "$HOSTTYPE" = "s390x" ];then
  10.         export NEED_INITVICONS="no"
  11.         return
  12.     fi
  13.     export NEED_INITVICONS="yes"
  14. }
  15.