[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
15/18: syscalls: Fix RNDADDTOENTCNT on powerpc64le-linux.
From: |
guix-commits |
Subject: |
15/18: syscalls: Fix RNDADDTOENTCNT on powerpc64le-linux. |
Date: |
Wed, 24 Mar 2021 02:25:14 -0400 (EDT) |
marusich pushed a commit to branch master
in repository guix.
commit c29bfbfc78ccd9e5c10d38faf3d269eafed12854
Author: Chris Marusich <cmmarusich@gmail.com>
AuthorDate: Sun Feb 21 16:05:58 2021 -0800
syscalls: Fix RNDADDTOENTCNT on powerpc64le-linux.
This fixes the failing test add-to-entropy-count in tests/syscalls.scm on
powerpc64le-linux.
* guix/build/syscalls.scm (RNDADDTOENTCNT): When %host-type starts with
"powerpc64le", set this to #x80045201. Otherwise, set it to #x40045201 as
before.
---
guix/build/syscalls.scm | 7 ++++++-
1 file changed, 6 insertions(+), 1 deletion(-)
diff --git a/guix/build/syscalls.scm b/guix/build/syscalls.scm
index a2c1d80..8886fc0 100644
--- a/guix/build/syscalls.scm
+++ b/guix/build/syscalls.scm
@@ -6,6 +6,7 @@
;;; Copyright © 2019 Guillaume Le Vaillant <glv@posteo.net>
;;; Copyright © 2020 Julien Lepiller <julien@lepiller.eu>
;;; Copyright © 2020 Jan (janneke) Nieuwenhuizen <janneke@gnu.org>
+;;; Copyright © 2021 Chris Marusich <cmmarusich@gmail.com>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -942,7 +943,11 @@ backend device."
;;;
;; From <uapi/linux/random.h>.
-(define RNDADDTOENTCNT #x40045201)
+(define RNDADDTOENTCNT
+ ;; Avoid using %current-system here to avoid depending on host-side code.
+ (if (string-prefix? "powerpc64le" %host-type)
+ #x80045201
+ #x40045201))
(define (add-to-entropy-count port-or-fd n)
"Add N to the kernel's entropy count (the value that can be read from
- 02/18: utils: Add target-powerpc? procedure., (continued)
- 02/18: utils: Add target-powerpc? procedure., guix-commits, 2021/03/24
- 10/18: gnu: texlive-bin: Fix compilation on powerpc64le*., guix-commits, 2021/03/24
- 11/18: gnu: texlive-latex-base: Fix compilation on powerpc64le*., guix-commits, 2021/03/24
- 13/18: Add powerpc64le-linux as a supported Guix architecture., guix-commits, 2021/03/24
- 18/18: gnu: sed: Make it build on SELinux-enabled kernels., guix-commits, 2021/03/24
- 03/18: gnu: gcc-4.7: On powerpc64le, fix /lib64 references., guix-commits, 2021/03/24
- 04/18: gnu: glibc: Fix ldd path on powerpc*., guix-commits, 2021/03/24
- 06/18: gnu: binutils-final: Provide bash for binary on powerpc-linux., guix-commits, 2021/03/24
- 07/18: gnu: binutils-final: Support more Power architectures., guix-commits, 2021/03/24
- 12/18: gnu: libelf: Fix compilation for powerpc64le-linux., guix-commits, 2021/03/24
- 15/18: syscalls: Fix RNDADDTOENTCNT on powerpc64le-linux.,
guix-commits <=
- 14/18: syscalls: Fix clone on powerpc64le-linux., guix-commits, 2021/03/24
- 16/18: ci: %cross-targets: Add powerpc64le-linux-gnu., guix-commits, 2021/03/24
- 17/18: utils: Fix target-64bit? on powerpc64le-linux., guix-commits, 2021/03/24