diff options
author | Koen Kooi <koen@openembedded.org> | 2005-06-30 08:19:37 +0000 |
---|---|---|
committer | OpenEmbedded Project <openembedded-devel@lists.openembedded.org> | 2005-06-30 08:19:37 +0000 |
commit | c8e5702127e507e82e6f68a4b8c546803accea9d (patch) | |
tree | 00583491f40ecc640f2b28452af995e3a63a09d7 /packages/linux/unslung-kernel/ext3flash-on-disk1.patch | |
parent | 87ec8ca4d2e2eb4d1c1e1e1a6b46a395d56805b9 (diff) |
import clean BK tree at cset 1.3670
Diffstat (limited to 'packages/linux/unslung-kernel/ext3flash-on-disk1.patch')
-rw-r--r-- | packages/linux/unslung-kernel/ext3flash-on-disk1.patch | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/packages/linux/unslung-kernel/ext3flash-on-disk1.patch b/packages/linux/unslung-kernel/ext3flash-on-disk1.patch index e69de29bb2..80170f08ce 100644 --- a/packages/linux/unslung-kernel/ext3flash-on-disk1.patch +++ b/packages/linux/unslung-kernel/ext3flash-on-disk1.patch @@ -0,0 +1,41 @@ +--- linux-2.4.22/drivers/scsi/scsi_scan.c.orig 2004-11-06 14:01:22.000000000 +1030 ++++ linux-2.4.22/drivers/scsi/scsi_scan.c 2004-11-06 15:00:33.000000000 +1030 +@@ -704,6 +704,7 @@ + /* restrict device on certain port grant */ + SDpnt->host->hostt->removable = SDpnt->removable; + ++#if 0 + if ( SDpnt->removable && (USB_DEVPATH_1 == SDpnt->host->hostt->port) ) + { + create_proc_read_entry("usb_err", +@@ -718,8 +719,9 @@ + shpnt->porttype = 1; + return 0; + } ++#endif + // add by super +- if (SDpnt->removable){ ++ if (SDpnt->removable && (USB_DEVPATH_2 == SDpnt->host->hostt->port)){ + printk("is removable disk \n"); + *IXP425_GPIO_GPOUTR &= 0xfffb; + create_proc_read_entry("usb_conn", +--- linux-2.4.22/drivers/usb/storage/usb.c.orig 2004-11-06 14:01:06.000000000 +1030 ++++ linux-2.4.22/drivers/usb/storage/usb.c 2004-11-06 15:01:23.000000000 +1030 +@@ -787,6 +787,7 @@ + ss->htmplt.removable = 1; + } + #endif ++#if 0 + /* restrict device on certain port */ + if ( ss->htmplt.removable && (USB_DEVPATH_1 == dev->devpath[0])) + if ( ss->htmplt.removable ^ (USB_DEVPATH_2 == dev->devpath[0]) ) +@@ -803,7 +804,8 @@ + free_us_data( pre_ss, ss ); + return NULL; + } +- if (ss->htmplt.removable){ ++#endif ++ if (ss->htmplt.removable && (USB_DEVPATH_2 == dev->devpath[0])){ + printk("is removable disk \n"); + *IXP425_GPIO_GPOUTR &= 0xfffb; + create_proc_read_entry("usb_conn", |