mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 21:38:07 -05:00
gnu: u-boot-am335x-boneblack: Revert to old name.
This reverts to the name this package had previous to commit
c2c1dfdf57
("gnu: bootloader: Add U-Boot
packages for Raspberry Pi models."), which caused the package name to be
derived from the board name.
* gnu/packages/bootloaders.scm (u-boot-am335x-evm-boneblack): Remove the
NAME-SUFFIX keyword argument. Specify the full name via the name field.
* gnu/bootloader/u-boot.scm (u-boot-beaglebone-black-bootloader): Adjust to
the renamed package.
Reported-by: Vagrant Cascadian <vagrant@debian.org>
This commit is contained in:
parent
783b85f643
commit
d6ea9f8b38
2 changed files with 18 additions and 12 deletions
|
@ -144,7 +144,7 @@ (define u-boot-bootloader
|
|||
(define u-boot-beaglebone-black-bootloader
|
||||
(bootloader
|
||||
(inherit u-boot-bootloader)
|
||||
(package u-boot-am335x-evm-boneblack)
|
||||
(package u-boot-am335x-boneblack)
|
||||
(disk-image-installer install-beaglebone-black-u-boot)))
|
||||
|
||||
(define u-boot-allwinner-bootloader
|
||||
|
|
|
@ -963,17 +963,23 @@ (define*-public (make-u-boot-package board triplet
|
|||
(define-public u-boot-malta
|
||||
(make-u-boot-package "malta" "mips64el-linux-gnuabi64"))
|
||||
|
||||
(define-public u-boot-am335x-evm-boneblack
|
||||
(make-u-boot-package
|
||||
(define-public u-boot-am335x-boneblack
|
||||
(let ((base (make-u-boot-package
|
||||
"am335x_evm" "arm-linux-gnueabihf"
|
||||
;; Patch out other device trees to build an image small enough to fit
|
||||
;; within typical partitioning schemes where the first partition begins at
|
||||
;; sector 2048.
|
||||
;; Patch out other device trees to build an image small enough
|
||||
;; to fit within typical partitioning schemes where the first
|
||||
;; partition begins at sector 2048.
|
||||
#:configs '("CONFIG_OF_LIST=\"am335x-evm am335x-boneblack\"")
|
||||
#:name-suffix "-boneblack"
|
||||
#:append-description "This U-Boot is built for the BeagleBone Black, which
|
||||
was removed upstream, adjusted from the am335x_evm build with several device
|
||||
trees removed so that it fits within common partitioning schemes."))
|
||||
#:append-description
|
||||
"This U-Boot is built for the BeagleBone Black, which was
|
||||
removed upstream, adjusted from the am335x_evm build with several device trees
|
||||
removed so that it fits within common partitioning schemes.")))
|
||||
(package
|
||||
(inherit base)
|
||||
;; The name is not derived from the board name on purpose, as the config
|
||||
;; is modified per the comment above, parting from the default
|
||||
;; am335x_evm configuration.
|
||||
(name "u-boot-am335x-boneblack"))))
|
||||
|
||||
(define-public u-boot-am335x-evm
|
||||
(make-u-boot-package "am335x_evm" "arm-linux-gnueabihf"))
|
||||
|
|
Loading…
Reference in a new issue