blob: a3b8733a5b16d642414ce6078ebac1f9b505be21 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
post_install() {
echo "---------------------------------------------------------------"
echo ":: tspi-linux-sdk"
echo " git clone https://github.com/CmST0us/tspi-linux-sdk.git"
echo ":: Add yourself to the uucp group to access the serial ports:"
echo " sudo gpasswd -aG \$USER uucp"
echo " sudo udevadm control --reload-rules"
echo ":: If adb fails to connect to the phone, add the current user to the adbusers group"
echo " sudo gpasswd -aG \$USER adbusers"
echo "---------------------------------------------------------------"
}
post_upgrade() {
post_install
}
|