This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
HDMI_RESOLUTION=5 #720p | |
cd /sys/kernel/debug/dispdbg | |
echo disp0 > name; echo switch1 > command; echo 4 $HDMI_RESOLUTION 0 0 0x4 0x101 0 0 0 8 > param; echo 1 > start; | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
disabled_pks="$(pm list packages -d | sed 's/package://')" | |
for pkg in $disabled_pks | |
do | |
echo "----- $pkg -----" | |
pm uninstall "$pkg" &> /dev/null | |
echo "- UNINSTALLED UPDATES" | |
pm disable-user "$pkg" &> /dev/null | |
echo "- DISABLED AGAIN" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# User tunables | |
# Number of cores in the system | |
coreno=8 | |
# Cores in the big cluster | |
bigcluster=4 | |
# Cores in the little cluster |