BCM43xx et WIFI

Bikra -  
mamiemando Messages postés 33228 Date d'inscription   Statut Modérateur Dernière intervention   -
J'ai 2 petites questions dont un pb :

* J'ai réussi a paramétrer ma carte wifi tant bien que mal sous Debian mais j ai tjs un pb.
Au boot, j'ai ceci qui s'affiche :

bcm43xx: ASSERTION FAILED (radio_attenuation < 10) at: drivers/net/wireless/bcm43xx/bcm43xx_phy.c:1490:bcm43xx_find_lopair()

La LED du Wifi est bien allumé mais au demarrage de Linux je ne peux pas me connecter de suite en wifi.
Je dois passer en root et faire ceci :

iwconfig eth1 txpower on
/etc/init.d/networking restart
dhclient eth1

Ensuite tout fonctionne parfaitement.

Ma question est donc : Qu est ce que cette erreur ? comment pui je faire pour que le wifi marche directement au boot sans passer par ces commandes ?

* Une autre question d'un tout autre genre :
Est ce que quelqu un peut m expliquer comment on peut acceder a des comptes linux situer sur un serveur ? je ne vois pas le fonctionement... Comment tout le matériel est il relier ?...

Merci d'avance a tous, j'espére quevous pourrez me venir en aide
Configuration: Portable M2316ea
Carte Wifi broadcom 4318

