summaryrefslogtreecommitdiffstats
path: root/meta-extras/packages/dosfstools/files/include-linux-types.patch
diff options
context:
space:
mode:
authorRichard Purdie <richard@openedhand.com>2007-10-11 21:48:55 +0000
committerRichard Purdie <richard@openedhand.com>2007-10-11 21:48:55 +0000
commitffb1c7c470fdbcb6939b8b3c099785892dddc3f8 (patch)
treed128ed6438ea891ac5bad0bd2b756f7c0a7b0b93 /meta-extras/packages/dosfstools/files/include-linux-types.patch
parent03abf8e9c63de4d0eb25ee6704874910cf30e2a1 (diff)
downloadpoky-ffb1c7c470fdbcb6939b8b3c099785892dddc3f8.tar.gz
dosfsutils: Move from meta-extras to meta
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@2868 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'meta-extras/packages/dosfstools/files/include-linux-types.patch')
-rw-r--r--meta-extras/packages/dosfstools/files/include-linux-types.patch17
1 files changed, 0 insertions, 17 deletions
diff --git a/meta-extras/packages/dosfstools/files/include-linux-types.patch b/meta-extras/packages/dosfstools/files/include-linux-types.patch
deleted file mode 100644
index 4bbd4e76e4..0000000000
--- a/meta-extras/packages/dosfstools/files/include-linux-types.patch
+++ /dev/null
@@ -1,17 +0,0 @@
1mkdsofs is using types of the style __u8, which it gets with some
2versions of libc headers via linux/hdreg.h including asm/types.h.
3Newer version of fedora (at least) have a hdreg.h whichdoes not
4include asm/types.h. To work around this patch mkdosfs.c to explicity
5include linux/types.h which will in turn pull in asm/types.h which
6defines these variables.
7
8--- dosfstools-2.10/mkdosfs/mkdosfs.c~ 2006-07-12 18:46:21.000000000 +1000
9+++ dosfstools-2.10/mkdosfs/mkdosfs.c 2006-07-12 18:46:21.000000000 +1000
10@@ -60,6 +60,7 @@
11 #include "../version.h"
12
13 #include <fcntl.h>
14+#include <linux/types.h>
15 #include <linux/hdreg.h>
16 #include <linux/fs.h>
17 #include <linux/fd.h>