Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions guest/pacman.aarch64.conf
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,10 @@ HoldPkg = pacman glibc
# QEMU direct-boots the kernel and initramfs paired with this VM disk. Keep its
# installed modules and DKMS headers on that exact ABI. Hyprland is likewise
# held until upstream includes our rounded-border coverage backport; otherwise
# a routine full-system update can silently restore the defect.
IgnorePkg = linux-aarch64 linux-aarch64-headers hyprland
# a routine full-system update can silently restore the defect. Keep aquamarine
# on the same hold: newer ALARM aquamarine bumps libaquamarine.so past what the
# pinned Hyprland was built against and aborts Omarchy's updater mid-transaction.
IgnorePkg = linux-aarch64 linux-aarch64-headers hyprland aquamarine
Architecture = auto
CheckSpace
ParallelDownloads = 5
Expand Down
5 changes: 3 additions & 2 deletions guest/tests/verify.py
Original file line number Diff line number Diff line change
Expand Up @@ -247,8 +247,9 @@ def main() -> None:
"factory pacman retains the ARM Omarchy keyring repository",
)
check(
"IgnorePkg = linux-aarch64 linux-aarch64-headers hyprland" in pacman_conf,
"factory pacman holds the QEMU-booted kernel, matching headers, and patched compositor",
"IgnorePkg = linux-aarch64 linux-aarch64-headers hyprland aquamarine"
in pacman_conf,
"factory pacman holds the QEMU-booted kernel, matching headers, patched compositor, and its aquamarine ABI",
)
arm_mirrorlist = read(GUEST / "mirrorlist.aarch64")
check(
Expand Down
Loading