[solved]Как отключить автозагрузку модуля bcma

Calculate linux desktop 11.12
Дело в том что для моего вайфая нужен модуль wl, но он конфликтует с bcma и заускается некорректно
Занос в /etc/modprobe.d/blacklist.conf не помогает
wl от сюда http://www.broadcom.com/support/802.11/linux_sta.php

Занос в

Занос в /etc/modprobe.d/blacklist.conf не помогает

Или не правильно занесли, или Лаутре сотоварищи чего то намутил

Compute:
Bosch M2.8.1 -> custom Bosch M2.8.3 clone from Russia.
Speed about 260 km,Ram 2 pers.,HDD - 70 kg,210 FLOPS ;)

.

Напиример - /etc/local.d/10-bsdm_remove.start:

#!/bin/bash
if /bin/lsmod | /bin/grep -q bcma ; then
  /sbin/modprobe -r bcma
  /sbin/modprobe wl
fi

:D

Решение

Возможно bcma грузиться через udev находящийся в initramfs. Вам нужно добавить bcma (и другие модули которые не хотите загружать в initramfs) в /usr/share/genkernel/modules/udev-rules/blacklist.conf и пересоздать initramfs командой cl-kernel --initrd.
Взято у соседей http://www.calculate-linux.org/boards/16/topics/11353

Re:занос в

#------------------------------------------------------------------------------
# Modified Calculate-install 2.2.27
# Processing template files:
# /usr/share/calculate/templates/install/1merge/udev/blacklist.conf
#------------------------------------------------------------------------------
# This file lists modules which will not be loaded by udev,
# not at coldplugging and not on hotplug events.

# Add your own entries to this file
# in the format "blacklist <name of module>"

# Not using kernel video drivers
blacklist nvidia
blacklist radeon
blacklist nouveau
blacklist i915
blacklist uvesafb

# Some examples:
# evbug is a debug tool and should be loaded explicitly
blacklist evbug

# Autoloading eth1394 most of the time re-orders your network
# interfaces, and with buggy kernel 2.6.21, udev persistent-net
# is not able to rename these devices, so you get eth?_rename devices
# plus an exceeded 30sec boot timeout
blacklist eth1394

# You probably want this to not get the console beep loud on every tab :)
blacklist pcspkr

# these drivers are very simple, the HID drivers are usually preferred
#blacklist usbmouse
#blacklist usbkbd

# Some examples:
# evbug is a debug tool and should be loaded explicitly
blacklist evbug

# Autoloading eth1394 most of the time re-orders your network
# interfaces, and with buggy kernel 2.6.21, udev persistent-net
# is not able to rename these devices, so you get eth?_rename devices
# plus an exceeded 30sec boot timeout
blacklist eth1394

# You probably want this to not get the console beep loud on every tab :)
blacklist pcspkr

# these drivers are very simple, the HID drivers are usually preferred
#blacklist usbmouse
#blacklist usbkbd

# Sometimes loading a framebuffer driver at boot gets the console black
#install pci:v*d*sv*sd*bc03sc*i* /bin/true

# hplip and cups 1.4+ use raw USB devices, so it requires usblp not be loaded
blacklist usblp

blacklist ssb
blacklist bcma
blacklist b43

Содержимое /etc/modprobe.d/blacklist.conf
Вроде все правилино занес

willy написал(а):
Напиример - /etc/local.d/10-bsdm_remove.start:

#!/bin/bash
if /bin/lsmod | /bin/grep -q bcma ; then
  /sbin/modprobe -r bcma
  /sbin/modprobe wl
fi

:D

Помогло, но все-таки интересно знать почему блеклист не заработал

Настройки просмотра комментариев

Выберите нужный метод показа комментариев и нажмите "Сохранить установки".