diff options
-rw-r--r-- | gnu/packages/firmware.scm | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/gnu/packages/firmware.scm b/gnu/packages/firmware.scm index 029e84d5c2..fea7d37923 100644 --- a/gnu/packages/firmware.scm +++ b/gnu/packages/firmware.scm @@ -2,7 +2,7 @@ ;;; Copyright © 2014, 2015, 2016 Ludovic Courtès <[email protected]> ;;; Copyright © 2016 Eric Bavier <[email protected]> ;;; Copyright © 2017 David Craven <[email protected]> -;;; Copyright © 2017, 2018, 2022 Efraim Flashner <[email protected]> +;;; Copyright © 2017, 2018, 2022, 2023 Efraim Flashner <[email protected]> ;;; Copyright © 2018, 2020 Tobias Geerinckx-Rice <[email protected]> ;;; Copyright © 2018 Vagrant Cascadian <[email protected]> ;;; Copyright © 2019 Mathieu Othacehe <[email protected]> @@ -414,6 +414,11 @@ provide OpenFirmware functionality on top of an already running system.") (inherit base) (arguments (substitute-keyword-arguments (package-arguments base) + ((#:system system (%current-system)) + (if (string-prefix? "aarch64-linux" (or (%current-system) + (%current-target-system))) + "armhf-linux" + system)) ((#:phases phases) #~(modify-phases #$phases (add-after 'install 'rename-executable |