热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

ath6klrelated

本文转载至:http:wireless.kernel.orgenusersDriversath6klIntroductionath6klistheFullMACwir

本文转载至:http://wireless.kernel.org/en/users/Drivers/ath6kl


Introduction

'ath6kl' is the FullMAC wireless driver for Atheros AR600x family of chips, for example AR6003, AR6004 and AR6005.

Features

  • Station (client) mode
  • IBSS (Ad-Hoc) mode
  • AP mode (requires wpasupplicant/hostapd 1.0 or newer)
  • 802.11abg
  • 802.11n
    • HT20
    • HT40
    • AMPDU
    • Short GI (40 MHz only)
  • 802.11i
    • WEP 64 / 127
    • WPA1 / WPA2
  • 802.11d
  • 802.11h
  • WMM
  • RFKILL
  • BT co-existence

Not supported:

  • monitor mode (no firmware support)

Supported chipsets

  • AR6003 SDIO

  • AR6004 USB/SDIO

  • AR6005 SDIO (recognised as ar6003)

Status

This driver is upstream as part of the Linux 2.6.37 release under the staging area. From Linux 3.2 onwards it was promoted from staging to a proper wireless driver.

It is also available for older kernels through the stable compat-wireless releases.

Hacking on ath6kl

ath6kl is now part of wireless kernel trees. All the development happens in github github's ath6kl project. To clone the tree:

git clone git://github.com/kvalo/ath.git

The driver is located in drivers/net/wireless/ath/ath6kl. To compile the driver enable CONFIG_ATH6KL which is found under Device Drivers/Network device support/Wireless LAN/Atheros Wireless Cards/Atheros ath6kl support. Also enable CONFIG_ATH6KL_DEBUG to include all debugging code.

Send any patches to Kalle Valo , but remember also to CC both and git format-patch.

Support

For technical support send email to , which is a public mailing list for ath6kl developers and users. Everyone are welcome to subcribe to the list.

In case there's something you want to send privately just to QCA engineers, you can send email to . But due to lack of time, ath6kl developers are not normally able to give private support, so please send questions to the public mailing list. You get better answers that way.

IRC


We have an IRC channel with some of the ath6kl people.

IRC server: irc.freenode.net
IRC channel: #ath6kl

Please take into account the different timezones and schedules, it might take a long time to get an answer.

Note: Windows boxen by default seem to block IRC ports so go find yourself a Linux box ;)

Firmware

Get the firmware from linux-firmware.git.

Devices

  • Dell Latitude ST Tablet (AR6003 on SDIO)

Subscribe to this page!

You should subscribe to this page so you can get e-mail updates on changes and news for ath6kl automatically. You'll get an e-mail as soon as this page gets updated.

Statistics on contributions

Visit the ath6kl contribution map for details on contributions. If you'd like to help keep this information up to date contact the ath6kl maintainers.

Other stuff

  • TODO list

  • architecture of ath6kl

  • Setting up ath6kl

  • debugging help and tips

  • ath6kl coding style




推荐阅读
  • imx6ull开发板驱动MT7601U无线网卡的方法和步骤详解
    本文详细介绍了在imx6ull开发板上驱动MT7601U无线网卡的方法和步骤。首先介绍了开发环境和硬件平台,然后说明了MT7601U驱动已经集成在linux内核的linux-4.x.x/drivers/net/wireless/mediatek/mt7601u文件中。接着介绍了移植mt7601u驱动的过程,包括编译内核和配置设备驱动。最后,列举了关键词和相关信息供读者参考。 ... [详细]
  • CF:3D City Model(小思维)问题解析和代码实现
    本文通过解析CF:3D City Model问题,介绍了问题的背景和要求,并给出了相应的代码实现。该问题涉及到在一个矩形的网格上建造城市的情景,每个网格单元可以作为建筑的基础,建筑由多个立方体叠加而成。文章详细讲解了问题的解决思路,并给出了相应的代码实现供读者参考。 ... [详细]
  • Proof (of knowledge) of exponentiation
    1.ProofofexponentiationProofofexponentiation是基于adaptiverootassumption(充分必要条件࿰ ... [详细]
  • 微软头条实习生分享深度学习自学指南
    本文介绍了一位微软头条实习生自学深度学习的经验分享,包括学习资源推荐、重要基础知识的学习要点等。作者强调了学好Python和数学基础的重要性,并提供了一些建议。 ... [详细]
  • 成功安装Sabayon Linux在thinkpad X60上的经验分享
    本文分享了作者在国庆期间在thinkpad X60上成功安装Sabayon Linux的经验。通过修改CHOST和执行emerge命令,作者顺利完成了安装过程。Sabayon Linux是一个基于Gentoo Linux的发行版,可以将电脑快速转变为一个功能强大的系统。除了作为一个live DVD使用外,Sabayon Linux还可以被安装在硬盘上,方便用户使用。 ... [详细]
  • 本文讨论了clone的fork与pthread_create创建线程的不同之处。进程是一个指令执行流及其执行环境,其执行环境是一个系统资源的集合。在调用系统调用fork创建一个进程时,子进程只是完全复制父进程的资源,这样得到的子进程独立于父进程,具有良好的并发性。但是二者之间的通讯需要通过专门的通讯机制,另外通过fork创建子进程系统开销很大。因此,在某些情况下,使用clone或pthread_create创建线程可能更加高效。 ... [详细]
  • 篇首语:本文由编程笔记#小编为大家整理,主要介绍了MongoDB快速入门教程(4.1)相关的知识,希望对你有一定的参考价值。4 ... [详细]
  • 本文整理了Java中org.assertj.core.api.AbstractCharSequenceAssert.hasSize()方法的一些代码示例,展示了 ... [详细]
  • 这篇文章将为大家详细讲解有关python爬虫中scrapy怎么处理项目数据,小编觉得挺实用的,因此分享给大家做个参考,希望大家阅读完这篇文章后可以有 ... [详细]
  • Todo-react-redux-immutable综合运用react,redux,react-redux,immutable.js,styled-components等工具库,完 ... [详细]
  • Electron中使用globalShortcut模块来注册全局快捷键,以实现类似于微信和QQ按快捷键调用剪切窗口的功能。快捷键在应用程序加载完成后进行注册 ... [详细]
  • 中柏pad7安装linux,千元2in1平板新选择 中柏EZpad 7详细图文评测
    平板电脑由于出色的便携性能,在项目演示和内容沟通交流上有着得天独厚的优势,所以受到了商务人士的青睐。但是很多时候用户需要使用Windows系统来处理一些 ... [详细]
  • 本文介绍了使用CentOS7.0 U盘刻录工具进行安装的详细步骤,包括使用USBWriter工具刻录ISO文件到USB驱动器、格式化USB磁盘、设置启动顺序等。通过本文的指导,用户可以轻松地使用U盘安装CentOS7.0操作系统。 ... [详细]
  • [译]技术公司十年经验的职场生涯回顾
    本文是一位在技术公司工作十年的职场人士对自己职业生涯的总结回顾。她的职业规划与众不同,令人深思又有趣。其中涉及到的内容有机器学习、创新创业以及引用了女性主义者在TED演讲中的部分讲义。文章表达了对职业生涯的愿望和希望,认为人类有能力不断改善自己。 ... [详细]
  • Android系统移植与调试之如何修改Android设备状态条上音量加减键在横竖屏切换的时候的显示于隐藏
    本文介绍了如何修改Android设备状态条上音量加减键在横竖屏切换时的显示与隐藏。通过修改系统文件system_bar.xml实现了该功能,并分享了解决思路和经验。 ... [详细]
author-avatar
sendymylove睛飘益
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有