aboutsummaryrefslogtreecommitdiff
path: root/gnu/packages/busybox.scm
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2020-03-12 15:44:26 +0100
committerLudovic Courtès <ludo@gnu.org>2020-03-12 18:32:16 +0100
commit22464cf32abcd38311eb29001a23b26f8c4c54dc (patch)
tree7a1efa01d8a5e9adf88c8ccc4227b73b272d466e /gnu/packages/busybox.scm
parentcf2ac04f13d9266c7c8a2ebd2e85ef593231ac9d (diff)
downloadguix-22464cf32abcd38311eb29001a23b26f8c4c54dc.tar.gz
guix-22464cf32abcd38311eb29001a23b26f8c4c54dc.zip
gnu: singularity: Wrap programs so they find Coreutils.
* gnu/packages/linux.scm (singularity)[arguments]: Add 'set-PATH' phase.
Diffstat (limited to 'gnu/packages/busybox.scm')
0 files changed, 0 insertions, 0 deletions
patch u-boot-fix-mkimage-header-verification. [native-inputs]: Update to use python 3 and add perl. (u-boot-tools)[configure]: Use tools-only_defconfig. [arguments]: Update phase updating python-coverage to work with python 3. Drop obsolete substitution for test_ofplatdata. Disable code coverage tests and binman tests. * gnu/packages/patches/u-boot-fix-mkimage-header-verification.patch: Remove file. * gnu/local.mk [dist_patch_DATA]: Update accordingly. 2020-01-05gnu: dtc: Use Python 3 instead of Python 2.Björn Höfling * gnu/packages/bootloaders.scm (dtc)[inputs]: Use python instead of python-2. 2019-12-15gnu: bootloaders: Avoid #:select on (gnu packages …) module.Ludovic Courtès * gnu/packages/bootloaders.scm: Remove use of #:select. 2019-12-14gnu: bootloaders: Fix make-u-boot-sunxi64-package cross-compilation.Mathieu Othacehe * gnu/packages/bootloaders.scm (make-u-boot-sunxi64-package)[arguments]: Search in native-inputs to fix cross-compilation. 2019-12-14gnu: Add u-boot-pine64-lts.Mathieu Othacehe * gnu/packages/bootloaders.scm (u-boot-pine64-lts): New variable. 2019-10-31gnu: u-boot: Remove redundant GCC input.Marius Bakke * gnu/packages/bootloaders.scm (make-u-boot-package)[native-inputs]: Do not explicitly add GCC 7. 2019-10-18gnu: Add u-boot-firefly-rk3399.Vagrant Cascadian * gnu/packages/bootloaders (u-boot-firefly-rk3399): New variable. * gnu/bootloader/u-boot (install-firefly-rk3399-u-boot): New variable. (u-boot-firefly-rk3399-bootloader): New variable. * gnu/system/install (define firefly-rk3399-installation-os): New variable. 2019-10-18gnu: Add u-boot-rock64-rk3328.Vagrant Cascadian * gnu/packages/bootloaders (u-boot-rock64-rk3328): New variable. * gnu/bootloader/u-boot (install-rock64-rk3328-u-boot): New variable. (u-boot-rock64-rk3328-bootloader): New variable. * gnu/system/install (define rock64-installation-os): New variable. 2019-10-18gnu: Add u-boot-rockpro64-rk3399Caliph Nomble * gnu/packages/bootloaders.scm (u-boot-rockpro64-rk3399): New exported variable. (u-boot-2019.10): New variable. * gnu/bootloader/u-boot.scm (u-boot-rockpro64-rk3399-bootloader): New exported variable. (install-rockpro64-rk3399-u-boot): New variable. * gnu/system/install.scm (rockpro64-installation-os): New exported variable. Adjusted-by: Vagrant Cascadian <vagrant@debian.org> Signed-off-by: Caliph Nomble <nomble@palism.com> Signed-off-by: Vagrant Cascadian <vagrant@debian.org> 2019-09-26gnu: dtc: Update to 1.5.1.Tobias Geerinckx-Rice * gnu/packages/bootloaders.scm (dtc): Update to 1.5.1. [arguments]: Add -Wl,-rpath to LDFLAGS #:make-flags. 2019-09-04gnu: grub: Fix cross-compilation.Mathieu Othacehe * gnu/packages/bootloaders.scm (grub)[arguments]: Search for unifont in both native-inputs and inputs. 2019-07-17gnu: u-boot: Fix target/system comparison in 'make-u-boot-package'.Ludovic Courtès Until now, running, say: guix build -e '(@@ (gnu packages bootloaders) u-boot-a20-olinuxino-micro)' \ -s armhf-linux on an x86_64-linux machine wouldn't have the desired effect because (%current-system) would return "x86_64-linux" when 'same-arch?' was evaluated. This fixes that. * gnu/packages/bootloaders.scm (make-u-boot-package)[same-arch?]: Turn into a thunk so that (%current-system) is evaluated in the right context, and adjust callers. Use 'string=?' instead of 'string-prefix?'.