OpenSolaris
Collectives
Discussions
Documentation
Download
Source Browser
Free CD
Log-in
|
en
Community Group laptop
:
Wireless Networking
>
Solaris Wireless FAQ
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
Solaris Wireless FAQ
Hide Line numbers
1: === Solaris Wireless FAQ 2: 3: Jan. 25, 2008 4: 5: ---- 6: 7: **Contents:** 8: 9: * [[Solaris Wireless General Information>>#base]][[ How to install Solaris WiFi driver?>>#base1]] 10: [[ My laptop has WiFi driver installed, how come it doesn’t work?>>#base2]] 11: [[ How to BFU the latest build from external network?>>#base3]] 12: [[ How do I know what features my WiFi driver supports?>>#base4]] 13: [[ How to set up console to monitor what happens when system hangs?>>#base5]] 14: [[ Is there any WiFi support in S10 and updates?>>#base6]] 15: [[ Is there any GUI tool for WiFi that I can use in Solaris?>>#base7]] 16: [[ I do not know how to use command line tool for WiFi set up, do you have any document that I can refer to?>>#base8]] 17: [[ Do I have to compile WiFi drivers downloaded from the OpenSolaris webpage? Can I get the binary directly?>>#base9]] 18: [[ Which WiFi driver supports SPARC platform?>>#base10]] 19: [[ How can I get debug message output?>>#base11]] 20: * [[Driver Information>>#driver]][[wpi(Intel Wireless 3945)>>#wpi]] 21: [[ The wpi(Intel 3945 driver) doesn’t work because of I/O error, is there any work around for this?>>#wpi1]] 22: [[ The wpi has permission denied error, how to fix it?>>#wpi2]] 23: [[WPA>>#wpa]] 24: [[ I installed the latest build which is supposed to support WPA, how come it doesn’t work?>>#wpa1]] 25: [[ I can connect to my access point successfully, but I can not get an IP address through DHCP. Why?>>#wpa2]] 26: [[ The wpa_supplicant fails to start with error message "ld.so.1: wpa_supplicant: fatal : libssl.so.0.9.7: open failed: No such file or directory". What does it mean?>>#wpa3]] 27: [[ The WPA EAP-TLS does not work, why? >>#wpa4]] 28: [[ Why doesn’t WPA2/CCMP encryption work?>>#wpa5]] 29: [[ndis>>#ndis]] 30: [[ Can ndis wrapper support other chipsets besides Broadcom?>>#ndis1]] 31: [[ Why ndis wrapper doesn’t work on my AMD64bit laptop?>>#ndis2]] 32: [[ How to build and compile the ndiswrapper code?>>#ndis3]] 33: [[ipw & iwi>>#ipw]] 34: [[ I found "radio" parameter is supported by wificonfig command, can I set radio on using wificonfig?>>#ipw1]] 35: 36: * [[NOTE>>#driver]] 37: **Solaris Wireless GENERAL INFORMATION ** 38: ---- 39: ** 1. 40: Q: How to install WiFi driver?** 41: *** Step 1: Check WiFi hardware 42: 43: {{{ 44: # prtconf -pv 45: }}} 46: 47: You can grep "pciclass, 028000" for WiFi card’s vendor id, and device id; To check [[compatible list>>Community Group laptop.wireless_driver_compatible_list]] to make sure it is supported. 48: You can also read information from scanpci output directly to check if the hardware is supported or not: 49: 50: {{{ 51: # /usr/X11/bin/scanpci -v 52: }}} 53: 54: *** Step 2: Choose right driver & right versions according to the [[compatible list>>Community Group laptop.wireless_driver_compatible_list]] ; 55: *** Step 3: Install driver by specific command: 56: 57: {{{ 58: # cp driver_32bit /kernel/drv 59: # cp driver_64bit /kernel/drv/amd64 60: # add_drv -i ’"pcixxxx,xxxx"’ driver_name 61: }}} 62: 63: or, install driver by pkgadd command: 64: 65: {{{ 66: # pkgadd -d . SUNWxxxx 67: }}} 68: 69: [[top>>#0]][[ opensolaris wireless >>Community Group laptop.wireless]] 70: ** 2. 71: Q: My laptop has WiFi driver installed, how come it doesn’t work?** 72: *** Make sure driver is correctly installed by: 73: 74: {{{ 75: # modinfo | grep [driver_name] 76: }}} 77: 78: Also, run devfsadm to make sure a link to WiFi interface is created under /dev: 79: 80: {{{ 81: # devfsadm -i [driver_name] 82: }}} 83: 84: *** Do not forget plumb interface: 85: 86: {{{ 87: # ifconfig [WiFi_interface] plumb 88: }}} 89: 90: *** Make sure radio switch is ON. It is very easy to be neglected. Although wificonfig support get radio status, but not all drivers support this feature. For ipw and iwi drivers, you can try: 91: 92: {{{ 93: # wificonfig getparam radio 94: }}} 95: 96: *** If you are using build(snv_62+), you can try GUI tool nwam. The usability is friendly. Initiate it, by: 97: 98: {{{ 99: # svcadm disable svc:/network/physical:default 100: # svcadm enable svc:/network/physical:nwam 101: }}} 102: 103: *** If GUI doesn’t work, or you run earlier build, or you want to try command line tools(dladm), you can try some basic commands: 104: 105: {{{ 106: # svcadm disable nwam /* disable nwam firstly */ 107: # dladm scan-wifi 108: # dladm show-wifi 109: }}} 110: 111: For WEP/WPA network, please create security object first: 112: 113: {{{ 114: # dladm create-secobj -c wep/wpa [key_name] 115: ...input key here... 116: }}} 117: 118: Then, you can connect to a specific AP: 119: 120: {{{ 121: # dladm connect-wifi -e [essid_name] -k [key_name] [WiFi_interface] 122: }}} 123: 124: for other scenario, dladm manpage has more detailed information. 125: *** The other command line tool, wificonfig, can be used as well: 126: 127: {{{ 128: # wificonfig -i [WiFi_interface] scan 129: }}} 130: 131: wificonfig support profile, so user can connect to specific profile directly: 132: 133: {{{ 134: # wificonfig createprofile [myprofile_name] essid=[essid_name] encryption=wep wepkey1=[key] 135: # wificonfig -i [WiFi_interface] connect [myprofile_name] 136: }}} 137: 138: for more usage, please refer to wificonfig manage. 139: [[laptop community>>mailto:laptop-discuss@opensolaris.org]] 140: [[top>>#0]][[ opensolaris wireless >>Community Group laptop.wireless]] 141: ** 3. 142: Q: How to BFU the latest build from external network?** 143: [[http://www.enderunix.org/opensolaris/docs/building_opensolaris.txt>>http://www.enderunix.org/opensolaris/docs/building_opensolaris.txt]] 144: [[top>>#0]][[ opensolaris wireless >>Community Group laptop.wireless]] 145: ** 4. 146: Q: How do I know what features my WiFi driver supports?**[[laptop community>>mailto:laptop-discuss@opensolaris.org]] 147: [[compatible list>>Community Group laptop.wireless_driver_compatible_list]] 148: [[top>>#0]][[ opensolaris wireless >>Community Group laptop.wireless]] 149: ** 5. 150: Q: How to set up console to monitor what happens when system hangs?** 151: 152: {{{ 153: 1. # eeprom console=ttya /* redirect console */ 154: 2. # eeprom boot-file=kmdb /* enable kmdb at boot */ 155: 3. # reboot 156: 4. connect the serial port in you laptop to that in another machine with a 157: DB9 serial cable. 158: }}} 159: 160: {{{ 161: 5. # tip -9600 /dev/ttya /* open a serial console */ 162: }}} 163: 164: {{{ 165: 6. push key ’Shift’+’~’+’#’ /* enter kmdb */ 166: 7. in kmdb 167: 7.1 >pcwl_intr:b /* set breakpoint */ 168: 7.2 >:c /* continue */ 169: 7.3 >$C /* print the interrupt stack frame */ 170: }}} 171: 172: [[top>>#0]][[ opensolaris wireless >>Community Group laptop.wireless]] 173: ** 6. 174: Q: Is there any WiFi support in S10 and updates?** 175: [[top>>#0]][[ opensolaris wireless >>Community Group laptop.wireless]] 176: ** 7. 177: Q: Is there any GUI tool for WiFi that I can use in Solaris?** 178: 179: {{{ 180: # svcadm disable svc:/network/physical:default 181: # svcadm enable svc:/network/physical:nwam 182: }}} 183: 184: {{code}}# man nwamd{{/code}} 185: [[top>>#0]][[ opensolaris wireless >>Community Group laptop.wireless]] 186: ** 8. 187: Q: I do not know how to use command line tool for WiFi set up, do you have any document that I can refer to?**{{code}}dladm{{/code}}{{code}}wificonfig{{/code}} 188: *** Please refer to the document "System Administration Guide: IP Services" on how to configure WiFi with dladm: 189: [[http://docs.sfbay.sun.com/app/docs/doc/819-3000/gduew?a=view>>http://docs.sfbay.sun.com/app/docs/doc/819-3000/gduew?a=view]] 190: When this section was written, WPA was not supported. So for setting WPA, you still need to {{code}}# man dladm{{/code}} and check {{code}}dladm create-secobj{{/code}} section. 191: Detailed info about nwam is on opensolaris.org: 192: [[http://opensolaris.org/os/project/nwam/>>Project nwam.WebHome]] 193: Currently phase 0 has been integrated into OpenSolairs b62. 194: *** Wificonfig is going to be obsolete. But as it’s the first WiFi configuration tool and has been there for years, many GUI tools, like inetmenu and the network admin panel, are developed on its basis. The available doc is {{code}}# man wificonfig{{/code}}. 195: 196: {{{ 197: # dladm create-secobj -c wpa wpa_key 198: # dladm connect-wifi -e ap_name -k wpa_key 199: }}} 200: 201: [[top>>#0]][[ opensolaris wireless >>Community Group laptop.wireless]] 202: ** 9. 203: Q: Do I have to compile WiFi drivers downloaded from the OpenSolaris webpage? Can I get the binary directly?**[[malo, >>Community Group laptop.malo]][[zyd >>Community Group laptop.zyd]][[ndis>>Community Group laptop.ndis]] 204: [[top>>#0]][[ opensolaris wireless >>Community Group laptop.wireless]] 205: ** 10. 206: Q: Which WiFi driver supports SPARC platform?** 207: [[top>>#0]][[ opensolaris wireless >>Community Group laptop.wireless]] 208: ** 11. 209: Q: How can I get debug message output?** 210: 211: {{{ 212: . ath: ath_dbg_flags 213: . wpi: wpi_dbg_flags 214: . ipw: ipw2100_debug 215: . iwi: ipw2200_debug 216: . wpa: wpa_debug_level 217: . ndis: debug-level 218: }}} 219: 220: *** Add debug flag line in the bootom of /etc/system for different drivers: 221: 222: {{{ 223: set driver-name:debug_flag = 0xffffffff 224: }}} 225: 226: *** use mdb to set up message log, for example(wpa): 227: 228: {{{ 229: # echo "wpa_debug_level, 1/w 1" | mdb -p `pgrep wpad` 230: }}} 231: 232: *** modify configuration file, for example(ndis): 233: 234: {{{ 235: insert one line in /kernel/drv/bcmndis.conf: 236: debug-level=0xf; 237: }}} 238: 239: *** a specifical case, wpad(OpenSolaris version), you can use command like below: 240: 241: {{{ 242: # wpa_supplicant -i ath -F -dd 243: }}} 244: 245: [[top>>#0]][[ opensolaris wireless >>Community Group laptop.wireless]] 246: **DRIVER INFORMATION** 247: ---- 248: **1. wpi(Intel Pro. Wireless 3945 chip) :**[[ -> OpenSolaris WPI page>>Community Group laptop.wpi]] 249: ---- 250: ** 1.1 251: Q: The wpi(Intel 3945 driver) doesn’t work because of I/O error, is there any work around for this? 252: 1.2 253: Q: The wpi has permission denied error, how to fix it?**{{code}}# ifconfig wpi0 plumb{{/code}} 254: 255: {{{ 256: # ifconfig wpi0 plumb 257: ifconfig: plumb: wpi0: I/O error 258: # ifconfig wpi0 plumb 259: ifconfig: SIOCSLIFNAME for ip: wpi0: permission denied 260: }}} 261: 262: [[CR6419924>>http://bugs.opensolaris.org/view_bug.do?bug_id=6419924]] 263: [[wpi-bdg-workaround.tar.gz>>attach:Community Group laptop.downloads@wpi-bdg-workaround.tar.gz]] 264: 265: {{{ 266: # gzip -dc wpi-bdg-workaround.tar.gz | tar xvf - 267: # ./wpi_bdg_workaround.ksh 268: }}} 269: 270: [[top>>#0]][[ opensolaris wireless >>Community Group laptop.wireless]] 271: **2. WPA(wireless protected access) :**[[ -> OpenSolaris WPA page>>Community Group laptop.wpa]] 272: ---- 273: ** 2.1 274: Q: I installed the latest build which is supposed to support WPA, how come it doesn’t work? 275: 2.2 276: Q: I can connect to my access point successfully, but I can not get an IP address through DHCP. Why?** 277: [[http://www.sun.com/download/index.jsp?cat=Security&tab=3&subcat=Cryptography%20%26%20Encryption>>http://www.sun.com/download/index.jsp?cat=Security&tab=3&subcat=Cryptography%20%26%20Encryption]] 278: [[http://www.opensolaris.org/jive/thread.jspa?threadID=37376&tstart=0>>http://www.opensolaris.org/jive/thread.jspa?threadID=37376&tstart=0]] 279: [[http://dlc.sun.com/osol/on/downloads/current/>>http://dlc.sun.com/osol/on/downloads/current/]] 280: [[top>>#0]][[ opensolaris wireless >>Community Group laptop.wireless]] 281: ** 2.3 282: Q: The wpa_supplicant fails to start with error message "ld.so.1: wpa_supplicant: fatal : libssl.so.0.9.7: open failed: No such file or directory". What does it mean? ** 283: 284: {{{ 285: # /usr/sfw/bin/openssl version 286: OpenSSL 0.9.7d 17 Mar 2004 287: }}} 288: 289: [[top>>#0]][[ opensolaris wireless >>Community Group laptop.wireless]] 290: ** 2.4 291: Q: The WPA EAP-TLS does not work, why?** 292: [[top>>#0]][[ opensolaris wireless >>Community Group laptop.wireless]] 293: ** 2.5 294: Q: Why doesn’t WPA2/CCMP encryption work?**[[top>>#0]][[ opensolaris wireless >>Community Group laptop.wireless]] 295: **3. NDIS Wrapper :**[[ -> OpenSolaris NDIS page>>Community Group laptop.ndis]] 296: ---- 297: ** 3.1 298: Q: Can ndis wrapper support other chipsets besides Broadcom?** 299: [[top>>#0]][[ opensolaris wireless >>Community Group laptop.wireless]] 300: ** 3.2 301: Q: Why ndis wrapper doesn’t work on my AMD64bit laptop?** 302: [[top>>#0]][[ opensolaris wireless >>Community Group laptop.wireless]] 303: ** 3.3 304: Q: How to build and compile the ndiswrapper code?** 305: 306: {{{ 307: # wget http://opensolaris.org/os/community/laptop/wireless//os/community/laptop/downloads/Wireless_Success.pdf 308: }}} 309: 310: [[top>>#0]][[ opensolaris wireless >>Community Group laptop.wireless]] 311: **4. IPW/IWI**[[ -> OpenSolaris ipw page, >>Community Group laptop.ipw]][[ iwi page>>Community Group laptop.iwi]] 312: ---- 313: ** 4.1 314: Q: radio parameter is supported, can I set radio on by command?**{{code}}WL_RADIO{{/code}}{{code}}wificonfig{{/code}}{{code}}# wificonfig -i ipw0 getparam radio{{/code}} 315: [[top>>#0]][[ opensolaris wireless >>Community Group laptop.wireless]]
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
Internet Key Exchange, version 2
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