New commits:
commit ac72e290420237f6f5b98a86e33587c7848e81f9
Author: Eric Sandall <sandalle AT sourcemage.org>
Commit: Eric Sandall <sandalle AT sourcemage.org>
ieee80211: Properly install modules in the kernel tree
diff --git a/z-kernels/ieee80211/BUILD b/z-kernels/ieee80211/BUILD
index bebfbfb..0a6844a 100755
--- a/z-kernels/ieee80211/BUILD
+++ b/z-kernels/ieee80211/BUILD
@@ -1 +1,8 @@
-echo y | make KVER=$(get_kernel_version)
+local KERNEL_VER=$(get_kernel_version) &&
+
+echo y | make KVER=$KERNEL_VER &&
+make KVER=$KERNEL_VER patch_kernel &&
+cd $INSTALL_ROOT/lib/modules/$KERNEL_VER/build &&
+sed -i 's:.*CONFIG_MAC80211.*:CONFIG_MAC80211=m:' .config &&
+echo n | make oldconfig &&
+make modules
diff --git a/z-kernels/ieee80211/HISTORY b/z-kernels/ieee80211/HISTORY
index cda08a0..7b34501 100644
--- a/z-kernels/ieee80211/HISTORY
+++ b/z-kernels/ieee80211/HISTORY
@@ -1,3 +1,7 @@
+2007-10-07 Eric Sandall <sandalle AT sourcemage.org>
+ * BUILD,INSTALL: Properly install ieee80211 kernel modules in the
+ kernel tree
+
2007-09-22 Eric Sandall <sandalle AT sourcemage.org>
* BUILD: Pass 'y' to make to continue if it will overwrite kernel
modules