Add XServer fallback settings for unknown machine

git-svn-id: https://svn.o-hand.com/repos/poky/trunk@786 311d38ba-8fff-0310-9ca6-ca027cbcb966
This commit is contained in:
Matthew Allum 2006-10-03 10:39:24 +00:00
parent 0be2426abf
commit 6553a20a49
2 changed files with 16 additions and 1 deletions

View File

@ -18,6 +18,14 @@ fi
. /etc/profile
fallback_screen_arg() {
geom=`fbset | grep geometry`
w=`echo $geom | awk '{ print $2 }'`
h=`echo $geom | awk '{ print $3 }'`
b=`echo $geom | awk '{ print $6 }'`
echo -n "${w}x${h}x${b}"
}
module_id() {
## used to read from assets, but sometimes assets is corrupted
# grep "Module ID" /proc/hal/assets | sed "s/.*://"
@ -75,6 +83,13 @@ case `module_id` in
modprobe mbxfb
ARGS="$ARGS -fb /dev/fb1"
;;
*)
# Its a device we dont know about - in which case force
# kdrive to use the current framebuffer geometry otherwise
# it will defualt to trying to achieve 1024x768
S=`fallback_screen_arg`
ARGS="$ARGS -screen $S"
;;
esac
DISPLAY=':0'

View File

@ -2,7 +2,7 @@ DESCRIPTION = "Common X11 scripts"
LICENSE = "GPL"
SECTION = "x11"
RDEPENDS_${PN} = "xmodmap libxrandr xdpyinfo xtscal xinit"
PR = "r8"
PR = "r9"
SRC_URI = "file://etc"
S = ${WORKDIR}