
#!/bin/sh
#
# Antoine Garric 14-11-94
# SMCC France
#
# Place this in /etc/init.d for example in sxcmem to change resolution
# at boot time

for fb in /dev/fbs/cgfourteen*
do
	echo setting 1280x1024 resolution for $fb 
	/usr/kvm/cg14config -d $fb -r 1280x1024@66
	echo cg14config: status $?
done

#
