Skip to content

Commit

Permalink
feat(deck): Auto-disable bios updates for 32GB RAM decks.
Browse files Browse the repository at this point in the history
  • Loading branch information
KyleGospo committed Nov 23, 2023
1 parent 6c23359 commit d1c6022
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions system_files/desktop/shared/usr/bin/bazzite-hardware-setup
Expand Up @@ -122,6 +122,9 @@ if [[ $IMAGE_NAME =~ "deck" || $IMAGE_NAME =~ "ally" || $IMAGE_NAME =~ "framegam
if [[ "${RESOLUTION}" = "1200,1920" ]]; then
echo "Jupiter with DeckHD detected, disabling BIOS updates..."
systemctl disable --now jupiter-biosupdate.service
elif [[ "$(awk '/MemTotal/{print $(NF-1)}' /proc/meminfo)" == "31664740" ]]; then
echo "Jupiter with 32GB RAM detected, disabling BIOS updates..."
systemctl disable --now jupiter-biosupdate.service
else
echo "Jupiter hardware detected, skipping further setup..."
fi
Expand Down

0 comments on commit d1c6022

Please sign in to comment.