OpenSolaris
Collectives
Discussions
Documentation
Download
Source Browser
Free CD
Log-in
|
en
Community Group laptop
:
Wireless Networking
>
atu driver
Top Menu
Show
:
Comments
Attachments
History
Information
Print
:
Print
Print preview
Export as PDF
Export as RTF
Export as HTML
Export as XAR
Wiki code for
atu driver
Hide Line numbers
1: == Atmel AT76C50x USB IEEE 802.11b Wireless Device Driver (atu) == 2: 3: The current version is 0.1 4: 5: This driver is based on the source code from OpenBSD, and is provided 6: under the same BSD-type License. 7: 8: === Links === 9: 10: * [[SUNWatu>>../../downloads/atu-0.1-pkg.tar.gz]] package (v0.1)  11: 12: Note that this version supports 802.11b, WEP 13: 14: Note that the atu driver works under Opensolaris build 105+ 15: 16: === Requirements === 17: 18: Before downloading the source or installing the binaries, please 19: make sure that your system meets the following requirements: 20: 21: * Atmel AT76C50x USB based 802.11b devices. 22: * Solaris Nevada build 105+ 23: 24: === Hardwares === 25: 26: The following adapters should work: 27: |=Vendor |=Product 28: |=Linksys |=WUSB11 ver. 2.8 29: 30: The following adapters are supposed to work, but not tested: 31: |=Vendor |=Product 32: |=3Com |=3CRSHEW696 33: |=AboCom |=BWU613 34: |=Accton |=2664W 35: |=Acer |=Peripherals AWL300 36: |=Acer |=Peripherals AWL400 37: |=Actiontec |=802UAT1 38: |=Addtron |=AWU120 39: |=Aincomm |=AWU2000B 40: |=Askey |=Computer Voyager 1010 41: |=Askey |=Computer WLL013 (Intersil Radio) 42: |=Askey |=Computer WLL013 (RFMD Radio) 43: |=Atmel |=AT76C503 (Intersil Radio) 44: |=Atmel |=AT76C503 (RFMD Radio) 45: |=Atmel |=AT76C505 (RFMD Radio) 46: |=Atmel |=AT76C505 (RFMD 2958 Radio) 47: |=Atmel |=AT76C505A (RFMD 2958 Radio) 48: |=Atmel |=AT76C505AS (RFMD 2958 Radio) 49: |=Belkin |=F5D6050 50: |=Bluetake |=BW002 51: |=Compaq |=iPAQ h54xx/h55xx Internal WLAN 52: |=Conceptronic |=C11U 53: |=Conceptronic |=WL210 54: |=Corega |=WLAN USB Stick 11 55: |=Dick Smith Electronics |=CHUSB 611G 56: |=Dick Smith Electronics |=WL200U 57: |=Dick Smith Electronics |=WL240U 58: |=Dick Smith Electronics |=XH1153 59: |=D-Link |=DWL-120 rev E 60: |=Geowave |=GW-US11S 61: |=Gigabyte |=GN-WLBM101 62: |=Gigaset |=WLAN 63: |=Hewlett-Packard |=HN210W 64: |=Intel |=AP310 AnyPoint II 65: |=I/O DATA |=USB WN-B11 66: |=Lexar |=2662W-AR 67: |=Linksys |=WUSB11 802.11b 68: |=MSI |=WLAN 69: |=Netgear |=MA101 70: |=Netgear |=MA101 rev B 71: |=OQO |=model 01 WiFi 72: |=Ovislink |=AirLive WL-1120USB 73: |=OvisLink |=AirLive WL-1130USB 74: |=Planex |=Communications GW-US11S 75: |=Samsung |=SWL2100W 76: |=Siemens |=WLL013 77: |=SMC |=EZ Connect 11Mbps (SMC2662w) 78: |=SMC |=EZ Connect 11Mbps v2 (SMC2662wV2) 79: |=Tekram |=U-300C 80: |=TRENDnet |=TEW-229UB 81: |=W-Buddie |=WN210 82: |=Z-Com |=M4Y-750 83: 84: === How to use === 85: 86: The easiest way to install the driver is from pre-compiled [[binary package>>../../downloads/atu-0.1-pkg.tar.gz]]: 87: 88: {{{ 89: # wget http://www.opensolaris.org/os/community/laptop/downloads/atu-0.1-pkg.tar.gz 90: # gzip -dc atu-0.1-pkg.tar.gz | tar xvf - 91: # pkgadd -d . SUNWatu 92: }}} 93: 94: You should be able to see the interface right after installing this 95: package without having to reboot first: 96: 97: {{{ 98: # dladm show-link 99: # ifconfig atu1 plumb 100: }}} 101: 102: If plumbing failed, your card may be not supported or there is no driver alias for it. Please try: 103: 104: {{{ 105: # echo ’::prtusb’ | mdb -k (check your device vendor ID and product ID) 106: # update_drv -a -i ’usbxxxx,xxxx’ atu (manually add the device to driver alias) 107: }}} 108: 109: If the above commands failed, please send us a note and we’ll try to help. 110: 111: If you can plumb the atu1 interface, you can use wificonfig/dladm to config the wireless interface. Alternatively, you can enable nwam. 112: 113: {{{ 114: # svcadm disable physical:default 115: # svcadm enable physical:nwam 116: }}} 117: 118: You will have to use a little trick to make the device hotplugging work. 119: If you disconnected the device while the interface is plumbed and reconnected it to the USB port again, driver will print a warning messages (in /var/adm/messages): 120: 121: {{{ 122: WARNING: atu1: device open, stage2 firmware not loaded 123: }}} 124: 125: Then you need to gently unplug the USB connector only half way out of the hub (about 2 milimeters) the data pins are disconnected from the hub, but the device is still powered. This means the hub will detect the device is gone, but the firmware will stay in the RAM of the device. When you plug the device back in now, the hub will detect the device again. Doing this is fairly easy, but it won’t always work on the first attempt. Just try a couple of times. 126: 127: Once the stage2 firmware loaded, you will see a notification (in /var/adm/messages): 128: 129: {{{ 130: NOTICE: atu1: stage2 firmware loaded 131: }}} 132: 133: From this point on, the device is ready. Happy networking. 134: 135: === Notes === 136: 137: This is work in progress. Please send your questions and comments <mailto:laptop-discuss@opensolaris.org> discussion forum.
Search
Collectives
Community Group
Academic and Research
Accessibility
Advocacy
Appliances
Approachability
Architecture Process and Tools
BrandZ
Chinese Users
Community Advisory Board
Databases
Desktop
Device Drivers
Distribution
Documentation
DTrace
Emerging Platforms
Fault Management
Games on OpenSolaris
HA Clusters
HPC Developer
Installation and Packaging
Internationalization and Localization
Laptop
Logical Domains
Modular Debugger (MDB)
Networking
NFS
Observability
OpenSolaris Governing Board (OGB)
OpenSolaris Printing
OS/Net (ON)
Performance
Power Management
PowerPC
Security
Service Management Facility (smf(5))
Software Porters
Solaris Volume Manager
Storage
Systems Administration Community Group
Testing
Tools Home
Unix File Systems (UFS)
Website Community
X Window System
Xen
ZFS
Zones
Project
ADSL Modem Enhancement
ARC Process Definition
ARM Platform Port
Automatic Data Migration
BIND Update
Bluetooth Stack & Drivers
Brocade FC HBA - Initiator
Brocade FC HBA - Target
Brussels - unified network link configuration
Caiman, Solaris Install Revisited
Celeste
Český portál
Chime Visualization Tool for DTrace
CIFS client for Solaris
CIFS Server
Clearview: Network Interface Coherence
Cluster Agent: Informix Dynamic Server
Cluster Agent: OpenSolaris Container
Cluster Agent: OpenSolaris xVM
Cluster Agent: Oracle E-Business Suite
Cluster agent: PostgreSQL
Cluster Agent: Samba
Cluster Agent: Tomcat
CMT
Coarse Data Flow Parallelism
Colorado: Open HA Cluster on OpenSolaris
Command Assistant
Common Array Manager
Companion - /opt/sfw: Free and Open Source software
COMSTAR: Common Multiprotocol SCSI Target
Content
Contest
CPU Observability
Credentials Process Groups
Crossbow: Network Virtualization and Resource Control
Crypto KMS Agent Toolkit
Cryptographic Framework
Data Migration Manager
Data Tethers
Deutsches Portal
Device Detection Tool
Device Driver Utility
Device Manager
Device Mapper
Direct Rendering Infrastructure & 3D drivers
DTrace Guide
Duckwater: Simplified name services management
Easy Tools
Emancipation
Emulex Fibre Channel Device Driver
Emulex Advanced Ethernet Device Driver
Enable/Enhance Solaris support for Intel Platform
Enhance the support of USB webcams
Enhanced SMF Profiles
Enhancements for AMD-based Platforms
Erlang DTrace Integration
Ethernet bridge module for Solaris
Evaluate Conary
Events Registry
Ext3 file system support
F/OSS Package Base
Facilitation
Fibre Channel over Ethernet
Fine Grained Access Policy (FGAP)
Fingerprint Authentication
Flexible Mandatory Access Control
Forensic Tools
Fully Open X Project
Fuse on Solaris
gcore
Generic Machine Check Architecture Improvements
Google SOC
HA-JBoss
HA-MySQL
Hadoop Live CD
Hitachi
HoneyComb Fixed Content Storage
HPC Stack
Image Packaging System
Improved Performance MIB
Indiana
Innovation Awards
Input Method
Intel Graphics
Interrupt Resource Management
IP Datapath Refactoring
IP over Infiniband
IPsec Tunnel Reform
iSCSI Extensions for Remote DMA (iSER)
iSNS Server
JeOS - Just enough Operating System
JKstat - a java binding for libkstat
Journaled File System (JFS)
K Desktop Environment
Kerberos
Kernel Sockets
Kernel SSL Enhancements
Key Management Framework
Korn Shell 93 integration/migration project
Labeled IPsec
LatencyTOP
Layer 2 Filtering
LDoms Manager
Lending
libMicro - portable microbenchmarks
Link Layer Discovery
Live Media: Technologies for distributions running from CD and other media
Locale Data
lofi compression and cryptography support
lx64 brand
Media Management System
Mega_sas
Mexico
MilaX minimal Live Distribution
MIPS Platform Port
Mozilla DTrace
MRSL.NONsharedDevice
Multi-lingual Glossary
Multi-pathing software (MPxIO)
Multiple disk sector size support
Multiple DOI
Muskoka: An open repository for OpenSolaris technical content
Navigator
Nemo: A Framework for High-Performance Networking
Network Auto-Magic
Network Data Management Protocol
Network MIBs
Network Storage
Network Time Protocol (NTP)
Nevada Globalization
New Design of 4over6 Mechanism Based on OpenSolaris
NFS RDMA transport update and performance analysis
NFS Server in non-Global Zones
NFS version 4.1 pNFS
NFSv4 namespace extensions
Nightingale: Port Songbird to OpenSolaris
NPort ID Virtualization (NPIV)
NUMA
Object Storage Device (OSD) support for Solaris
OHACGE Script Based Plug-in
ON/Nevada (ONNV) Project
Open Development Infrastructure
Open HA Cluster Utilities
Open Sound System
OpenGrok
OpenPegasus CIM Server
OpenRTI
OpenSolaris Busybox
OpenSolaris Desktop
OpenSolaris Hispano
OpenSolaris Security Audit
OpenSolaris support for the QEMU processor emulator: host and guest
PEF: Packet Event Framework
Performance Wrappers
Pkgfactory
Polski Portal
Portail Francophone
Portal Brasil
Portals
Power Management Usability Interfaces
Presto: Automatic Printing Configuration
Printable Many Page Solaris Manuals
Promise SuperTrak RAID HBA Driver
QLogic Converged Network Adapter GLDv3 NIC Driver
Quagga Routing Protocol Suite Integration
RAID Configuration Utility
RBridge (IETF TRILL) support
RDMA Offload Framework
Reno: Login Process Enhancements for Interop
Resource Management
s10brand
SAM/QFS
SCM Migration Project
SCSI RDMA Protocol
SDcard Drivers
Sensor Abstraction Layer
Session Initiation Protocol
SFW
Shell: bourne shell, korn shell, C shell, etc.
Sierra: Intel WiFi Chipsets Support
Simple Panels
SM-HBA Based SAS HBA Management
SMF Documentation
Solaris iSCSI Target
Solaris PowerPC Port
SourceJuicer
Sparks: name service switch/nscd enhancements
Squashfs
Star integration/migration project
Starfish
Starter Kit
Storage Power Management
Sun Security Toolkit
Sun StorageTek Availability Suite
Support for OpenFabrics User Verbs / API on OpenSolaris OS
Support gcc4/GCCfss in Solaris
Suspend/Resume
SVR4 Packaging
Systemz
Tamarack: Removable Media Enhancements in Solaris
Tesla: OpenSolaris Enhanced Power Management
Test Development
Tickless Kernel Architecture
TIPC
Trademarks
Trusted networking interface policy database for Trusted Extensions
Trusted Platform Module support
Use Case
Validated Execution Project
Virtual Console
Virtual Network Machines
Visual Panels
Visualization for HPC
Volo
VRRP: Virtual Router Redundancy Protocol Implementation
VSCAN service
Web Stack
Website
Winchester: Schema mapping and ID mapping for AD Interoperability
Wireless USB Support
Wireless Wide Area Network
X Consolidation
x86 Generic FMA Topology Enumerator
Xen Gate
Xfce: A lightweight desktop environment
ZFS Boot and Install
ZFS on disk encryption support
Zone Manager
Zone Statistics
Русский портал
البوابة العربية
भारतीय पोर्टल
中国门户
日本ポータル
한국 포탈
User Group
Adelaide
Argentina
Arizona
Atlanta
Baltimore-Washington
Bangalore
Bangkok
Bangladesh
Beijing
Bélem
Berlin
Bhimavaram
Bloomington
Campus Ambassadors
Capital Region
Cardiff
Charlotte
Chengdu
Chennai
Chihuahua
Chile
Cleveland
Colombia
Columbus
Connecticut
Cracow
Czech
Dallas/Ft. Worth
Danish
Delaware
Edinburgh
Egypt
Finland
Florida
Front Range
FuZhou
Great Lakes
Greece
Hangzhou
Hawaii
HeFei
Houston
Hyderabad
Indonesia
Irish
Israel
Italian
Jinan
Kabul
Kansas City
Latvia
London
Madurai
Manchester
Mato Grosso
Melbourne
Minas Gerais
Minnesota
Montreal
Moscow
Mumbai
Munich
NEA
Netherlands
New England
New York City
New Zealand
NIT Hamirpur
Noroeste
Oklahoma City
Osnabrück
Peru
Philadelphia
Piaski
Pittsburgh
Porto Alegre
Puget Sound
Pune
Queensland
Research Triangle Park
Romania
Russia
San Antonio
San Diego
San Francisco
São Paulo
Scottish
Serbia
Shanghai
Shenzhen
Silicon Valley
Singapore
Slovak
South African
Southern Connecticut
St. Louis
Sweden
Switzerland
Sydney
Szczecin
Taiwan
Tecum
Thames Valley
Tokyo
Toronto
Trondheim
Tulsa
Turkey
Ukraine
University of Melbourne
Vale do Paraíba
Vancouver
Venezuela
Welsh - Cymru
Wisconsin
Xi'an
Subsites
Code Reviews
Code Repositories
Package Search
Bugster
Bugzilla
Test Machines
Planet
Mailing Lists
Elections & Polls
ARC Case Logs
Source Juicer
Package Factory
User Authentication
Community Group laptop Pages
Completed Laptop CRs
Contributors
HAL Cpufreq
Enhanced ACPI support
Intel Active Management Technology
Downloads
frkit
Gnome Power Management
Hotkey Display Device Switch
Solaris Laptop Hotkey Support
Inetmenu
Power Management
Suspend and Resume
Wireless Networking
Solaris Wireless FAQ
arn driver
ath driver
atu driver
cardbus driver
ipw driver
iwi driver
iwk driver
malo driver
mwl driver
ndis wrapper
pcan driver
pcwl driver
ral driver
rtw driver
rum driver
rwd driver
rwn driver
uath driver
ural driver
urtw driver
wificonfig
WiFi Devices List
wpa_supplicant
wpi driver
zyd driver