QORTector-scripts/titan-fixes.sh
crowetic 694e020fc5
script to fix titan image sound+bt, updates.
This script is to make fixes to the previously released titan images that didn't have audio or bluetooth functionality. This script will also provide the system updates for the users.
2022-03-18 16:38:30 -07:00

30 lines
671 B
Bash

#!/bin/sh
echo ...downloading config changes...
wget https://raw.githubusercontent.com/crowetic/QORTector-scripts/main/cmdline.txt
wget https://raw.githubusercontent.com/crowetic/QORTector-scripts/main/config.txt
echo ...copying config changes...
sudo mv config.txt /boot && sudo mv cmdline.txt /boot
echo ...doing system updates...
sudo apt update && sudo apt -y upgrade
echo ...installing bluetooth packages...
sudo apt -y install bluemon bluez bluez-tools libpam-blue pi-bluetooth bluez-firmware bluetooth
echo ...installing mesa GPU packages...
sudo apt -y install mesa libgles2-mesa libgles2-mesa-dev xorg-dev
echo ...restarting system...
sudo reboot