From: James K. <jke...@li...> - 2005-09-13 22:25:41
|
This patch series brings the kernel version of ieee80211 to be in sync with the latest version being used in conjunction with the ipw2100 and ipw2200 projects. This series is against netdev-2.6 commit-id caf39e87cc1182f7dae84eefc43ca14d54c78ef9 (master as of Sept. 07) The entire series can be obtained from the GIT overlay available at rsync://bughost.org/repos/ieee80211-delta/.git/ For those interested in pulling the GIT version, the following will help automate this: % rsync rsync://bughost.org/repos/scripts/git-grab-overlay \ git-grab-overlay % ./git-grab-overlay rsync://bughost.org/repos/ieee80211-delta \ ieee80211-delta If you want to import the overlay into an existing up-to-date kernel repository tha has commit-id caf39e87cc1182f7dae84eefc43ca14d54c78ef9, then you can simply: % cd $REPO % rsync -avpr rsync://bughost.org/repos/ieee80211-delta/.git/objects/ \ .git/objects/ % rsync rsync://bughost.org/repos/ieee80211-delta/.git/refs/heads/master \ .git/refs/heads/ieee80211-tip You can then view the GIT history for this series via (assuming you have cogito): % cg-log -r caf39e87cc1182f7dae84eefc43ca14d54c78ef9:ieee80211-tip diffstat information for this series follows: include/net/ieee80211.h | 487 +++++++++++++++++++++++++-------- include/net/ieee80211_crypt.h | 46 ++- include/net/ieee80211_radiotap.h | 237 ++++++++++++++++ net/ieee80211/Makefile | 3 net/ieee80211/ieee80211_crypt.c | 59 ++-- net/ieee80211/ieee80211_crypt_ccmp.c | 36 +- net/ieee80211/ieee80211_crypt_tkip.c | 54 +-- net/ieee80211/ieee80211_crypt_wep.c | 26 - net/ieee80211/ieee80211_geo.c | 141 +++++++++ net/ieee80211/ieee80211_module.c | 64 ++-- net/ieee80211/ieee80211_rx.c | 503 +++++++++++++++++++++++++++++------ net/ieee80211/ieee80211_tx.c | 286 +++++++++++++++---- net/ieee80211/ieee80211_wx.c | 366 +++++++++++++++++++++---- 13 files changed, 1867 insertions(+), 441 deletions(-) James |