pmaports/device/testing/device-ouya-ouya/initfs-hook.sh
Oliver Smith 64035ac463
device/*: move to device/testing/* (!1063)
Prepare for better device categorization by moving everything to testing
subdir first.

[skip-ci]: chicken-egg problem: passing pmaports CI depends on pmbootstrap MR
				depends on this MR

Related: postmarketos#16
2020-03-14 08:35:32 +01:00

16 lines
442 B
Bash

#!/bin/sh
# downstream kernel
# fix display for xorg
if [ -d /sys/devices/tegradc.0 ]; then
echo 0 > /sys/class/graphics/fb0/blank
echo 16 > /sys/devices/tegradc.0/graphics/fb0/bits_per_pixel
echo 0 0 > /sys/class/graphics/fb0/pan
fi
# mainline kernel
# set cooling governor that is meant for simple on/off cooling fans
if [ -d /sys/class/thermal/thermal_zone0 ]; then
echo "bang_bang" | tee /sys/class/thermal/thermal_zone0/policy
fi