wok-6.x view slitaz-eeepc/stuff/eeepc.sh @ rev 8384
Up: ocsinventory ocsinventory-server ocsreports(1.3.3)
author | Eric Joseph-Alexandre <erjo@slitaz.org> |
---|---|
date | Fri Feb 04 17:06:43 2011 +0100 (2011-02-04) |
parents | 10d656b138ba |
children |
line source
1 #!/bin/sh
2 #
3 # /etc/init.d/eeepc.sh: Script used at boot time to setup screen
4 # resolution and configure hardware with tazeee on the EeePC.
5 #
7 # Setup is run only once.
8 if [ ! -s /etc/eeepc.conf ]; then
9 /sbin/tazeee setup
10 fi
12 . /etc/eeepc.conf
14 # 915resolution screen hack.
15 [ -n "$HACK_915" ] && 915resolution $HACK_915
17 # Enable Kernel Laptop mode.
18 echo "5" > /proc/sys/vm/laptop_mode
20 exit 0