diff options
author | 2015-05-17 06:56:56 +0000 | |
---|---|---|
committer | 2015-05-17 06:56:56 +0000 | |
commit | fd93b9d9025b6b0467e4e3013b3f3c2ee9660362 (patch) | |
tree | 57bf69cb7ef755aa86271306efde2b27bac8f961 /sys-boot/yaboot | |
parent | Remove old. (diff) | |
download | gentoo-2-fd93b9d9025b6b0467e4e3013b3f3c2ee9660362.tar.gz gentoo-2-fd93b9d9025b6b0467e4e3013b3f3c2ee9660362.tar.bz2 gentoo-2-fd93b9d9025b6b0467e4e3013b3f3c2ee9660362.zip |
Also stub out fcntl #527974 by Agostino Sarubbo.
(Portage version: 2.2.19/cvs/Linux x86_64, signed Manifest commit with key D2E96200)
Diffstat (limited to 'sys-boot/yaboot')
-rw-r--r-- | sys-boot/yaboot/ChangeLog | 5 | ||||
-rw-r--r-- | sys-boot/yaboot/files/yaboot-stubfuncs.patch | 7 |
2 files changed, 10 insertions, 2 deletions
diff --git a/sys-boot/yaboot/ChangeLog b/sys-boot/yaboot/ChangeLog index d455c4f41e63..7c940af361a3 100644 --- a/sys-boot/yaboot/ChangeLog +++ b/sys-boot/yaboot/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for sys-boot/yaboot # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-boot/yaboot/ChangeLog,v 1.54 2015/05/17 05:05:04 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-boot/yaboot/ChangeLog,v 1.55 2015/05/17 06:56:56 vapier Exp $ + + 17 May 2015; Mike Frysinger <vapier@gentoo.org> files/yaboot-stubfuncs.patch: + Also stub out fcntl #527974 by Agostino Sarubbo. 17 May 2015; Mike Frysinger <vapier@gentoo.org> yaboot-1.3.14-r2.ebuild, yaboot-1.3.16.ebuild, yaboot-1.3.17-r2.ebuild: diff --git a/sys-boot/yaboot/files/yaboot-stubfuncs.patch b/sys-boot/yaboot/files/yaboot-stubfuncs.patch index 6b1d5218251f..8ae522b7d4eb 100644 --- a/sys-boot/yaboot/files/yaboot-stubfuncs.patch +++ b/sys-boot/yaboot/files/yaboot-stubfuncs.patch @@ -20,7 +20,7 @@ Stub out some functions that are not provided (and unneeded) int posix_memalign(void **memptr, size_t alignment, size_t size) --- lib/nonstd.c +++ lib/nonstd.c -@@ -65,3 +65,203 @@ +@@ -65,3 +65,208 @@ { return NULL; } @@ -89,6 +89,11 @@ Stub out some functions that are not provided (and unneeded) + return 0; +} + ++// ext2 libs only use this to turn off caches currently ++int fcntl(int fd, int cmd, ...) { ++ return 0; ++} ++ +void exit(int status) { + prom_exit(); +} |