mirror of
https://github.com/JasonN3/build-container-installer.git
synced 2025-12-25 19:07:54 +01:00
fix: Ignore Valve Steam Deck hardware due to using EFI but having no keys enrolled by default and add extra boot parameters (#33)
* fix: Ignore Valve Steam Deck hardware due to using EFI but having no keys enrolled by default. * fix: add extra boot parameters to fix steam deck resolution issue --------- Co-authored-by: Noel Miller <noelmiller@protonmail.com>
This commit is contained in:
parent
bdbcfde826
commit
ff58b2d122
3 changed files with 25 additions and 0 deletions
|
|
@ -5,6 +5,12 @@ set -oue pipefail
|
|||
readonly SECUREBOOT_KEY="/run/install/repo/ublue-os-akmods-public-key.der"
|
||||
readonly ENROLLMENT_PASSWORD="ublue-os"
|
||||
|
||||
SYS_ID="$(cat /sys/devices/virtual/dmi/id/product_name)"
|
||||
if [[ ":Jupiter:Galileo:" =~ ":$SYS_ID:" ]]; then
|
||||
echo "Steam Deck hardware detected. Skipping key enrollment."
|
||||
exit 0
|
||||
fi
|
||||
|
||||
if [[ ! -d "/sys/firmware/efi" ]]; then
|
||||
echo "EFI mode not detected. Skipping key enrollment."
|
||||
exit 0
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue