From c20d845b556e18a45e6e6b0edea5a9df11eaa8ba Mon Sep 17 00:00:00 2001 From: Martin Jansa Date: Fri, 12 Mar 2010 10:01:29 +0100 Subject: linux-libc-headers-2.6.32: forgot to add patch Signed-off-by: Martin Jansa --- .../linux-libc-headers-2.6.32/scsi-use-__u8.patch | 26 ++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 recipes/linux-libc-headers/linux-libc-headers-2.6.32/scsi-use-__u8.patch (limited to 'recipes/linux-libc-headers') 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 */ + }; -- cgit 1.2.3-korg