Skip to content

Commit

Permalink
Merge branch 'testing' into unstable
Browse files Browse the repository at this point in the history
  • Loading branch information
KyleGospo committed Feb 3, 2025
2 parents 62ac942 + 439889e commit 9b65322
Show file tree
Hide file tree
Showing 5 changed files with 72 additions and 5 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ jobs:
is_latest_version: true
is_stable_version: true
kernel_flavor: bazzite # must match a kernel_flavor from akmods repo
kernel_version: 6.12.11-205.bazzite.fc41.x86_64 # must match a cached version of the above flavor
kernel_version: 6.12.11-206.bazzite.fc41.x86_64 # must match a cached version of the above flavor
exclude:
- base_name: bazzite
target_nvidia_flavor: nvidia
Expand Down Expand Up @@ -211,7 +211,7 @@ jobs:
sudo podman pull ${{ env.PULL_IMAGE_REGISTRY }}/akmods-${{ matrix.target_nvidia_flavor }}:${{ matrix.kernel_flavor}}-${{ matrix.fedora_version }}-${{ matrix.kernel_version }}
# Add rechunk as well to remove this source of failure
sudo podman pull ghcr.io/hhd-dev/rechunk:v1.1.2
sudo podman pull ghcr.io/hhd-dev/rechunk:v1.1.3
- name: Get source versions
id: labels
Expand Down Expand Up @@ -331,9 +331,9 @@ jobs:
# Reprocess raw-img using rechunker which will delete it
- name: Run Rechunker
id: rechunk
uses: hhd-dev/[email protected].2
uses: hhd-dev/[email protected].3
with:
rechunk: 'ghcr.io/hhd-dev/rechunk:v1.1.2'
rechunk: 'ghcr.io/hhd-dev/rechunk:v1.1.3'
ref: 'raw-img'
prev-ref: '${{ steps.generate-prev-ref.outputs.ref }}'
version: '${{ steps.generate-version.outputs.tag }}'
Expand Down
3 changes: 2 additions & 1 deletion Containerfile
Original file line number Diff line number Diff line change
Expand Up @@ -398,7 +398,8 @@ RUN --mount=type=cache,dst=/var/cache/libdnf5 \
gnome-shell-extension-caffeine \
rom-properties-gtk3 \
ibus-mozc \
openssh-askpass && \
openssh-askpass \
firewall-config && \
dnf5 -y remove \
gnome-classic-session \
gnome-tour \
Expand Down
14 changes: 14 additions & 0 deletions system_files/desktop/shared/etc/tuned/ppd.conf
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
[main]
# The default PPD profile
default=balanced
battery_detection=true

[profiles]
# PPD = TuneD
power-saver=powersave
balanced=balanced-bazzite
performance=throughput-performance-bazzite

[battery]
# PPD = TuneD
balanced=balanced-battery
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
#
# tuned configuration
#

[main]
summary = General non-specialized tuned profile with added Bazzite tweaks
include = balanced

[audio]
# See 17c869d
timeout=0

[sysctl]
# The swappiness parameter controls the tendency of the kernel to move
# processes out of physical memory and onto the swap disk.
# 0 tells the kernel to avoid swapping processes out of physical memory
# for as long as possible
# 100 tells the kernel to aggressively swap processes out of physical memory
# and move them to swap cache
vm.swappiness = 180

vm.watermark_boost_factor = 0
vm.watermark_scale_factor = 125
vm.dirty_bytes = 268435456
vm.dirty_background_bytes = 134217728
vm.page-cluster = 0
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
#
# tuned configuration
#

[main]
summary = General non-specialized tuned profile with added Bazzite tweaks
include = throughput-performance

[audio]
# See 17c869d
timeout=0

[sysctl]
# The swappiness parameter controls the tendency of the kernel to move
# processes out of physical memory and onto the swap disk.
# 0 tells the kernel to avoid swapping processes out of physical memory
# for as long as possible
# 100 tells the kernel to aggressively swap processes out of physical memory
# and move them to swap cache
vm.swappiness = 180

vm.watermark_boost_factor = 0
vm.watermark_scale_factor = 125
vm.dirty_bytes = 268435456
vm.dirty_background_bytes = 134217728
vm.page-cluster = 0

0 comments on commit 9b65322

Please sign in to comment.