mirror of
https://github.com/ublue-os/bazzite.git
synced 2025-03-13 07:14:23 +00:00
Merge branch 'main' into testing
This commit is contained in:
commit
1a18dc27ad
@ -290,6 +290,7 @@ RUN rpm-ostree install \
|
||||
compsize \
|
||||
input-remapper \
|
||||
system76-scheduler \
|
||||
ryzenadj \
|
||||
powertop \
|
||||
i2c-tools \
|
||||
udica \
|
||||
@ -694,7 +695,6 @@ RUN rpm-ostree install \
|
||||
vpower \
|
||||
ds-inhibit \
|
||||
steam_notif_daemon \
|
||||
ryzenadj \
|
||||
sdgyrodsu \
|
||||
ibus-pinyin \
|
||||
ibus-table-chinese-cangjie \
|
||||
|
@ -7,7 +7,7 @@ IMAGE_FLAVOR=$(jq -r '."image-flavor"' < $IMAGE_INFO)
|
||||
FEDORA_VERSION=$(jq -r '."fedora-version"' < $IMAGE_INFO)
|
||||
|
||||
# SCRIPT VERSION
|
||||
HWS_VER=40
|
||||
HWS_VER=41
|
||||
HWS_VER_FILE="/etc/bazzite/hws_version"
|
||||
HWS_VER_RAN=$(cat $HWS_VER_FILE)
|
||||
|
||||
@ -59,7 +59,12 @@ if [[ $IMAGE_NAME =~ "deck" && ":AOKZOE A1 AR07:" =~ ":$SYS_ID:" ]]; then
|
||||
fi
|
||||
|
||||
if [[ ":Framework:" =~ ":$VEN_ID:" ]]; then
|
||||
if [[ "GenuineIntel" == "$CPU_VENDOR" ]]; then
|
||||
if [[ "AuthenticAMD" == "$CPU_VENDOR" ]]; then
|
||||
if [[ ! $KARGS =~ "iomem" ]]; then
|
||||
echo "AMD Framework Laptop detected, adding needed kargs for ryzenadj"
|
||||
NEEDED_KARGS+=("--append-if-missing=iomem=relaxed")
|
||||
fi
|
||||
elif [[ "GenuineIntel" == "$CPU_VENDOR" ]]; then
|
||||
if [[ ! $KARGS =~ "hid_sensor_hub" ]]; then
|
||||
echo "Intel Framework Laptop detected, applying needed keyboard fix"
|
||||
NEEDED_KARGS+=("--append-if-missing=module_blacklist=hid_sensor_hub");
|
||||
|
Loading…
x
Reference in New Issue
Block a user