aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMartin Jansa <Martin.Jansa@gmail.com>2010-03-12 10:01:29 +0100
committerMartin Jansa <Martin.Jansa@gmail.com>2010-03-12 10:02:47 +0100
commitc20d845b556e18a45e6e6b0edea5a9df11eaa8ba (patch)
tree812f5f0235ad3afdc0010e91bbfaef69d5becda0
parentf3d6c69826ab936a976d298be15b1a1536b6880e (diff)
downloadopenembedded-c20d845b556e18a45e6e6b0edea5a9df11eaa8ba.tar.gz
linux-libc-headers-2.6.32: forgot to add patch
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
-rw-r--r--recipes/linux-libc-headers/linux-libc-headers-2.6.32/scsi-use-__u8.patch26
1 files changed, 26 insertions, 0 deletions
diff --git a/recipes/linux-libc-headers/linux-libc-headers-2.6.32/scsi-use-__u8.patch b/recipes/linux-libc-headers/linux-libc-headers-2.6.32/scsi-use-__u8.patch
new file mode 100644
index 0000000000..b75487965a
--- /dev/null
+++ b/recipes/linux-libc-headers/linux-libc-headers-2.6.32/scsi-use-__u8.patch
@@ -0,0 +1,26 @@
+This patch is from
+http://patchwork.kernel.org/patch/38102/
+It seems its still under discussion and it will involve glibc to get it fixed correctly.
+for now OE uses scsi headers from kernel and not from glibc.
+
+-Khem
+
+Index: linux-2.6.31/include/scsi/scsi.h
+===================================================================
+--- linux-2.6.31.orig/include/scsi/scsi.h 2010-03-11 19:44:49.134590561 -0800
++++ linux-2.6.31/include/scsi/scsi.h 2010-03-11 19:45:12.744466326 -0800
+@@ -142,10 +142,10 @@ struct scsi_cmnd;
+
+ /* defined in T10 SCSI Primary Commands-2 (SPC2) */
+ struct scsi_varlen_cdb_hdr {
+- u8 opcode; /* opcode always == VARIABLE_LENGTH_CMD */
+- u8 control;
+- u8 misc[5];
+- u8 additional_cdb_length; /* total cdb length - 8 */
++ __u8 opcode; /* opcode always == VARIABLE_LENGTH_CMD */
++ __u8 control;
++ __u8 misc[5];
++ __u8 additional_cdb_length; /* total cdb length - 8 */
+ __be16 service_action;
+ /* service specific data follows */
+ };