From 694e020fc52d48875150c7c0ebdabf3a18c622d9 Mon Sep 17 00:00:00 2001 From: crowetic <5431064+crowetic@users.noreply.github.com> Date: Fri, 18 Mar 2022 16:38:30 -0700 Subject: [PATCH] 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. --- titan-fixes.sh | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 titan-fixes.sh diff --git a/titan-fixes.sh b/titan-fixes.sh new file mode 100644 index 0000000..d48ca16 --- /dev/null +++ b/titan-fixes.sh @@ -0,0 +1,29 @@ +#!/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 +