Hello,
I'd like to have an update on the 915resolution package, with a replaced script for tce.installed. The one that's there now switches the resolution to a hardcoded 1024x600 with is suitable for most netbooks, but it won't work with any other resolution. So, how about reading the resolution from the "xvesa="-bootparameter?
Here's my suggestion for an improved /usr/local/tce.installed/915resolution :
#!/bin/sh
. /etc/init.d/tc-functions
xvesa="$(getbootparam xvesa | tr x ' ')"
if [ -n "${xvesa}" ]; then
/usr/local/sbin/915resolution 50 ${xvesa}
fi