|
|
| |
"Re: rt73usb: support for wireless in Kohjinsha subnotebook" posted by ~Ray
Posted on 2008-11-17 12:09:15 |
On Mon. 2007-10-22 at 02:09 +0200. Pavel Machek wrote:> Hi!> > > This device is NOT a Ralink USB wifi adapter!> > > > Get the windows driver in this link and see for yourself.> > > > (ISSC W89C35 802.11bg WLAN USB Adapters (Native Wifi driver))> > Thanks a lot. With some patches. I got driver from conitech it to> compile and partly work on 2.6.23. I can now transmit packets but not> yet receive them.> > (use Makefile.26 instead of Makefile)I couldn't find any license info immediately visible; are you sure it'sGPL?Dan> Pavel> > --- hal_142_o ofic/linux/sysdef h2006-11-29 11:12:10.000000000 +0100> +++ hal_142_o/linux/sysdef h2007-10-21 22:21:13.000000000 +0200> @@ -7,7 +7,7 @@> // The definition WB_LINUX is a keyword for this OS> //=============================================================================> #define WB_LINUX> -#define WB_LINUX_WPA_PSK> +//#define WB_LINUX_WPA_PSK> //#define _WPA_PSK_DEBUG> > //#define _IBSS_BEACON_SEQ_STICK_> Only in hal_142_o/linux: w35und ko> Only in hal_142_o/linux: w35und mod c> --- hal_142_o ofic/linux/wb35reg c2006-11-29 11:43:58.000000000 +0100> +++ hal_142_o/linux/wb35reg c2007-10-21 22:19:27.000000000 +0200> @@ -879,6 +879,7 @@> if( (pHwData->phy_type == RF_WB_242) ||> (pHwData->phy_type == RF_WB_242_1) ) // 20060619.5 Add> {> +extern void phy_calibration_winbond(hw_data_t *phw_data u32 frequency);> phy_calibration_winbond ( pHwData. 2412 ); // Sync operation> Wb35Reg_ReadSync( pHwData. 0x103c. &BB3c );> Wb35Reg_ReadSync( pHwData. 0x1054. &BB54 );> --- hal_142_o ofic/linux/wbusb c2006-11-29 11:02:54.000000000 +0100> +++ hal_142_o/linux/wbusb c2007-10-21 22:16:19.000000000 +0200> @@ -28,7 +28,6 @@> };> #else> static struct usb_driver wb35_driver = {> - owner =THIS_MODULE,> name ="w35und",> probe =wb35_probe,> disconnect = wb35_disconnect,> --- hal_142_o ofic/wblinux c2006-11-29 10:39:54.000000000 +0100> +++ hal_142_o/wblinux c2007-10-21 23:49:07.000000000 +0200> @@ -98,7 +98,8 @@> BufSize = pRxLayer1->BufferQueue[i]. BufferSize;> BufAddr = pRxLayer1->BufferQueue[i] pBufferAddress;> //DataDmp(BufAddr. BufSize. 0);> - eth_copy_and_sum( skb. BufAddr. BufSize. 0 );> +// eth_io_copy_and_sum( skb. BufAddr. BufSize. 0 );> +skb_copy_from_linear_data(skb. BufAddr. BufSize);> skb_put( skb. BufSize );> }> > > I wonder if I got skb_copy right...?> Pavel> -To unsubscribe from this list: send the line "unsubscribe linux-kernel" inthe body of a message to majordomo@vger kernel orgMore majordomo info at Please read the FAQ at
Forex Groups - Tips on Trading
Related article:
http://lkml.org/lkml/2007/10/22/182
comments | Add comment | Report as Spam
|
"Re: rt73usb: support for wireless in Kohjinsha subnotebook" posted by ~Ray
Posted on 2008-11-17 12:09:15 |
On Mon. 2007-10-22 at 02:09 +0200. Pavel Machek wrote:> Hi!> > > This device is NOT a Ralink USB wifi adapter!> > > > Get the windows driver in this link and see for yourself.> > > > (ISSC W89C35 802.11bg WLAN USB Adapters (Native Wifi driver))> > Thanks a lot. With some patches. I got driver from conitech it to> compile and partly work on 2.6.23. I can now transmit packets but not> yet receive them.> > (use Makefile.26 instead of Makefile)I couldn't find any license info immediately visible; are you sure it'sGPL?Dan> Pavel> > --- hal_142_o ofic/linux/sysdef h2006-11-29 11:12:10.000000000 +0100> +++ hal_142_o/linux/sysdef h2007-10-21 22:21:13.000000000 +0200> @@ -7,7 +7,7 @@> // The definition WB_LINUX is a keyword for this OS> //=============================================================================> #define WB_LINUX> -#define WB_LINUX_WPA_PSK> +//#define WB_LINUX_WPA_PSK> //#define _WPA_PSK_DEBUG> > //#define _IBSS_BEACON_SEQ_STICK_> Only in hal_142_o/linux: w35und ko> Only in hal_142_o/linux: w35und mod c> --- hal_142_o ofic/linux/wb35reg c2006-11-29 11:43:58.000000000 +0100> +++ hal_142_o/linux/wb35reg c2007-10-21 22:19:27.000000000 +0200> @@ -879,6 +879,7 @@> if( (pHwData->phy_type == RF_WB_242) ||> (pHwData->phy_type == RF_WB_242_1) ) // 20060619.5 Add> {> +extern void phy_calibration_winbond(hw_data_t *phw_data u32 frequency);> phy_calibration_winbond ( pHwData. 2412 ); // Sync operation> Wb35Reg_ReadSync( pHwData. 0x103c. &BB3c );> Wb35Reg_ReadSync( pHwData. 0x1054. &BB54 );> --- hal_142_o ofic/linux/wbusb c2006-11-29 11:02:54.000000000 +0100> +++ hal_142_o/linux/wbusb c2007-10-21 22:16:19.000000000 +0200> @@ -28,7 +28,6 @@> };> #else> static struct usb_driver wb35_driver = {> - owner =THIS_MODULE,> name ="w35und",> probe =wb35_probe,> disconnect = wb35_disconnect,> --- hal_142_o ofic/wblinux c2006-11-29 10:39:54.000000000 +0100> +++ hal_142_o/wblinux c2007-10-21 23:49:07.000000000 +0200> @@ -98,7 +98,8 @@> BufSize = pRxLayer1->BufferQueue[i]. BufferSize;> BufAddr = pRxLayer1->BufferQueue[i] pBufferAddress;> //DataDmp(BufAddr. BufSize. 0);> - eth_copy_and_sum( skb. BufAddr. BufSize. 0 );> +// eth_io_copy_and_sum( skb. BufAddr. BufSize. 0 );> +skb_copy_from_linear_data(skb. BufAddr. BufSize);> skb_put( skb. BufSize );> }> > > I wonder if I got skb_copy right...?> Pavel> -To unsubscribe from this list: send the line "unsubscribe linux-kernel" inthe body of a message to majordomo@vger kernel orgMore majordomo info at Please read the FAQ at
Forex Groups - Tips on Trading
Related article:
http://lkml.org/lkml/2007/10/22/182
comments | Add comment | Report as Spam
|
"Re: rt73usb: support for wireless in Kohjinsha subnotebook" posted by ~Ray
Posted on 2008-11-17 12:09:15 |
On Mon. 2007-10-22 at 02:09 +0200. Pavel Machek wrote:> Hi!> > > This device is NOT a Ralink USB wifi adapter!> > > > Get the windows driver in this link and see for yourself.> > > > (ISSC W89C35 802.11bg WLAN USB Adapters (Native Wifi driver))> > Thanks a lot. With some patches. I got driver from conitech it to> compile and partly work on 2.6.23. I can now transmit packets but not> yet receive them.> > (use Makefile.26 instead of Makefile)I couldn't find any license info immediately visible; are you sure it'sGPL?Dan> Pavel> > --- hal_142_o ofic/linux/sysdef h2006-11-29 11:12:10.000000000 +0100> +++ hal_142_o/linux/sysdef h2007-10-21 22:21:13.000000000 +0200> @@ -7,7 +7,7 @@> // The definition WB_LINUX is a keyword for this OS> //=============================================================================> #define WB_LINUX> -#define WB_LINUX_WPA_PSK> +//#define WB_LINUX_WPA_PSK> //#define _WPA_PSK_DEBUG> > //#define _IBSS_BEACON_SEQ_STICK_> Only in hal_142_o/linux: w35und ko> Only in hal_142_o/linux: w35und mod c> --- hal_142_o ofic/linux/wb35reg c2006-11-29 11:43:58.000000000 +0100> +++ hal_142_o/linux/wb35reg c2007-10-21 22:19:27.000000000 +0200> @@ -879,6 +879,7 @@> if( (pHwData->phy_type == RF_WB_242) ||> (pHwData->phy_type == RF_WB_242_1) ) // 20060619.5 Add> {> +extern void phy_calibration_winbond(hw_data_t *phw_data u32 frequency);> phy_calibration_winbond ( pHwData. 2412 ); // Sync operation> Wb35Reg_ReadSync( pHwData. 0x103c. &BB3c );> Wb35Reg_ReadSync( pHwData. 0x1054. &BB54 );> --- hal_142_o ofic/linux/wbusb c2006-11-29 11:02:54.000000000 +0100> +++ hal_142_o/linux/wbusb c2007-10-21 22:16:19.000000000 +0200> @@ -28,7 +28,6 @@> };> #else> static struct usb_driver wb35_driver = {> - owner =THIS_MODULE,> name ="w35und",> probe =wb35_probe,> disconnect = wb35_disconnect,> --- hal_142_o ofic/wblinux c2006-11-29 10:39:54.000000000 +0100> +++ hal_142_o/wblinux c2007-10-21 23:49:07.000000000 +0200> @@ -98,7 +98,8 @@> BufSize = pRxLayer1->BufferQueue[i]. BufferSize;> BufAddr = pRxLayer1->BufferQueue[i] pBufferAddress;> //DataDmp(BufAddr. BufSize. 0);> - eth_copy_and_sum( skb. BufAddr. BufSize. 0 );> +// eth_io_copy_and_sum( skb. BufAddr. BufSize. 0 );> +skb_copy_from_linear_data(skb. BufAddr. BufSize);> skb_put( skb. BufSize );> }> > > I wonder if I got skb_copy right...?> Pavel> -To unsubscribe from this list: send the line "unsubscribe linux-kernel" inthe body of a message to majordomo@vger kernel orgMore majordomo info at Please read the FAQ at
Forex Groups - Tips on Trading
Related article:
http://lkml.org/lkml/2007/10/22/182
comments | Add comment | Report as Spam
|
"Re: rt73usb: support for wireless in Kohjinsha subnotebook" posted by ~Ray
Posted on 2008-11-17 12:09:15 |
On Mon. 2007-10-22 at 02:09 +0200. Pavel Machek wrote:> Hi!> > > This device is NOT a Ralink USB wifi adapter!> > > > Get the windows driver in this link and see for yourself.> > > > (ISSC W89C35 802.11bg WLAN USB Adapters (Native Wifi driver))> > Thanks a lot. With some patches. I got driver from conitech it to> compile and partly work on 2.6.23. I can now transmit packets but not> yet receive them.> > (use Makefile.26 instead of Makefile)I couldn't find any license info immediately visible; are you sure it'sGPL?Dan> Pavel> > --- hal_142_o ofic/linux/sysdef h2006-11-29 11:12:10.000000000 +0100> +++ hal_142_o/linux/sysdef h2007-10-21 22:21:13.000000000 +0200> @@ -7,7 +7,7 @@> // The definition WB_LINUX is a keyword for this OS> //=============================================================================> #define WB_LINUX> -#define WB_LINUX_WPA_PSK> +//#define WB_LINUX_WPA_PSK> //#define _WPA_PSK_DEBUG> > //#define _IBSS_BEACON_SEQ_STICK_> Only in hal_142_o/linux: w35und ko> Only in hal_142_o/linux: w35und mod c> --- hal_142_o ofic/linux/wb35reg c2006-11-29 11:43:58.000000000 +0100> +++ hal_142_o/linux/wb35reg c2007-10-21 22:19:27.000000000 +0200> @@ -879,6 +879,7 @@> if( (pHwData->phy_type == RF_WB_242) ||> (pHwData->phy_type == RF_WB_242_1) ) // 20060619.5 Add> {> +extern void phy_calibration_winbond(hw_data_t *phw_data u32 frequency);> phy_calibration_winbond ( pHwData. 2412 ); // Sync operation> Wb35Reg_ReadSync( pHwData. 0x103c. &BB3c );> Wb35Reg_ReadSync( pHwData. 0x1054. &BB54 );> --- hal_142_o ofic/linux/wbusb c2006-11-29 11:02:54.000000000 +0100> +++ hal_142_o/linux/wbusb c2007-10-21 22:16:19.000000000 +0200> @@ -28,7 +28,6 @@> };> #else> static struct usb_driver wb35_driver = {> - owner =THIS_MODULE,> name ="w35und",> probe =wb35_probe,> disconnect = wb35_disconnect,> --- hal_142_o ofic/wblinux c2006-11-29 10:39:54.000000000 +0100> +++ hal_142_o/wblinux c2007-10-21 23:49:07.000000000 +0200> @@ -98,7 +98,8 @@> BufSize = pRxLayer1->BufferQueue[i]. BufferSize;> BufAddr = pRxLayer1->BufferQueue[i] pBufferAddress;> //DataDmp(BufAddr. BufSize. 0);> - eth_copy_and_sum( skb. BufAddr. BufSize. 0 );> +// eth_io_copy_and_sum( skb. BufAddr. BufSize. 0 );> +skb_copy_from_linear_data(skb. BufAddr. BufSize);> skb_put( skb. BufSize );> }> > > I wonder if I got skb_copy right...?> Pavel> -To unsubscribe from this list: send the line "unsubscribe linux-kernel" inthe body of a message to majordomo@vger kernel orgMore majordomo info at Please read the FAQ at
Forex Groups - Tips on Trading
Related article:
http://lkml.org/lkml/2007/10/22/182
comments | Add comment | Report as Spam
|
"Re: rt73usb: support for wireless in Kohjinsha subnotebook" posted by ~Ray
Posted on 2008-11-17 12:09:15 |
On Mon. 2007-10-22 at 02:09 +0200. Pavel Machek wrote:> Hi!> > > This device is NOT a Ralink USB wifi adapter!> > > > Get the windows driver in this link and see for yourself.> > > > (ISSC W89C35 802.11bg WLAN USB Adapters (Native Wifi driver))> > Thanks a lot. With some patches. I got driver from conitech it to> compile and partly work on 2.6.23. I can now transmit packets but not> yet receive them.> > (use Makefile.26 instead of Makefile)I couldn't find any license info immediately visible; are you sure it'sGPL?Dan> Pavel> > --- hal_142_o ofic/linux/sysdef h2006-11-29 11:12:10.000000000 +0100> +++ hal_142_o/linux/sysdef h2007-10-21 22:21:13.000000000 +0200> @@ -7,7 +7,7 @@> // The definition WB_LINUX is a keyword for this OS> //=============================================================================> #define WB_LINUX> -#define WB_LINUX_WPA_PSK> +//#define WB_LINUX_WPA_PSK> //#define _WPA_PSK_DEBUG> > //#define _IBSS_BEACON_SEQ_STICK_> Only in hal_142_o/linux: w35und ko> Only in hal_142_o/linux: w35und mod c> --- hal_142_o ofic/linux/wb35reg c2006-11-29 11:43:58.000000000 +0100> +++ hal_142_o/linux/wb35reg c2007-10-21 22:19:27.000000000 +0200> @@ -879,6 +879,7 @@> if( (pHwData->phy_type == RF_WB_242) ||> (pHwData->phy_type == RF_WB_242_1) ) // 20060619.5 Add> {> +extern void phy_calibration_winbond(hw_data_t *phw_data u32 frequency);> phy_calibration_winbond ( pHwData. 2412 ); // Sync operation> Wb35Reg_ReadSync( pHwData. 0x103c. &BB3c );> Wb35Reg_ReadSync( pHwData. 0x1054. &BB54 );> --- hal_142_o ofic/linux/wbusb c2006-11-29 11:02:54.000000000 +0100> +++ hal_142_o/linux/wbusb c2007-10-21 22:16:19.000000000 +0200> @@ -28,7 +28,6 @@> };> #else> static struct usb_driver wb35_driver = {> - owner =THIS_MODULE,> name ="w35und",> probe =wb35_probe,> disconnect = wb35_disconnect,> --- hal_142_o ofic/wblinux c2006-11-29 10:39:54.000000000 +0100> +++ hal_142_o/wblinux c2007-10-21 23:49:07.000000000 +0200> @@ -98,7 +98,8 @@> BufSize = pRxLayer1->BufferQueue[i]. BufferSize;> BufAddr = pRxLayer1->BufferQueue[i] pBufferAddress;> //DataDmp(BufAddr. BufSize. 0);> - eth_copy_and_sum( skb. BufAddr. BufSize. 0 );> +// eth_io_copy_and_sum( skb. BufAddr. BufSize. 0 );> +skb_copy_from_linear_data(skb. BufAddr. BufSize);> skb_put( skb. BufSize );> }> > > I wonder if I got skb_copy right...?> Pavel> -To unsubscribe from this list: send the line "unsubscribe linux-kernel" inthe body of a message to majordomo@vger kernel orgMore majordomo info at Please read the FAQ at
Forex Groups - Tips on Trading
Related article:
http://lkml.org/lkml/2007/10/22/182
comments | Add comment | Report as Spam
|
"Re: rt73usb: support for wireless in Kohjinsha subnotebook" posted by ~Ray
Posted on 2008-06-19 07:07:50 |
On Monday 22 October 2007 17:52:57 Ivo van Doorn wrote:> On Monday 22 October 2007. Pavel Machek wrote:> > Hi!> >> > > > > This device is NOT a Ralink USB wifi adapter!> > > > >> > > > > Get the windows driver in this link and see for yourself.> > > > > > > > > > (ISSC W89C35 802.11bg WLAN USB Adapters (Native Wifi driver))> > > >> > > > Thanks a lot. With some patches. I got driver from conitech it to> > > > compile and partly work on 2.6.23. I can now transmit packets but not> > > > yet receive them.> > > >> > > > (use Makefile.26 instead of Makefile)> > >> > > I couldn't find any license info immediately visible; are you sure it's> > > GPL?> >> > Yes. I'm quite sure. There's MODULE_LICENCE("GPL"). IIRC.>> That doesn't say much some manufacturers add that line to their driver> just to prevent the module loader complaining about a non-GPL driver...>> There should be a copyright notice or a license file accompanied with> the driver that clearly states the license of the driver. Lacking an explicitly stated license it can be argued that since the MODULE_LICENSE() macro is meant to define the actual license on the code this code is GPL. No it isn't an explicit definition but lacking any other signs of the license the implicit declaration of it being GPL is (or should be) enough to deflect charges of copyright infringement. DRH-- Dialup is like pissing through a pipette. decrease and excruciatingly painful.-To unsubscribe from this enumerate: displace the line "unsubscribe linux-kernel" inthe body of a message to majordomo@vger kernel orgMore majordomo info at Please read the FAQ at
Forex Groups - Tips on Trading
Related article:
http://lkml.org/lkml/2007/10/22/310
comments | Add comment | Report as Spam
|
"Re: rt73usb: support for wireless in Kohjinsha subnotebook" posted by ~Ray
Posted on 2008-03-15 23:44:27 |
Hi!> > > This device is NOT a Ralink USB wifi adapter!> > > > > > Get the windows driver in this link and see for yourself.> > > > > > (ISSC W89C35 802.11bg WLAN USB Adapters (Native Wifi driver))> > > > Thanks a lot. With some patches. I got driver from conitech it to> > hive away and partly work on 2.6.23. I can now transfer packets but not> > yet receive them.> > > > (use Makefile.26 instead of Makefile)> > I couldn't sight any license info immediately visible; are you sure it's> GPL?Yes. I'm quite sure. There's MODULE_LICENCE("GPL"). IIRC. Pavel-- (english) (cesky pictures) -To unsubscribe from this list: send the lie "unsubscribe linux-kernel" inthe body of a message to majordomo@vger kernel orgMore majordomo info at gratify read the FAQ at
Forex Groups - Tips on Trading
Related article:
http://lkml.org/lkml/2007/10/22/300
comments | Add comment | Report as Spam
|
"Re: rt73usb: support for wireless in Kohjinsha subnotebook" posted by ~Ray
Posted on 2008-01-01 22:56:36 |
Hi!> > > Yes. I'm quite sure. There's MODULE_authorise("GPL"). IIRC.> >> > That doesn't say much some manufacturers add that line to their driver> > just to prevent the module loader complaining about a non-GPL driver...> >> > There should be a copyright notice or a license file accompanied with> > the driver that clearly states the license of the driver.> > Lacking an explicitly stated license it can be argued that since the > MODULE_LICENSE() macro is meant to define the actual authorise on the label. > this code is GPL. No it isn't an explicit definition but lacking any other > signs of the license the implicit declaration of it being GPL is (or should > be) enough to deflect charges of procure infringement. Yep. I believe this driver is GPLed. They published the source andthere's nothing to declare otherwise and there's explicit:#be DRIVER_AUTHOR "Jeff Lee<YY_Lee@issc com tw>"#be DRIVER_DESC "IS89C35 802.11bg WLAN USB Driver"MODULE_LICENSE("GPL");Pavel-- (english) (cesky pictures) -To unsubscribe from this list: send the lie "unsubscribe linux-kernel" inthe body of a message to majordomo@vger kernel orgMore majordomo info at Please construe the FAQ at
Forex Groups - Tips on Trading
Related article:
http://lkml.org/lkml/2007/10/22/316
comments | Add comment | Report as Spam
|
"Re: rt73usb: support for wireless in Kohjinsha subnotebook" posted by ~Ray
Posted on 2007-12-15 15:19:04 |
On Monday 22 October 2007. Pavel Machek wrote:> Hi!> > > > > This device is NOT a Ralink USB wifi adapter!> > > > > > > > Get the windows driver in this link and see for yourself.> > > > > > > > (ISSC W89C35 802.11bg WLAN USB Adapters (Native Wifi driver))> > > > > > Thanks a lot. With some patches. I got driver from conitech it to> > > hive away and partly work on 2.6.23. I can now transfer packets but not> > > yet receive them.> > > > > > (use Makefile.26 instead of Makefile)> > > > I couldn't find any license info immediately visible; are you sure it's> > GPL?> > Yes. I'm quite sure. There's MODULE_LICENCE("GPL"). IIRC. That doesn't say much some manufacturers add that lie to their driver just to prevent the module loader complaining about a non-GPL driver... There should be a copyright notice or a license register accompanied withthe driver that clearly states the authorise of the driver. Ivo-To unsubscribe from this enumerate: send the lie "unsubscribe linux-kernel" inthe body of a message to majordomo@vger kernel orgMore majordomo info at Please read the FAQ at
Forex Groups - Tips on Trading
Related article:
http://lkml.org/lkml/2007/10/22/306
comments | Add comment | Report as Spam
|
"ASUS EEE Subnotebook for sale on NewEgg - $399.99" posted by ~Ray
Posted on 2007-12-09 13:41:28 |
Personal computing has never been so portable or so affordable. The new EeePC a joint go between Intel and Asus is designed to be your constant companion and your elegant yet affordable introduction to computing. Weighing in at only 2 pounds with a be and highly-readable seven-inch display the EeePC is ameliorate little assistant.
w00t just placed my request. This is starting to look like my week. Eee-pc and GP2X F-200. Just missing a Nokia N810 to round it out. ;)
Get a real-time look beneath the surface in the with our tools and. Also see our original real-time tracking system.
NEW! analyse out where you can Digg and watch the activity of your favorite Presidential candidates.
--> DIGG. DIGG IT. DUGG. DIGG THIS. Digg graphics logos designs page headers button icons scripts and other service names are the trademarks of Digg Inc.
Forex Groups - Tips on Trading
Related article:
http://digg.com/linux_unix/ASUS_EEE_Subnotebook_for_sale_on_NewEgg_399_99
comments | Add comment | Report as Spam
|
|
|
|
|
| |
|