mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-07-15 16:07:26 +00:00
yaffs2-utils: Fix build with musl
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
(cherry picked from commit 35814672e7)
Signed-off-by: Armin Kuster <akuster808@gmail.com>
This commit is contained in:
+30
@@ -0,0 +1,30 @@
|
|||||||
|
From 848717da4a28d33f8aa8f889377e61e6b1b8ae67 Mon Sep 17 00:00:00 2001
|
||||||
|
From: Khem Raj <raj.khem@gmail.com>
|
||||||
|
Date: Thu, 13 Jul 2017 18:29:52 -0700
|
||||||
|
Subject: [PATCH] define loff_t if not already defined
|
||||||
|
|
||||||
|
Helps to build with musl
|
||||||
|
|
||||||
|
Signed-off-by: Khem Raj <raj.khem@gmail.com>
|
||||||
|
---
|
||||||
|
yaffs_guts.h | 4 ++++
|
||||||
|
1 file changed, 4 insertions(+)
|
||||||
|
|
||||||
|
diff --git a/yaffs_guts.h b/yaffs_guts.h
|
||||||
|
index 6bcf12d..4af17ce 100644
|
||||||
|
--- a/yaffs_guts.h
|
||||||
|
+++ b/yaffs_guts.h
|
||||||
|
@@ -18,6 +18,10 @@
|
||||||
|
|
||||||
|
#include "yportenv.h"
|
||||||
|
|
||||||
|
+#ifndef loff_t
|
||||||
|
+#define loff_t off_t
|
||||||
|
+#endif
|
||||||
|
+
|
||||||
|
#define YAFFS_OK 1
|
||||||
|
#define YAFFS_FAIL 0
|
||||||
|
|
||||||
|
--
|
||||||
|
2.13.2
|
||||||
|
|
||||||
@@ -14,7 +14,8 @@ DEPENDS = "mtd-utils"
|
|||||||
# Source is the HEAD of master branch at the time of writing this recipe
|
# Source is the HEAD of master branch at the time of writing this recipe
|
||||||
SRC_URI = "git://www.aleph1.co.uk/yaffs2;protocol=git;branch=master \
|
SRC_URI = "git://www.aleph1.co.uk/yaffs2;protocol=git;branch=master \
|
||||||
file://makefile-add-ldflags.patch \
|
file://makefile-add-ldflags.patch \
|
||||||
"
|
file://0001-define-loff_t-if-not-already-defined.patch \
|
||||||
|
"
|
||||||
|
|
||||||
SRCREV = "bc76682d93955cfb33051beb503ad9f8a5450578"
|
SRCREV = "bc76682d93955cfb33051beb503ad9f8a5450578"
|
||||||
S = "${WORKDIR}/git"
|
S = "${WORKDIR}/git"
|
||||||
|
|||||||
Reference in New Issue
Block a user