diff options
author | Vagrant Cascadian <vagrant@debian.org> | 2025-03-17 22:16:31 +0000 |
---|---|---|
committer | Vagrant Cascadian <vagrant@debian.org> | 2025-03-17 17:24:28 -0700 |
commit | f7f94c5bef1ed177802079833cf3e4c6cbd57d5b (patch) | |
tree | 6f00b3c484ef05d2d1e6ba75de24b2d25d163360 | |
parent | 16e4762ae2a13421dd67102dbbf5365986a56fb6 (diff) |
gnu: linux-libre-arm64-mnt-reform: Adjust phase order.wip-linux-libre-arm64-mnt-reform
* gnu/packages/linux.scm (linux-libre-arm64-mnt-reform)[phases]: Ensure
'copy-reform-dts-files and 'adjust-makefiles-with-new-dtb run after
'apply-reform-patches.
-rw-r--r-- | gnu/packages/linux.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index 77ca5473e3..4f32b6b6af 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -1717,7 +1717,7 @@ Linux kernel. It has been modified to remove all non-free binary blobs.") "rk3588-mnt-reform2/5110-hdptx-crash-workaround.patch" "rk3588-mnt-reform2/5200-drm-rockchip-Set-dma-mask-to-64-bit.patch")))) ;; FIXME do not needlessly copy all dts files into all directories - (add-after 'unpack 'copy-reform-dts-files + (add-after 'apply-reform-patches 'copy-reform-dts-files (lambda* (#:key inputs #:allow-other-keys) (for-each (lambda (dts) (for-each (lambda (subarch) @@ -1747,7 +1747,7 @@ Linux kernel. It has been modified to remove all non-free binary blobs.") "meson-g12b-bananapi-cm4-mnt-pocket-reform.dts" "meson-g12b-bananapi-cm4-mnt-reform2.dts" )))) - (add-after 'unpack 'adjust-makefiles-with-new-dtb + (add-after 'apply-reform-patches 'adjust-makefiles-with-new-dtb (lambda _ (substitute* "arch/arm64/boot/dts/amlogic/Makefile" (("meson-g12b-bananapi-cm4-mnt-reform2.dtb") |