Pull in latest driver changes, including XREAL Air 2 Pro support

This commit is contained in:
wheaney 2023-11-30 15:50:51 -08:00
parent dcbf2ed56c
commit bced2de109
3 changed files with 11 additions and 3 deletions

View File

@ -12,6 +12,8 @@ if [ "$(id -u)" != "0" ]; then
exit 1
fi
start_dir=$(pwd)
# create temp directory
tmp_dir=$(mktemp -d -t breezy-vulkan-XXXXXXXXXX)
pushd $tmp_dir > /dev/null
@ -23,7 +25,13 @@ then
echo "Downloading latest release to: ${tmp_dir}/breezyVulkan.tar.gz"
curl -L -O https://github.com/wheaney/breezy-desktop/releases/latest/download/breezyVulkan.tar.gz
else
cp $1 $tmp_dir
if [[ "$1" = /* ]]; then
abs_path="$1"
else
# Convert relative path to absolute path
abs_path=$(realpath "$start_dir/$1")
fi
cp $abs_path $tmp_dir
fi
echo "Extracting to: ${tmp_dir}/breezy_vulkan"

@ -1 +1 @@
Subproject commit f6f1de2a8c0fd19683c1261fae74852a63029b66
Subproject commit 8120883e43e30e40196e2e842323bff01e4275c2

@ -1 +1 @@
Subproject commit 225c79547727e40ade4631e00b1298a89ff0f5b5
Subproject commit 6ca037df0b881156120f54f99a50f9d4e55c65ec