janneke pushed a commit to branch wip-bootstrap
in repository guix.
commit 85bd95af0638d85bd3dfe07e8f5ed75abccf72bc
Author: Jan Nieuwenhuizen <[email protected]>
Date: Mon Sep 3 00:39:28 2018 +0200
copy-linux-headers: Update for glibc-2.16.0.
* guix/build/make-bootstrap.scm (copy-linux-headers): Update
---
guix/build/make-bootstrap.scm | 22 ++++++++++++++--------
1 file changed, 14 insertions(+), 8 deletions(-)
diff --git a/guix/build/make-bootstrap.scm b/guix/build/make-bootstrap.scm
index 5dd268f..953d7df 100644
--- a/guix/build/make-bootstrap.scm
+++ b/guix/build/make-bootstrap.scm
@@ -41,26 +41,32 @@
;; refer to.
(mkdir (string-append incdir "/linux"))
(for-each (lambda (file)
- (install-file (string-append kernel-headers "/include/linux/"
file)
- (string-append incdir "/linux")))
+ (install-file (pk 'src (string-append kernel-headers
"/include/linux/" file))
+ (pk 'dest (string-append incdir "/linux"))))
'(
- "a.out.h"
- "atalk.h"
+ "a.out.h" ; for 2.2.5
+ "atalk.h" ; for 2.2.5
"errno.h"
"falloc.h"
- "if_ether.h"
+ "if_addr.h" ; for 2.16.0
+ "if_ether.h" ; for 2.2.5
+ "if_link.h" ; for 2.16.0
"ioctl.h"
"kernel.h"
"limits.h"
+ "neighbour.h" ; for 2.16.0
+ "netlink.h" ; for 2.16.0
"param.h"
+ "prctl.h" ; for 2.16.0
"posix_types.h"
+ "rtnetlink.h" ; for 2.16.0
"socket.h"
"stddef.h"
- "swab.h"
+ "swab.h" ; for 2.2.5
"sysctl.h"
- "sysinfo.h"
+ "sysinfo.h" ; for 2.2.5
"types.h"
- "version.h"
+ "version.h" ; for 2.2.5
))
(copy-recursively (string-append kernel-headers "/include/asm")