#!/bin/sh
log "Starting S05-config..."
log "======================"

#=============================================
# 8) provide configuration files
#---------------------------------------------
log "\tNo configuration files needs to be provided..."

#=============================================
# 8.1) setup virtual console
#---------------------------------------------
# ---- DISABLED: S390 console check ----
# . /usr/lib/YaST2/startup/arch/s390/console.sh
# BEG S390: check if initviocons needs to be called
# s390_check_need_initviocons
# END S390:

if ! skip_initviocons ; then
	eval `/bin/initviocons -e`

	#export TERM only, initviocons takes care about
        #LINES and COLUMNS automatically (#184179)
	export TERM
	log "\tSetup virtual console:"
	log "\tLines:   $LINES"
	log "\tColumns: $COLUMNS"
	log "\tType:    $TERM"
fi
