* Uclibc does not provide posix_fallocate so use ftruncate
Signed-off-by: Khem Raj <raj.khem@gmail.com>
--- /dev/null
+Index: tgt-1.0.12/usr/tgtimg.c
+===================================================================
+--- tgt-1.0.12.orig/usr/tgtimg.c 2011-01-15 16:28:30.488656000 -0800
++++ tgt-1.0.12/usr/tgtimg.c 2011-01-15 16:35:14.958656001 -0800
+@@ -438,8 +438,13 @@
+ perror("Failed creating file");
+ exit(2);
+ }
++#ifndef __UCLIBC__
+ if (posix_fallocate(fd, 0, size*1024*1024LL) == -1) {
+ perror("posix_fallocate failed.");
++#else
++ if (ftruncate (fd, size*1024*1024LL) == -1) {
++ perror("ftruncate failed.");
++#endif
+ exit(3);
+ }
+
LICENSE = "GPLv2"
DEPENDS = "openssl"
RDEPENDS_${PN} = "iscsi-target"
-PR = "r0"
+PR = "r1"
-SRC_URI = "http://stgt.berlios.de/releases/tgt-${PV}.tar.gz"
+SRC_URI = "http://stgt.berlios.de/releases/tgt-${PV}.tar.gz \
+ file://use-ftruncate-on-uclibc.patch \
+ "
SRC_URI[md5sum] = "d3bc4098d0ec6f4418e574ea7fdd18eb"
SRC_URI[sha256sum] = "4d90567997e16194b86cc3ab0a55c7aa5c5054681176b60c6635b20a1feaffe2"