From 310200bcc33e34de9b741da6e998971a0a3600d1 Mon Sep 17 00:00:00 2001 From: Denis Benato Date: Sun, 2 Aug 2026 22:09:49 +0200 Subject: [PATCH 1/2] Feat: use the official OGC pacman repo for the kernel --- build-image.sh | 7 +++++++ manifest | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/build-image.sh b/build-image.sh index b131f5bf..15217ebd 100755 --- a/build-image.sh +++ b/build-image.sh @@ -103,6 +103,13 @@ pacman --noconfirm -Syy sed -i '/BUILDENV/s/ check/ !check/g' /etc/makepkg.conf sed -i '/OPTIONS/s/ debug/ !debug/g' /etc/makepkg.conf +# Trust signing keys for the OGC repository +pacman-key --recv-keys F79100EF8C802DAB81C323BB8EEA5962FE510E19 +pacman-key --lsign-key F79100EF8C802DAB81C323BB8EEA5962FE510E19 + +echo "[ogc]" >> /etc/pacman.conf +echo "Server = https://pacman.opengamingcollective.org" >> /etc/pacman.conf + # install kernel package if [ "$KERNEL_PACKAGE_ORIGIN" == "repo" ] ; then pacman --noconfirm -S "${KERNEL_PACKAGE}" "${KERNEL_PACKAGE}-headers" diff --git a/manifest b/manifest index c1ccb390..d4e09dab 100644 --- a/manifest +++ b/manifest @@ -11,7 +11,7 @@ export DOCUMENTATION_URL="https://chimeraos.org/about" export BUG_REPORT_URL="https://github.com/ChimeraOS/chimeraos/issues" export KERNEL_PACKAGE="linux-ogc" -export KERNEL_PACKAGE_ORIGIN="ghcr.io/opengamingcollective/kernel-packages-arch:latest" +export KERNEL_PACKAGE_ORIGIN="repo" export PACKAGES="\ accountsservice \ From c3855e72410c8236969fe316483a84bf5e00f428 Mon Sep 17 00:00:00 2001 From: Denis Benato Date: Sun, 2 Aug 2026 22:10:45 +0200 Subject: [PATCH 2/2] Fix: install asusctl from the official OGC repo --- manifest | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manifest b/manifest index d4e09dab..d6f2ea23 100644 --- a/manifest +++ b/manifest @@ -21,6 +21,7 @@ export PACKAGES="\ alsa-utils \ amd-debug-tools \ amd-ucode \ + asusctl \ bash-completion \ broadcom-wl-dkms \ bzip2 \ @@ -179,7 +180,6 @@ export PACKAGES="\ # Which is often the same as the package name but it can be different. # Check on the AUR webpage if you are unsure export AUR_PACKAGES="\ - asusctl \ ayaneo-platform-dkms-git \ ayn-platform-dkms-git \ bcm20702a1-firmware \