⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 readme.ipw2200

📁 linux 内核源代码
💻 IPW2200
📖 第 1 页 / 共 2 页
字号:
The Linux kernel provides a pseudo file system that can be used to access various components of the operating system.  The Intel(R)PRO/Wireless 2915ABG Driver for Linux exposes several configurationparameters through this mechanism.An entry in the sysfs can support reading and/or writing.  You can typically query the contents of a sysfs entry through the use of cat, and can set the contents via echo.  For example:% cat /sys/bus/pci/drivers/ipw2200/debug_levelWill report the current debug level of the driver's logging subsystem (only available if CONFIG_IPW2200_DEBUG was configured when the driverwas built).You can set the debug level via:% echo $VALUE > /sys/bus/pci/drivers/ipw2200/debug_levelWhere $VALUE would be a number in the case of this sysfs entry.  The input to sysfs files does not have to be a number.  For example, the firmware loader used by hotplug utilizes sysfs entries for transfering the firmware image from user space into the driver.The Intel(R) PRO/Wireless 2915ABG Driver for Linux exposes sysfs entries at two levels -- driver level, which apply to all instances of the driver (in the event that there are more than one device installed) and device level, which applies only to the single specific instance.1.4.1 Driver Level Sysfs Helper Files-----------------------------------------------For the driver level files, look in /sys/bus/pci/drivers/ipw2200/  debug_level  		This controls the same global as the 'debug' module parameter1.4.2 Device Level Sysfs Helper Files-----------------------------------------------For the device level files, look in		/sys/bus/pci/drivers/ipw2200/{PCI-ID}/For example:	/sys/bus/pci/drivers/ipw2200/0000:02:01.0For the device level files, see /sys/bus/pci/drivers/ipw2200:  rf_kill	read - 	0 = RF kill not enabled (radio on)	1 = SW based RF kill active (radio off)	2 = HW based RF kill active (radio off)	3 = Both HW and SW RF kill active (radio off)	write -	0 = If SW based RF kill active, turn the radio back on	1 = If radio is on, activate SW based RF kill	NOTE: If you enable the SW based RF kill and then toggle the HW  	based RF kill from ON -> OFF -> ON, the radio will NOT come back on	  ucode 	read-only access to the ucode version number  led	read -	0 = LED code disabled	1 = LED code enabled	write -	0 = Disable LED code	1 = Enable LED code	NOTE: The LED code has been reported to hang some systems when 	running ifconfig and is therefore disabled by default.1.5. Supported channels-----------------------------------------------Upon loading the Intel(R) PRO/Wireless 2915ABG Driver for Linux, amessage stating the detected geography code and the number of 802.11channels supported by the card will be displayed in the log.The geography code corresponds to a regulatory domain as shown in thetable below.					  Supported channelsCode	Geography			802.11bg	802.11a---	Restricted			11 	 	 0ZZF	Custom US/Canada		11	 	 8ZZD	Rest of World			13	 	 0ZZA	Custom USA & Europe & High	11		13ZZB	Custom NA & Europe    		11		13ZZC	Custom Japan			11	 	 4ZZM	Custom 				11	 	 0ZZE	Europe				13		19ZZJ	Custom Japan			14	 	 4ZZR	Rest of World			14	 	 0ZZH	High Band			13	 	 4ZZG	Custom Europe			13	 	 4ZZK	Europe 				13		24ZZL	Europe				11		132.   Ad-Hoc Networking-----------------------------------------------When using a device in an Ad-Hoc network, it is useful to understand the sequence and requirements for the driver to be able to create, join, or merge networks.The following attempts to provide enough information so that you can have a consistent experience while using the driver as a member of an Ad-Hoc network.2.1. Joining an Ad-Hoc Network-----------------------------------------------The easiest way to get onto an Ad-Hoc network is to join one that already exists.2.2. Creating an Ad-Hoc Network-----------------------------------------------An Ad-Hoc networks is created using the syntax of the Wireless tool.For Example:iwconfig eth1 mode ad-hoc essid testing channel 22.3. Merging Ad-Hoc Networks-----------------------------------------------3.  Interaction with Wireless Tools-----------------------------------------------3.1 iwconfig mode-----------------------------------------------When configuring the mode of the adapter, all run-time configured parametersare reset to the value used when the module was loaded.  This includeschannels, rates, ESSID, etc.3.2 iwconfig sens-----------------------------------------------The 'iwconfig ethX sens XX' command will not set the signal sensitivitythreshold, as described in iwconfig documentation, but rather the numberof consecutive missed beacons that will trigger handover, i.e. roamingto another access point. At the same time, it will set the disassociationthreshold to 3 times the given value.4.   About the Version Numbers-----------------------------------------------Due to the nature of open source development projects, there are frequently changes being incorporated that have not gone through a complete validation process.  These changes are incorporated into development snapshot releases.Releases are numbered with a three level scheme: 	major.minor.developmentAny version where the 'development' portion is 0 (for example1.0.0, 1.1.0, etc.) indicates a stable version that will be made available for kernel inclusion.Any version where the 'development' portion is not a 0 (forexample 1.0.1, 1.1.5, etc.) indicates a development version that isbeing made available for testing and cutting edge users.  The stability and functionality of the development releases are not know.  We makeefforts to try and keep all snapshots reasonably stable, but due to thefrequency of their release, and the desire to get those releases available as quickly as possible, unknown anomalies should be expected.The major version number will be incremented when significant changesare made to the driver.  Currently, there are no major changes planned.5.  Firmware installation----------------------------------------------The driver requires a firmware image, download it and extract thefiles under /lib/firmware (or wherever your hotplug's firmware.agentwill look for firmware files)The firmware can be downloaded from the following URL:    http://ipw2200.sf.net/6.  Support-----------------------------------------------For direct support of the 1.0.0 version, you can contact http://supportmail.intel.com, or you can use the open source projectsupport.For general information and support, go to:	    http://ipw2200.sf.net/7.  License-----------------------------------------------  Copyright(c) 2003 - 2006 Intel Corporation. All rights reserved.  This program is free software; you can redistribute it and/or modify it   under the terms of the GNU General Public License version 2 as   published by the Free Software Foundation.    This program is distributed in the hope that it will be useful, but WITHOUT   ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or   FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for   more details.    You should have received a copy of the GNU General Public License along with  this program; if not, write to the Free Software Foundation, Inc., 59   Temple Place - Suite 330, Boston, MA  02111-1307, USA.    The full GNU General Public License is included in this distribution in the  file called LICENSE.    Contact Information:  James P. Ketrenos <ipw2100-admin@linux.intel.com>  Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -