On 06/21/2011 10:02 AM, Fred Plissonneau wrote:
No, no it is not after the power-cycle. I just mention here that after
power-on, my first installed
driver as disappeared and I suspect the Makefile to contain "rm"
command which does too much cleaning
in my particular case.
I am following the README information here (or may I've made a
mistake, let me know).
./scripts/driver-select ath9k
make
sudo make install (I'm running UBUNTU)
sudo modprode ath9k
./scripts/driver-select carl9170
make
sudo make install
sudo modprode carl9170
If I don't switch off, everything works fine (just because both
modules are loaded into the memory).
-->> Last minute (4:30PM today !-) :
I've found the lines causing the problem. There located just after the
"uninstall:" tag which is also built during "make install".
If I delete lines #318 to #326 in the Makefile (right after the "make"
command and before "make install") it works fine now.
That is to say, the ath9k.ko file is not deleted anymore during the
installation of the second driver.
This workaround is working fine. I am not sure my specific problem is
relevant in the normal use case .
Your problem is that you are using the driver-select script wrong. It has
nothing to do with your interfaces having the same chip vendor. In addition,
your "workaround" is likely to cause many problems with dead modules not being
removed.
You need to select ALL the modules you will ever need before you do the make
step. By deleting ath9k from the configuration when you select carl9170 and
vice-versa, you tell the system that you no longer want the other one. Strangely
enough, but that is exactly what it does.
You need to use
./scripts/driver-select ath
That will build ath5k, which you do not need; however, the other two will be
available. In you want, you could always edit config.mk and remove the line with
"CONFIG_ATH5K=m".
Larry
--
To unsubscribe from this list: send the line "unsubscribe linux-wireless" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html