summaryrefslogtreecommitdiff
path: root/meta-extras/packages/dosfstools/files/include-linux-types.patch
diff options
context:
space:
mode:
authorMarcin Juszkiewicz <hrw@openedhand.com>2007-06-08 08:32:44 +0000
committerMarcin Juszkiewicz <hrw@openedhand.com>2007-06-08 08:32:44 +0000
commitac6c773b3993baecc5450b7d36f98d33e95ef369 (patch)
tree265911defc6930fcd0f6cda65841f9989a40abe5 /meta-extras/packages/dosfstools/files/include-linux-types.patch
parentbdcf04a863fe53c97027185a0e6791789ab462c4 (diff)
downloadopenembedded-core-ac6c773b3993baecc5450b7d36f98d33e95ef369.tar.gz
openembedded-core-ac6c773b3993baecc5450b7d36f98d33e95ef369.tar.bz2
openembedded-core-ac6c773b3993baecc5450b7d36f98d33e95ef369.tar.xz
openembedded-core-ac6c773b3993baecc5450b7d36f98d33e95ef369.zip
dosfstools: added (from OE + patch for 2.6.20 headers)
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@1888 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, 17 insertions, 0 deletions
diff --git a/meta-extras/packages/dosfstools/files/include-linux-types.patch b/meta-extras/packages/dosfstools/files/include-linux-types.patch
new file mode 100644
index 000000000..4bbd4e76e
--- /dev/null
+++ b/meta-extras/packages/dosfstools/files/include-linux-types.patch
@@ -0,0 +1,17 @@
+mkdsofs is using types of the style __u8, which it gets with some
+versions of libc headers via linux/hdreg.h including asm/types.h.
+Newer version of fedora (at least) have a hdreg.h whichdoes not
+include asm/types.h. To work around this patch mkdosfs.c to explicity
+include linux/types.h which will in turn pull in asm/types.h which
+defines these variables.
+
+--- dosfstools-2.10/mkdosfs/mkdosfs.c~ 2006-07-12 18:46:21.000000000 +1000
++++ dosfstools-2.10/mkdosfs/mkdosfs.c 2006-07-12 18:46:21.000000000 +1000
+@@ -60,6 +60,7 @@
+ #include "../version.h"
+
+ #include <fcntl.h>
++#include <linux/types.h>
+ #include <linux/hdreg.h>
+ #include <linux/fs.h>
+ #include <linux/fd.h>