mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-08 07:56:16 -05:00
gnu: Add arm-trusted-firmware-imx8mq.
* gnu/packages/firmware.scm (arm-trusted-firmware-imx8mq): New public variable.
This commit is contained in:
parent
0c727de7cc
commit
0c469c041e
1 changed files with 12 additions and 1 deletions
|
@ -6,7 +6,7 @@
|
|||
;;; Copyright © 2018, 2020 Tobias Geerinckx-Rice <me@tobias.gr>
|
||||
;;; Copyright © 2018 Vagrant Cascadian <vagrant@debian.org>
|
||||
;;; Copyright © 2019 Mathieu Othacehe <m.othacehe@gmail.com>
|
||||
;;; Copyright © 2020, 2021 Marius Bakke <marius@gnu.org>
|
||||
;;; Copyright © 2020, 2021, 2022 Marius Bakke <marius@gnu.org>
|
||||
;;; Copyright © 2021 Petr Hodina <phodina@protonmail.com>
|
||||
;;;
|
||||
;;; This file is part of GNU Guix.
|
||||
|
@ -28,6 +28,7 @@ (define-module (gnu packages firmware)
|
|||
#:use-module ((guix licenses) #:prefix license:)
|
||||
#:use-module (guix packages)
|
||||
#:use-module (guix download)
|
||||
#:use-module (guix gexp)
|
||||
#:use-module (guix utils)
|
||||
#:use-module (guix git-download)
|
||||
#:use-module (guix build-system gnu)
|
||||
|
@ -621,3 +622,13 @@ (define-public arm-trusted-firmware-rk3399
|
|||
`(("cross32-gcc" ,(cross-gcc "arm-none-eabi"))
|
||||
("cross32-binutils", (cross-binutils "arm-none-eabi"))
|
||||
,@(package-native-inputs base))))))
|
||||
|
||||
(define-public arm-trusted-firmware-imx8mq
|
||||
(let ((base (make-arm-trusted-firmware "imx8mq")))
|
||||
(package
|
||||
(inherit base)
|
||||
(arguments
|
||||
(substitute-keyword-arguments (package-arguments base)
|
||||
((#:make-flags flags ''())
|
||||
;; Adding debug symbols causes the size to exceed limits.
|
||||
#~(delete "DEBUG=1" #$flags)))))))
|
||||
|
|
Loading…
Reference in a new issue