From mboxrd@z Thu Jan 1 00:00:00 1970 Return-path: Received: from mail-ew0-f46.google.com ([209.85.215.46]:63897 "EHLO mail-ew0-f46.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754467Ab0H3Crr convert rfc822-to-8bit (ORCPT ); Sun, 29 Aug 2010 22:47:47 -0400 Received: by ewy23 with SMTP id 23so2875150ewy.19 for ; Sun, 29 Aug 2010 19:47:46 -0700 (PDT) MIME-Version: 1.0 In-Reply-To: References: <201008011137.49528.florian@openwrt.org> <4C55F377.6040404@candelatech.com> <4C618713.9030303@candelatech.com> Date: Mon, 30 Aug 2010 12:47:45 +1000 Message-ID: Subject: Re: virtual access poitns (ath5k/mac80211) From: Ryszard To: Ben Greear Cc: "Luis R. Rodriguez" , Florian Fainelli , Patrick McHardy , linux-wireless@vger.kernel.org Content-Type: text/plain; charset=ISO-8859-1 Sender: linux-wireless-owner@vger.kernel.org List-ID: hi all, just to follow up with my progress on this. i've managed to get it all working, that is, virtual wireless access points with Bens custom kernel and hostapd. one issue i had was the default routing that was being set up. for some reason, networks 172.16.0.0/255.255.0.0 was being associated with vap1 and vap0. i've manually worked around that by issuing route del and the appropriate route add commands in rc.local (ubuntu based distro). unfort my interfaces are dynamically allocated IP addresses, so i dont think i can put this info into the /etc/network/interfaces file, however if anyone has any tips on how to make this a little more elegant, i'm all ears! any any regard, i'd like to thank ben for his custom kernel and work on getting vaps to work with the ath5k drivers!! regs R On 23 August 2010 14:43, Ryszard wrote: > now that i've got the kernel installed and working, i need to get some > modules installed. > > I'm making the kernel with make-kpkg and want to do a make-kpkg > modules_install but am getting this error: > ----------------------------------------------------- > root@bssapp1:~/linux-2.6.dev.31.y# time make-kpkg modules_image > exec debian/rules  DEBIAN_REVISION=2.6.31.12-10.00.Custom  modules_image > for module in  ; do                       \ >          if test -d  $module; then                                \ >            (cd $module;                                          \ >              if ./debian/rules KVERS="2.6.31.12" > KSRC="/home/jwilliams/linux-2.6.dev.31.y" \ >                             KMAINT="Unknown Kernel Package > Maintainer" KEMAIL="unknown@unconfigured.in.etc.kernel-pkg.conf" > \ > > KPKG_DEST_DIR="/home/jwilliams/linux-2.6.dev.31.y/.."       \ >                             KPKG_MAINTAINER="Unknown Kernel Package > Maintainer"        \ >                             KPKG_EXTRAV_ARG=""        \ >                             ARCH="i386"         \ >                             KDREV="2.6.31.12-10.00.Custom" > kdist_image; then    \ >                  echo "Module $module processed fine";            \ >              else                                                  \ >                   echo "Module $module failed.";                  \ >                   if [ "X" != "X" ]; then      \ >                      echo "Perhaps $module does not understand --rootcmd?";  \ >                      echo "If you see messages that indicate that it is not"; \ >                      echo "in fact being built as root, please file a bug ";  \ >                      echo "against $module.";                     \ >                   fi;                                              \ >                   echo "Hit return to Continue";                   \ >                 read ans;                                        \ >              fi;                                                   \ >             );                                                    \ >          else                                                      \ >               echo "Module $module does not exist";               \ >               echo "Hit return to Continue?";                      \ >          fi;                                                       \ >        done > > real    0m6.557s > user    0m4.050s > sys     0m2.810s > root@bssapp1:~/linux-2.6.dev.31.y# > ----------------------------------------------------- > > does anyone have a hint or tip for me?! > > regs > Jason > > > On 21 August 2010 13:07, Ryszard wrote: >> I've managed to compile and get bens kernel installed.  the problem i >> had (for future reference) was the physical media not being >> recognised.  adding rootdelay=130 to the kernel options seemed to have >> fixed that. >> >> On 11 August 2010 03:06, Ben Greear wrote: >>> On 08/10/2010 09:54 AM, Luis R. Rodriguez wrote: >>>> >>>> On Sun, Aug 1, 2010 at 3:21 PM, Ben Greear >>>>  wrote: >>> >>>>> You would not believe how hard it is to keep up with the wireless tree. >>>>>  Last time, >>>>> by the time we had something stable, upstream had changed too much to >>>>> merge. >>>> >>>> This is why you should not do your development outside of >>>> wireless-testing. If you are doing development on a stable kernel tree >>>> then you will likely run into huge issues. You should do development >>>> on wireless-testing.git, always rebase when John has a new update, and >>>> break your changes out into a small changes as possible. If you follow >>>> these basic rules I believe you will likely have better luck with >>>> keeping your code up to date. >>> >>> That sounds nice, but at that time I was carrying a lot of other patches >>> needed to make my test environment work.  Fortunately, .35 pretty much >>> works out of the box, so I can develop on pristine upstream kernels now. >>> >>> Thanks, >>> Ben >>> >>> -- >>> Ben Greear >>> Candela Technologies Inc  http://www.candelatech.com >>> >>> >> >