gnu: u-boot: Reomve sdl2 dependency on non-GUI builds.
* gnu/packages/bootloaders.scm (u-boot)[native-inputs]: Remove sdl2. (u-boot-tools)[native-inputs]: Add sdl2.
This commit is contained in:
parent
1bc5a77f0a
commit
6b1253718d
1 changed files with 3 additions and 1 deletions
|
@ -465,7 +465,6 @@ tree binary files. These are board description files used by Linux and BSD.")
|
||||||
("python" ,python)
|
("python" ,python)
|
||||||
("python-coverage" ,python-coverage)
|
("python-coverage" ,python-coverage)
|
||||||
("python-pytest" ,python-pytest)
|
("python-pytest" ,python-pytest)
|
||||||
("sdl2" ,sdl2)
|
|
||||||
("swig" ,swig)))
|
("swig" ,swig)))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(home-page "https://www.denx.de/wiki/U-Boot/")
|
(home-page "https://www.denx.de/wiki/U-Boot/")
|
||||||
|
@ -478,6 +477,9 @@ also initializes the boards (RAM etc).")
|
||||||
(package
|
(package
|
||||||
(inherit u-boot)
|
(inherit u-boot)
|
||||||
(name "u-boot-tools")
|
(name "u-boot-tools")
|
||||||
|
(native-inputs
|
||||||
|
`(("sdl2" ,sdl2)
|
||||||
|
,@(package-native-inputs u-boot)))
|
||||||
(arguments
|
(arguments
|
||||||
`(#:make-flags '("HOSTCC=gcc")
|
`(#:make-flags '("HOSTCC=gcc")
|
||||||
#:test-target "tests"
|
#:test-target "tests"
|
||||||
|
|
Reference in a new issue