kumquat-buildroot/package/sunxi-mali/S80mali
Spenser Gilliland 45b7846b78 sunxi-mali: new package
[Thomas: remove trailing whitespace, install libraries with execution
permissions so that they get stripped by Buildroot, r2p4 is only
available on EABI toolchains, r3p0 on EABIhf toolchains.]

Signed-off-by: Spenser Gilliland <spenser@gillilanding.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
2013-07-28 17:08:09 +02:00

55 lines
821 B
Bash

#!/bin/sh -e
install_driver() {
DRIVER=$1
OPTS=$2
modprobe $DRIVER $OPTS
maj=$(awk "$$2==\"${DRIVER}\" { print $$1; }" /proc/devices)
rm -f /dev/${DRIVER}
mknod /dev/${DRIVER} c $maj 0
chmod 600 /dev/${DRIVER}
}
start() {
echo "mali: starting driver"
BITSPERPIXEL="$(fbset | awk '/geom/ {print $6}')"
YRES="$(fbset | awk '/geom/ {print $3}')"
# Set RGBA ordering to something the drivers like
if [ "$BITSPERPIXEL" = "32" ] ; then
fbset -rgba 8/16,8/8,8/0,8/24
fi
# Try to enable triple buffering when there's enough VRAM
fbset -vyres $(( YRES*3 ))
install_driver mali
install_driver ump
}
stop() {
echo "mali: stopping driver"
rmmod ump
rmmod mali
}
case "$1" in
start)
start
;;
stop)
stop
;;
restart)
stop
start
;;
*)
echo "mali: Please use start, stop, or restart."
exit 1
;;
esac