Leonidas Spyropoulos pushed to branch main at Arch Linux / Packaging / Packages / makedumpfile
Commits: b97d34a2 by Peter Jung at 2024-09-14T21:27:08+02:00 makedumpfile: Add fixes for 6.9 and higher kernels Signed-off-by: Peter Jung <[email protected]> - - - - - 1 changed file: - PKGBUILD Changes: ===================================== PKGBUILD ===================================== @@ -21,6 +21,16 @@ validpgpkeys=( '60C5A596A37CDE6C357C5C623136D252B5E85FA9' # Kazuhito Hagio <[email protected]> ) +prepare(){ + cd "${pkgname}" + + # Fix wrong exclusion of Slab pages on Linux 6.10-rc1 and later + # Required for kernel 6.10 + git cherry-pick -n bad2a7c4fa75d37a41578441468584963028bdda + + # Fix failure of hugetlb pages exclusion on Linux 6.9 and later + git cherry-pick -n 985e575253f1c2de8d6876cfe685c68a24ee06e1 +} build() { cd "${pkgname}" make -O \ View it on GitLab: https://gitlab.archlinux.org/archlinux/packaging/packages/makedumpfile/-/commit/b97d34a2cb5d1359437fa619c6fdd91914a9cfee -- View it on GitLab: https://gitlab.archlinux.org/archlinux/packaging/packages/makedumpfile/-/commit/b97d34a2cb5d1359437fa619c6fdd91914a9cfee You're receiving this email because of your account on gitlab.archlinux.org.