10 réponses

  1. mamiemando Messages postés 33228 Date d'inscription   Statut Modérateur Dernière intervention   7 944
     
    Malheureusement on a pas assez d'info. Il faudrait éditer le fichier C en question. Typiquement il doit être dans /usr/src/linux/drivers/net/wireless/bcm43xx/bcm43xx_phy.c. Il faudrait voir ce qui se passe à cet endroit (ligne 1490). C'est un peu hardcore de lire des sources de noyaux mais bon... à part en mettre un autre et espérer que ça marche mieux, il n'y a pas vraiment d'autre solution. Tu peux aussi regarder au cas où si tu as des informations en tapant :
    dmesg | tail
    cat /var/log/messages


    Bonne chance
    0
  2. bikra Messages postés 6 Statut Membre
     
    Merci de ta réponse.

    Je suis donc aller voir un peu le fichier et c vraiment trés hard core... lol
    Voici un petit extrait de l'endroit ou ca bloque :

    static inline
    struct bcm43xx_lopair * bcm43xx_find_lopair(struct bcm43xx_private *bcm,
    u16 baseband_attenuation,
    u16 radio_attenuation,
    u16 tx)
    {
    static const u8 dict[10] = { 11, 10, 11, 12, 13, 12, 13, 12, 13, 12 };
    struct bcm43xx_phyinfo *phy = bcm43xx_current_phy(bcm);

    if (baseband_attenuation > 6)
    baseband_attenuation = 6;
    assert(radio_attenuation < 10);

    if (tx == 3) {
    return bcm43xx_get_lopair(phy,
    radio_attenuation,
    baseband_attenuation);
    }
    return bcm43xx_get_lopair(phy, dict[radio_attenuation], baseband_attenuation);
    }

    On voit bien le tx que je doit faire aprés le boot mais je ne c pas koi modifier.
    J espére que ca pourra aider.

    Quand au dmesg | tail voila ce que ca me met :

    mtrr: no more MTRRs available
    mtrr: no more MTRRs available
    mtrr: no more MTRRs available
    mtrr: no more MTRRs available
    mtrr: no more MTRRs available
    bcm43xx: ASSERTION FAILED (radio_attenuation < 10) at: drivers/net/wireless/bcm43xx/bcm43xx_phy.c:1490:bcm43xx_find_lopair()
    SoftMAC: Open Authentication completed with 00:16:ce:55:bc:13
    ADDRCONF(NETDEV_CHANGE): eth1: link becomes ready
    bcm43xx: ASSERTION FAILED (radio_attenuation < 10) at: drivers/net/wireless/bcm43xx/bcm43xx_phy.c:1490:bcm43xx_find_lopair()
    eth1: no IPv6 routers present
    portable:/home/namour# dmesg | tail mtrr: no more MTRRs available
    mtrr: no more MTRRs available
    mtrr: no more MTRRs available
    mtrr: no more MTRRs available
    mtrr: no more MTRRs available
    bcm43xx: ASSERTION FAILED (radio_attenuation < 10) at: drivers/net/wireless/bcm43xx/bcm43xx_phy.c:1490:bcm43xx_find_lopair()
    SoftMAC: Open Authentication completed with 00:16:ce:55:bc:13
    ADDRCONF(NETDEV_CHANGE): eth1: link becomes ready
    bcm43xx: ASSERTION FAILED (radio_attenuation < 10) at: drivers/net/wireless/bcm43xx/bcm43xx_phy.c:1490:bcm43xx_find_lopair()
    eth1: no IPv6 routers present

    Un petit complément pour ceux qui pourraient me venir en aide.

    Merci a tous
    0
  3. mamiemando Messages postés 33228 Date d'inscription   Statut Modérateur Dernière intervention   7 944
     
    Cf : www.ze-linux.org/forum_4_53200.html
    Je pense que tu n'as pas activé la gestion des MTRR dans ton noyau (mais à vrai dire, je n'en sais rien :p).

    Pour l'assertion au pire tu la commentes, tu recompiles ton noyau (mais tu gardes bien le noyau actuel surtout), et c'est parti ;) Soyons subtils !
    // assert(radio_attenuation < 10)


    Bonne chance
    0
  4. bikra Messages postés 6 Statut Membre
     
    Ok merci ... Des que je peux je teste et je dis quoi !

    Merci
    0
  5. Vous n’avez pas trouvé la réponse que vous recherchez ?

    Posez votre question
  6. bikra Messages postés 6 Statut Membre
     
    Donc j ai recompilé le noyau mon mettant :

    assert(radio_attenuation = 10)

    Je n ai plus d erreur mais le wifi ne marche pas au boot. Je dois encore tapé les commandes.

    Par contre, c cool, g réussi a mettre mon niveau de batterie... lol
    0
  7. mamiemando Messages postés 33228 Date d'inscription   Statut Modérateur Dernière intervention   7 944
     
    Euh fais gaffe car la ca ne fait pas exactement ce que ça devrait. Ca affecte à radio_attenuation la valeur 10 et ensuite comme l'assertion vaut 10 != 0 elle est passée. Mais dans l'histoire la valeur de la variable a bien changé !!! Pour moi il faut vraiment écrire :
    // assert(radio_attenuation < 10)

    Ceci dit ça ne changera à mon avis pas grand chose. Il faudrait voir toujours avec dmesg et cat /var/log/mesasges ce qui se passe actuellement. En particulier as-tu mis le support MTRR dans ton noyau ?

    Bonne chance
    0
  8. bikra Messages postés 6 Statut Membre
     
    Je n ai pas vu au moment de la compil MTRR, ca se trouve ou ? je retesterai en mettant en commentaire l assertion. On verra bien, avec un peu de chance... lol

    Voila un extrait des 2 commandes :

    Linux version 2.6.18moi (root@portable) (version gcc 3.3.5 (Debian 1:3.3.5-13)) #1 PREEMPT Wed Oct 4 20:35:36 CEST 2006
    BIOS-provided physical RAM map:
    BIOS-e820: 0000000000000000 - 000000000009f800 (usable)
    BIOS-e820: 000000000009f800 - 00000000000a0000 (reserved)
    BIOS-e820: 00000000000d2000 - 0000000000100000 (reserved)
    BIOS-e820: 0000000000100000 - 0000000027ef0000 (usable)
    BIOS-e820: 0000000027ef0000 - 0000000027eff000 (ACPI data)
    BIOS-e820: 0000000027eff000 - 0000000027f00000 (ACPI NVS)
    BIOS-e820: 0000000027f00000 - 0000000030000000 (reserved)
    BIOS-e820: 00000000fec00000 - 00000000fec10000 (reserved)
    BIOS-e820: 00000000fee00000 - 00000000fee01000 (reserved)
    BIOS-e820: 00000000fff80000 - 0000000100000000 (reserved)
    638MB LOWMEM available.
    found SMP MP-table at 000f8130
    On node 0 totalpages: 163568
    DMA zone: 4096 pages, LIFO batch:0
    Normal zone: 159472 pages, LIFO batch:31
    DMI present.
    ACPI: RSDP (v000 HP ) @ 0x000f8080
    ACPI: RSDT (v001 HP 3096 0x20040206 LTP 0x00000000) @ 0x27ef8bc4
    ACPI: FADT (v001 HP 3096 0x20040206 PTL 0x0000005f) @ 0x27efee2a
    ACPI: SSDT (v001 PTLTD POWERNOW 0x20040206 LTP 0x00000001) @ 0x27efee9e
    ACPI: MADT (v001 PTLTD 3096 0x20040206 LTP 0x00000000) @ 0x27efef74ACPI: MCFG (v001 PTLTD MCFG 0x20040206 LTP 0x00000000) @ 0x27efefc4
    ACPI: DSDT (v001 HP 3091 0x20040206 MSFT 0x0100000e) @ 0x00000000
    ATI board detected. Disabling timer routing over 8254.
    ACPI: PM-Timer IO Port: 0x8008
    ACPI: Local APIC address 0xfee00000
    ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
    Processor #0 15:12 APIC version 16
    ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
    ACPI: IOAPIC (id[0x01] address[0xfec00000] gsi_base[0])
    IOAPIC[0]: apic_id 1, version 33, address 0xfec00000, GSI 0-23
    ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 21 low level)
    Enabling APIC mode: Flat. Using 1 I/O APICs
    Using ACPI (MADT) for SMP configuration information
    Allocating PCI resources starting at 40000000 (gap: 30000000:cec00000)
    Detected 1790.998 MHz processor.
    Built 1 zonelists. Total pages: 163568
    Kernel command line: root=/dev/hda6 ro
    mapped APIC to ffffd000 (fee00000)
    mapped IOAPIC to ffffc000 (fec00000)
    Enabling fast FPU save and restore... done.
    Enabling unmasked SIMD FPU exception support... done.
    Initializing CPU#0
    PID hash table entries: 4096 (order: 12, 16384 bytes)
    Console: colour VGA+ 80x25
    Dentry cache hash table entries: 131072 (order: 7, 524288 bytes)
    Inode-cache hash table entries: 65536 (order: 6, 262144 bytes)
    Memory: 641104k/654272k available (1535k kernel code, 12552k reserved, 627k data, 236k init, 0k highmem)
    Checking if this processor honours the WP bit even in supervisor mode... Ok.
    Calibrating delay using timer specific routine.. 3585.64 BogoMIPS (lpj=7171297)
    Security Framework v1.0.0 initialized
    Mount-cache hash table entries: 512
    CPU: After generic identify, caps: 078bfbff c3d3fbff 00000000 00000000 00000001 00000000 00000001
    CPU: After vendor identify, caps: 078bfbff c3d3fbff 00000000 00000000 00000001 00000000 00000001
    CPU: L1 I Cache: 64K (64 bytes/line), D cache 64K (64 bytes/line)
    CPU: L2 Cache: 128K (64 bytes/line)
    CPU: After all inits, caps: 078bfbff c3d3fbff 00000000 00000410 00000001 00000000 00000001
    Compat vDSO mapped to ffffe000.
    CPU: AMD Mobile AMD Sempron(tm) Processor 3000+ stepping 02
    Checking 'hlt' instruction... OK.
    Checking for popad bug... OK.
    ACPI: Core revision 20060707
    ENABLING IO-APIC IRQs
    ..TIMER: vector=0x31 apic1=0 pin1=0 apic2=-1 pin2=-1
    checking if image is initramfs...it isn't (bad gzip magic numbers); looks like an initrd
    Freeing initrd memory: 4020k freed
    NET: Registered protocol family 16
    EISA bus registered
    ACPI: bus type pci registered
    PCI: BIOS Bug: MCFG area at e0000000 is not E820-reserved
    PCI: Not using MMCONFIG.
    PCI: PCI BIOS revision 2.10 entry at 0xfd8bc, last bus=5
    PCI: Using configuration type 1
    Setting up standard PCI resources
    ACPI: Interpreter enabled
    ACPI: Using IOAPIC for interrupt routing
    ACPI: PCI Root Bridge [PCI0] (0000:00)
    PCI: Probing PCI hardware (bus 00)
    PCI: Ignoring BAR0-3 of IDE controller 0000:00:14.1
    Boot video device is 0000:01:05.0
    PCI: Transparent bridge - 0000:00:14.4
    PCI: Bus #06 (-#09) is hidden behind transparent bridge #05 (-#05) (try 'pci=assign-busses')
    Please report the result to linux-kernel to fix this permanently
    ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
    ACPI: PCI Interrupt Link [LNKA] (IRQs 10 11) *0, disabled.
    ACPI: PCI Interrupt Link [LNKB] (IRQs 10 11) *0, disabled.
    ACPI: PCI Interrupt Link [LNKC] (IRQs 10 11) *0, disabled.
    ACPI: PCI Interrupt Link [LNKD] (IRQs 10 11) *0, disabled.
    ACPI: PCI Interrupt Link [LNKE] (IRQs 10 11) *0, disabled.
    ACPI: PCI Interrupt Link [LNKF] (IRQs 10 11) *0, disabled.
    ACPI: PCI Interrupt Link [LNKG] (IRQs 10 11) *0, disabled.
    ACPI: PCI Interrupt Link [LNKH] (IRQs 10 11) *0, disabled.
    ACPI: Embedded Controller [EC0] (gpe 24) interrupt mode.
    ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.P2P_._PRT]
    ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.AGP_._PRT]
    Linux Plug and Play Support v0.97 (c) Adam Belay
    pnp: PnP ACPI init
    pnp: PnP ACPI: found 10 devices
    PnPBIOS: Disabled by ACPI PNP
    PCI: Using ACPI for IRQ routing
    PCI: If a device doesn't work, try "pci=routeirq". If it helps, post a report
    pnp: 00:08: ioport range 0x1080-0x1080 has been reserved
    pnp: 00:08: ioport range 0x220-0x22f has been reserved
    pnp: 00:08: ioport range 0x40b-0x40b has been reserved
    pnp: 00:08: ioport range 0x4d0-0x4d1 has been reserved
    PCI: Bridge: 0000:00:01.0
    IO window: 9000-9fff
    MEM window: c0100000-c01fffff
    PREFETCH window: c8000000-cfffffff
    PCI: Bus 6, cardbus bridge: 0000:05:09.0
    IO window: 0000a400-0000a4ff
    IO window: 0000a800-0000a8ff
    PREFETCH window: 40000000-41ffffff
    MEM window: 42000000-43ffffff
    PCI: Bridge: 0000:00:14.4
    IO window: a000-afff
    MEM window: c0200000-c02fffff
    PREFETCH window: 40000000-41ffffff
    ACPI: PCI Interrupt 0000:05:09.0[A] -> GSI 17 (level, low) -> IRQ 185
    PCI: Setting latency timer of device 0000:05:09.0 to 64
    NET: Registered protocol family 2
    IP route cache hash table entries: 32768 (order: 5, 131072 bytes)
    TCP established hash table entries: 131072 (order: 7, 524288 bytes)
    TCP bind hash table entries: 65536 (order: 6, 262144 bytes)
    TCP: Hash tables configured (established 131072 bind 65536)
    TCP reno registered
    VFS: Disk quotas dquot_6.5.1
    Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
    Initializing Cryptographic API
    io scheduler noop registered
    io scheduler anticipatory registered
    io scheduler deadline registered
    io scheduler cfq registered (default)
    ACPI: AC Adapter [ACAD] (on-line)
    ACPI: Battery Slot [BAT1] (battery present)
    ACPI: Power Button (FF) [PWRF]
    ACPI: Power Button (CM) [PWRB]
    ACPI: Sleep Button (CM) [SLPB]
    ACPI: Lid Switch [LID]
    ACPI: CPU0 (power states: C1[C1] C2[C2])
    ACPI: Processor [CPU0] (supports 8 throttling states)
    ACPI: Thermal Zone [THRM] (29 C)
    isapnp: Scanning for PnP cards...
    isapnp: No Plug & Play device found
    Serial: 8250/16550 driver $Revision: 1.90 $ 4 ports, IRQ sharing enabled
    ACPI: PCI Interrupt 0000:00:14.6[B] -> GSI 17 (level, low) -> IRQ 185
    ACPI: PCI interrupt for device 0000:00:14.6 disabled
    RAMDISK driver initialized: 16 RAM disks of 8192K size 1024 blocksize
    PNP: PS/2 Controller [PNP0303:KBC0,PNP0f13:MSE0] at 0x60,0x64 irq 1,12
    serio: i8042 AUX port at 0x60,0x64 irq 12
    serio: i8042 KBD port at 0x60,0x64 irq 1
    EISA: Probing bus 0 at eisa.0
    Cannot allocate resource for EISA slot 1
    Cannot allocate resource for EISA slot 8
    EISA: Detected 0 cards.
    TCP bic registered
    NET: Registered protocol family 8
    NET: Registered protocol family 20
    Using IPI Shortcut mode
    ACPI: (supports S0 S3 S4 S5)
    RAMDISK: cramfs filesystem found at block 0
    RAMDISK: Loading 4020KiB [1 disk] into ram disk... <6>Time: tsc clocksource has been installed.
    done.
    VFS: Mounted root (cramfs filesystem) readonly.
    input: AT Translated Set 2 keyboard as /class/input/input0
    Freeing unused kernel memory: 236k freed
    NET: Registered protocol family 1
    Uniform Multi-Platform E-IDE driver Revision: 7.00alpha2
    ide: Assuming 33MHz system bus speed for PIO modes; override with idebus=xx
    ATIIXP: IDE controller at PCI slot 0000:00:14.1
    ACPI: PCI Interrupt 0000:00:14.1[A] -> GSI 16 (level, low) -> IRQ 193
    ATIIXP: chipset revision 0
    ATIIXP: not 100% native mode: will probe irqs later
    ide0: BM-DMA at 0x8410-0x8417, BIOS settings: hda:DMA, hdb:pio
    ide1: BM-DMA at 0x8418-0x841f, BIOS settings: hdc:DMA, hdd:pio
    Probing IDE interface ide0...
    Time: acpi_pm clocksource has been installed.
    hda: FUJITSU MHV2060AT PL, ATA DISK drive
    ide0 at 0x1f0-0x1f7,0x3f6 on irq 14
    Probing IDE interface ide1...
    hdc: HL-DT-ST DVD-RW GWA-4082N, ATAPI CD/DVD-ROM drive
    ide1 at 0x170-0x177,0x376 on irq 15
    hda: max request size: 128KiB
    hda: 117210240 sectors (60011 MB) w/8192KiB Cache, CHS=65535/16/63, UDMA(100)
    hda: cache flushes supported
    hda: hda1 hda2 < hda5 hda6 hda7 hda8 hda9 hda10 hda11 > hda3
    kjournald starting. Commit interval 5 seconds
    EXT3-fs: mounted filesystem with ordered data mode.
    Adding 979924k swap on /dev/hda5. Priority:-1 extents:1 across:979924k
    EXT3 FS on hda6, internal journal
    hdc: ATAPI 24X DVD-ROM DVD-R CD-R/RW drive, 2048kB Cache, DMA
    Uniform CD-ROM driver Revision: 3.20
    kjournald starting. Commit interval 5 seconds
    EXT3 FS on hda7, internal journal
    EXT3-fs: mounted filesystem with ordered data mode.
    kjournald starting. Commit interval 5 seconds
    EXT3 FS on hda8, internal journal
    EXT3-fs: mounted filesystem with ordered data mode.
    kjournald starting. Commit interval 5 seconds
    EXT3 FS on hda9, internal journal
    EXT3-fs: mounted filesystem with ordered data mode.
    kjournald starting. Commit interval 5 seconds
    EXT3 FS on hda10, internal journal
    EXT3-fs: mounted filesystem with ordered data mode.
    kjournald starting. Commit interval 5 seconds
    EXT3 FS on hda11, internal journal
    EXT3-fs: mounted filesystem with ordered data mode.
    Synaptics Touchpad, model: 1, fw: 5.10, id: 0x258eb1, caps: 0xa04713/0x0
    input: SynPS/2 Synaptics TouchPad as /class/input/input1
    8139too Fast Ethernet driver 0.9.27
    ACPI: PCI Interrupt 0000:05:00.0[A] -> GSI 18 (level, low) -> IRQ 201
    eth0: RealTek RTL8139 at 0xa000, 00:16:36:07:fc:76, IRQ 201
    eth0: Identified 8139 chip type 'RTL-8100B/8139D'
    SCSI subsystem initialized
    Linux agpgart interface v0.101 (c) Dave Jones
    pci_hotplug: PCI Hot Plug PCI Core version: 0.5
    shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
    usbcore: registered new driver usbfs
    usbcore: registered new driver hub
    ohci_hcd: 2005 April 22 USB 1.1 'Open' Host Controller (OHCI) Driver (PCI)
    ACPI: PCI Interrupt 0000:00:13.0[A] -> GSI 19 (level, low) -> IRQ 209
    ohci_hcd 0000:00:13.0: OHCI Host Controller
    ohci_hcd 0000:00:13.0: new USB bus registered, assigned bus number 1
    ohci_hcd 0000:00:13.0: irq 209, io mem 0xc0000000
    usb usb1: configuration #1 chosen from 1 choice
    hub 1-0:1.0: USB hub found
    hub 1-0:1.0: 4 ports detected
    ACPI: PCI Interrupt 0000:00:13.1[A] -> GSI 19 (level, low) -> IRQ 209
    ohci_hcd 0000:00:13.1: OHCI Host Controller
    ohci_hcd 0000:00:13.1: new USB bus registered, assigned bus number 2
    ohci_hcd 0000:00:13.1: irq 209, io mem 0xc0001000
    usb usb2: configuration #1 chosen from 1 choice
    hub 2-0:1.0: USB hub found
    hub 2-0:1.0: 4 ports detected
    usb 1-1: new low speed USB device using ohci_hcd and address 2
    usb 1-1: configuration #1 chosen from 1 choice
    usbcore: registered new driver hiddev
    input: USB Optical Mouse as /class/input/input2
    input: USB HID v1.10 Mouse [USB Optical Mouse] on usb-0000:00:13.0-1
    usbcore: registered new driver usbhid
    drivers/usb/input/hid-core.c: v2.6:USB HID core driver
    ACPI: PCI Interrupt 0000:00:13.2[A] -> GSI 19 (level, low) -> IRQ 209
    ehci_hcd 0000:00:13.2: EHCI Host Controller
    ehci_hcd 0000:00:13.2: new USB bus registered, assigned bus number 3
    ehci_hcd 0000:00:13.2: irq 209, io mem 0xc0002000
    ehci_hcd 0000:00:13.2: USB 2.0 started, EHCI 1.00, driver 10 Dec 2004
    usb usb3: configuration #1 chosen from 1 choice
    hub 3-0:1.0: USB hub found
    hub 3-0:1.0: 8 ports detected
    usb 1-1: USB disconnect, address 2
    mice: PS/2 mouse device common for all mice
    ohci_hcd 0000:00:13.0: wakeup
    ts: Compaq touchscreen protocol output
    usb 1-1: new low speed USB device using ohci_hcd and address 3
    usb 1-1: configuration #1 chosen from 1 choice
    input: USB Optical Mouse as /class/input/input3
    input: USB HID v1.10 Mouse [USB Optical Mouse] on usb-0000:00:13.0-1
    piix4_smbus 0000:00:14.0: Found 0000:00:14.0 device
    ACPI: PCI Interrupt 0000:00:14.5[B] -> GSI 17 (level, low) -> IRQ 185
    PCI: Enabling device 0000:00:14.6 (0010 -> 0012)
    ACPI: PCI Interrupt 0000:00:14.6[B] -> GSI 17 (level, low) -> IRQ 185
    MC'97 0 converters and GPIO not ready (0x1)
    8139cp: 10/100 PCI Ethernet driver v1.2 (Mar 22, 2004)
    ieee80211_crypt: registered algorithm 'NULL'
    ieee80211: 802.11 data/management/control stack, git-1.1.13
    ieee80211: Copyright (C) 2004-2005 Intel Corporation <jketreno@linux.intel.com>
    bcm43xx driver
    ACPI: PCI Interrupt 0000:05:02.0[A] -> GSI 20 (level, low) -> IRQ 217
    bcm43xx: Chip ID 0x4318, rev 0x2
    bcm43xx: Number of cores: 4
    bcm43xx: Core 0: ID 0x800, rev 0xd, vendor 0x4243, enabled
    bcm43xx: Core 1: ID 0x812, rev 0x9, vendor 0x4243, disabled
    bcm43xx: Core 2: ID 0x804, rev 0xc, vendor 0x4243, enabled
    bcm43xx: Core 3: ID 0x80d, rev 0x7, vendor 0x4243, enabled
    bcm43xx: PHY connected
    bcm43xx: Detected PHY: Version: 3, Type 2, Revision 7
    bcm43xx: Detected Radio: ID: 8205017f (Manuf: 17f Ver: 2050 Rev: 8)
    bcm43xx: Radio turned off
    bcm43xx: Radio turned off
    Real Time Clock Driver v1.12ac
    input: PC Speaker as /class/input/input4
    bcm43xx: PHY connected
    bcm43xx: Radio turned on
    bcm43xx: Chip initialized
    bcm43xx: DMA initialized
    bcm43xx: 80211 cores initialized
    bcm43xx: Keys cleared
    NET: Registered protocol family 17
    NET: Registered protocol family 10
    lo: Disabled Privacy Extensions
    ADDRCONF(NETDEV_UP): eth1: link is not ready
    IPv6 over IPv4 tunneling driver
    mtrr: no more MTRRs available
    mtrr: no more MTRRs available
    mtrr: no more MTRRs available
    mtrr: no more MTRRs available
    mtrr: no more MTRRs available
    SoftMAC: Open Authentication completed with 00:16:ce:55:bc:13
    ADDRCONF(NETDEV_CHANGE): eth1: link becomes ready
    eth1: no IPv6 routers present

    Y a bien un pb avec le mtrr apparement !!

    Voici le /var/log/messages :

    Oct 5 20:37:14 localhost kernel: bcm43xx driver
    Oct 5 20:37:14 localhost kernel: ACPI: PCI Interrupt 0000:05:02.0[A] -> GSI 20 (level, low) -> IRQ 217
    Oct 5 20:37:14 localhost kernel: bcm43xx: Chip ID 0x4318, rev 0x2
    Oct 5 20:37:14 localhost kernel: bcm43xx: Number of cores: 4
    Oct 5 20:37:14 localhost kernel: bcm43xx: Core 0: ID 0x800, rev 0xd, vendor 0x4243, enabled
    Oct 5 20:37:14 localhost kernel: bcm43xx: Core 1: ID 0x812, rev 0x9, vendor 0x4243, disabled
    Oct 5 20:37:14 localhost kernel: bcm43xx: Core 2: ID 0x804, rev 0xc, vendor 0x4243, enabled
    Oct 5 20:37:14 localhost kernel: bcm43xx: Core 3: ID 0x80d, rev 0x7, vendor 0x4243, enabled
    Oct 5 20:37:14 localhost kernel: bcm43xx: PHY connected
    Oct 5 20:37:14 localhost kernel: bcm43xx: Detected PHY: Version: 3, Type 2, Revision 7
    Oct 5 20:37:14 localhost kernel: bcm43xx: Detected Radio: ID: 8205017f (Manuf: 17f Ver: 2050 Rev: 8)
    Oct 5 20:37:14 localhost kernel: bcm43xx: Radio turned off
    Oct 5 20:37:14 localhost kernel: bcm43xx: Radio turned off
    Oct 5 20:37:14 localhost kernel: Real Time Clock Driver v1.12ac
    Oct 5 20:37:14 localhost kernel: input: PC Speaker as /class/input/input4
    Oct 5 20:37:14 localhost kernel: bcm43xx: PHY connected
    Oct 5 20:37:14 localhost kernel: bcm43xx: Radio turned on
    Oct 5 20:37:14 localhost kernel: bcm43xx: Chip initialized
    Oct 5 20:37:14 localhost kernel: bcm43xx: DMA initialized
    Oct 5 20:37:14 localhost kernel: bcm43xx: 80211 cores initialized
    Oct 5 20:37:14 localhost kernel: bcm43xx: Keys cleared
    Oct 5 20:37:14 localhost kernel: NET: Registered protocol family 17
    Oct 5 20:37:17 localhost lpd[5599]: restarted
    Oct 5 20:37:20 localhost kernel: NET: Registered protocol family 10
    Oct 5 20:37:20 localhost kernel: lo: Disabled Privacy Extensions
    Oct 5 20:37:20 localhost kernel: ADDRCONF(NETDEV_UP): eth1: link is not ready
    Oct 5 20:37:20 localhost kernel: IPv6 over IPv4 tunneling driver
    Oct 5 20:37:30 localhost kernel: mtrr: no more MTRRs available
    Oct 5 20:37:30 localhost last message repeated 4 times
    Oct 5 20:38:26 localhost gconfd (namour-6151): démarrage (version 2.8.1), pid 6151 utilisateur « namour »
    Oct 5 20:38:26 localhost gconfd (namour-6151): Adresse « xml:readonly:/etc/gconf/gconf.xml.mandatory » résolue vers une source de configuration en lecture seule à la position 0
    Oct 5 20:38:26 localhost gconfd (namour-6151): Adresse « xml:readwrite:/home/namour/.gconf » résolue vers une source de configuration accessible en écriture à la position 1
    Oct 5 20:38:26 localhost gconfd (namour-6151): Adresse « xml:readonly:/etc/gconf/gconf.xml.defaults » résolue vers une source de configuration en lecture seule à la position 2
    Oct 5 20:38:44 localhost kernel: SoftMAC: Open Authentication completed with 00:16:ce:55:bc:13
    Oct 5 20:38:44 localhost kernel: ADDRCONF(NETDEV_CHANGE): eth1: link becomes ready

    J espére que tu vas trouver quelque chose. En tout je te remercie pour ton aide...
    0
  9. mamiemando Messages postés 33228 Date d'inscription   Statut Modérateur Dernière intervention   7 944
     
    C'est bizarre on dirait qu'il fait pas les trucs dans l'ordre car au bout d'un moment ça semble se mettre à marcher :
    Oct 5 20:38:44 localhost kernel: SoftMAC: Open Authentication completed with 00:16:ce:55:bc:13
    Oct 5 20:38:44 localhost kernel: ADDRCONF(NETDEV_CHANGE): eth1: link becomes ready 

    Pour le support MTRR je te laisse chercher, mon âge avancé me fait désormais à chaque fois installer des noyaux tout prêt. Compiler son noyau c'est bien quand on est jeune (voix chevrotante) ^^ Au pire tu rajoutes un script qui se lance à la fin du runlevel par défaut (cf /etc/inittab) qui configure automatiquement ta carte wifi. Mais bon c'est moyennement clean...

    Bonne chance
    0
  10. bikra Messages postés 6 Statut Membre
     
    Oct 5 20:38:44 localhost kernel: ADDRCONF(NETDEV_CHANGE): eth1: link becomes ready

    Il me met ca quand je tape mes commandes et que l acces au wifi est ok.

    J ai une autre question :

    Comment fait on pour monter une partition (/home) depuis un serveur sur un poste? En fait j aimerais que que sur mon PC client on va dire, ouvrir un loggin d un des /home du serveur ! J espére que je me suis bien expliqué... je pense pas !lol
    0
  11. mamiemando Messages postés 33228 Date d'inscription   Statut Modérateur Dernière intervention   7 944
     
    Ouvre un nouveau post pour ta question, mais dans un premier temps, recherche un tutoriel sur nfs ou samba.

    Bonne chance
    0