From 3ddf4dc9bc79be1c0aafc94ae2dfd963826eff98 Mon Sep 17 00:00:00 2001 From: Kyle Gospodnetich Date: Tue, 4 Feb 2025 13:35:30 -0800 Subject: [PATCH] feat: Use scx-scheds package from CachyOS copr --- Containerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Containerfile b/Containerfile index d7a8e59cb3..9dd5878117 100644 --- a/Containerfile +++ b/Containerfile @@ -129,8 +129,10 @@ RUN --mount=type=cache,dst=/var/cache/libdnf5 \ --mount=type=tmpfs,dst=/tmp \ /ctx/install-kernel-akmods && \ dnf5 -y config-manager setopt "*rpmfusion*".enabled=0 && \ + dnf5 -y copr enable bieszczaders/kernel-cachyos-addons && \ dnf5 -y install \ scx-scheds && \ + dnf5 -y copr disable bieszczaders/kernel-cachyos-addons && \ for toswap in rpm-ostree bootc; do \ dnf5 -y swap --repo copr:copr.fedorainfracloud.org:kylegospo:bazzite $toswap $toswap; \ done && unset -v toswap && \