Gentoo Forums
Gentoo Forums
Gentoo Forums
Quick Search: in
[solved]can not use wireless when I updated my kernel
View unanswered posts
View posts from last 24 hours

 
Reply to topic    Gentoo Forums Forum Index Kernel & Hardware
View previous topic :: View next topic  
Author Message
x17324
n00b
n00b


Joined: 07 Oct 2013
Posts: 22

PostPosted: Sat Jul 18, 2015 9:51 am    Post subject: [solved]can not use wireless when I updated my kernel Reply with quote

My computer is Dell N5110 ,and my wireless card is Wireless-N 1030,sorry for my poor English :oops:

Code:
lspci -k|grep less
09:00.0 Network controller: Intel Corporation Centrino Wireless-N 1030 [Rainbow Peak] (rev 34)
        Subsystem: Intel Corporation Centrino Wireless-N 1030 BGN



After I update my kernel (from 3.16 to 3.19), I cant use my wireless

and this is my demsg info

Code:

dmesg |grep iwl
[    0.511732] iwl4965: Intel(R) Wireless WiFi 4965 driver for Linux, in-tree:
[    0.511732] iwl4965: Copyright(c) 2003-2011 Intel Corporation
[    0.511755] iwl3945: Intel(R) PRO/Wireless 3945ABG/BG Network Connection driver for Linux, in-tree:s
[    0.511755] iwl3945: Copyright(c) 2003-2011 Intel Corporation
[    0.511848] iwlwifi 0000:09:00.0: Direct firmware load for iwlwifi-6000g2b-6.ucode failed with error -2
[    0.511852] iwlwifi 0000:09:00.0: request for firmware file 'iwlwifi-6000g2b-6.ucode' failed.
[    0.511863] iwlwifi 0000:09:00.0: Direct firmware load for iwlwifi-6000g2b-5.ucode failed with error -2
[    0.511865] iwlwifi 0000:09:00.0: request for firmware file 'iwlwifi-6000g2b-5.ucode' failed.
[    0.511866] iwlwifi 0000:09:00.0: no suitable firmware found!



I have installed sys-kernel/linux-firmware(version 20150206) :D finally Thanks for you helping~ :lol:


Last edited by x17324 on Sat Jul 25, 2015 3:25 am; edited 1 time in total
Back to top
View user's profile Send private message
x17324
n00b
n00b


Joined: 07 Oct 2013
Posts: 22

PostPosted: Sat Jul 18, 2015 10:48 am    Post subject: Reply with quote

This is my Kernel config http://pastebin.com/XuqGKiVB
Back to top
View user's profile Send private message
Buffoon
Veteran
Veteran


Joined: 17 Jun 2015
Posts: 1369
Location: EU or US

PostPosted: Sat Jul 18, 2015 11:23 am    Post subject: Reply with quote

Get the firmware from somewhere, for example here https://packages.debian.org/jessie/firmware-iwlwifi
_________________
Life is a tragedy for those who feel and a comedy for those who think.
Back to top
View user's profile Send private message
charles17
Advocate
Advocate


Joined: 02 Mar 2008
Posts: 3664

PostPosted: Sat Jul 18, 2015 1:18 pm    Post subject: Re: can not use wireless when I updated my kernel Reply with quote

x17324 wrote:
After I update my kernel (from 3.16 to 3.19), I cant use my wireless

and this is my demsg info

Code:

dmesg |grep iwl
[    0.511732] iwl4965: Intel(R) Wireless WiFi 4965 driver for Linux, in-tree:
[    0.511732] iwl4965: Copyright(c) 2003-2011 Intel Corporation
[    0.511755] iwl3945: Intel(R) PRO/Wireless 3945ABG/BG Network Connection driver for Linux, in-tree:s
[    0.511755] iwl3945: Copyright(c) 2003-2011 Intel Corporation
[    0.511848] iwlwifi 0000:09:00.0: Direct firmware load for iwlwifi-6000g2b-6.ucode failed with error -2
[    0.511852] iwlwifi 0000:09:00.0: request for firmware file 'iwlwifi-6000g2b-6.ucode' failed.
[    0.511863] iwlwifi 0000:09:00.0: Direct firmware load for iwlwifi-6000g2b-5.ucode failed with error -2
[    0.511865] iwlwifi 0000:09:00.0: request for firmware file 'iwlwifi-6000g2b-5.ucode' failed.
[    0.511866] iwlwifi 0000:09:00.0: no suitable firmware found!



I have installed sys-kernel/linux-firmware(version 20150206) :D finally Thanks for you helping~ :lol:

Have you checked how others solved this problem?
Back to top
View user's profile Send private message
Hu
Moderator
Moderator


Joined: 06 Mar 2007
Posts: 21605

PostPosted: Sat Jul 18, 2015 2:59 pm    Post subject: Reply with quote

Buffoon wrote:
Get the firmware from somewhere, for example here https://packages.debian.org/jessie/firmware-iwlwifi
Are you sure he does not have the firmware? It is included in every version of linux-firmware I have here (both older and newer than the version OP used, although I skipped his version). Based on his kernel configuration, IWLWIFI is builtin. Based on the dmesg output, it initializes very early. I suspect that he does not have root mounted when it looks for the firmware. If so, then his problem is not that he does not have it, but rather that he does not have access to it when he needs it.
Back to top
View user's profile Send private message
Buffoon
Veteran
Veteran


Joined: 17 Jun 2015
Posts: 1369
Location: EU or US

PostPosted: Sat Jul 18, 2015 3:19 pm    Post subject: Reply with quote

No, not sure. Since he mentioned it worked with older kernel I assumed it was built as module and the newer version of driver required newer version of firmware. Seemed logical looking at information given.
_________________
Life is a tragedy for those who feel and a comedy for those who think.
Back to top
View user's profile Send private message
py-ro
Veteran
Veteran


Joined: 24 Sep 2002
Posts: 1734
Location: Velbert

PostPosted: Sat Jul 18, 2015 4:08 pm    Post subject: Reply with quote

Newer Kernel try to load the Firmware before / is available, so you either build the FW into the Kernel or you build the driver as module. Booth will work as solution.

Bye
Py
Back to top
View user's profile Send private message
toralf
Developer
Developer


Joined: 01 Feb 2004
Posts: 3922
Location: Hamburg

PostPosted: Sat Jul 18, 2015 8:11 pm    Post subject: Reply with quote

My personal preference is to build as much as possible as module and to emerge sys-kernel/linux-firmware before rebooting into the new kernel.
Back to top
View user's profile Send private message
x17324
n00b
n00b


Joined: 07 Oct 2013
Posts: 22

PostPosted: Sun Jul 19, 2015 3:06 am    Post subject: Reply with quote

Buffoon wrote:
Get the firmware from somewhere, for example here https://packages.debian.org/jessie/firmware-iwlwifi


Thanks for your hlep , this files are existed in /lib64/firmware ( I have reinstalled linux-firmware ,but no use ) and I can use wireless before I updated my Kernel ,I think there is something worng in my kernel config .
Back to top
View user's profile Send private message
x17324
n00b
n00b


Joined: 07 Oct 2013
Posts: 22

PostPosted: Sun Jul 19, 2015 3:07 am    Post subject: Re: can not use wireless when I updated my kernel Reply with quote

charles17 wrote:
x17324 wrote:
After I update my kernel (from 3.16 to 3.19), I cant use my wireless

and this is my demsg info

Code:

dmesg |grep iwl
[    0.511732] iwl4965: Intel(R) Wireless WiFi 4965 driver for Linux, in-tree:
[    0.511732] iwl4965: Copyright(c) 2003-2011 Intel Corporation
[    0.511755] iwl3945: Intel(R) PRO/Wireless 3945ABG/BG Network Connection driver for Linux, in-tree:s
[    0.511755] iwl3945: Copyright(c) 2003-2011 Intel Corporation
[    0.511848] iwlwifi 0000:09:00.0: Direct firmware load for iwlwifi-6000g2b-6.ucode failed with error -2
[    0.511852] iwlwifi 0000:09:00.0: request for firmware file 'iwlwifi-6000g2b-6.ucode' failed.
[    0.511863] iwlwifi 0000:09:00.0: Direct firmware load for iwlwifi-6000g2b-5.ucode failed with error -2
[    0.511865] iwlwifi 0000:09:00.0: request for firmware file 'iwlwifi-6000g2b-5.ucode' failed.
[    0.511866] iwlwifi 0000:09:00.0: no suitable firmware found!



I have installed sys-kernel/linux-firmware(version 20150206) :D finally Thanks for you helping~ :lol:

Have you checked how others solved this problem?





Thanks for your help ,I have searched something about this problem,but no use. problem existed :oops:
Back to top
View user's profile Send private message
x17324
n00b
n00b


Joined: 07 Oct 2013
Posts: 22

PostPosted: Sun Jul 19, 2015 3:11 am    Post subject: Reply with quote

Buffoon wrote:
No, not sure. Since he mentioned it worked with older kernel I assumed it was built as module and the newer version of driver required newer version of firmware. Seemed logical looking at information given.



Thanks for your help ,I have installed new version of linux-firmware :oops:
Back to top
View user's profile Send private message
x17324
n00b
n00b


Joined: 07 Oct 2013
Posts: 22

PostPosted: Sun Jul 19, 2015 3:30 am    Post subject: Reply with quote

Hu wrote:
Buffoon wrote:
Get the firmware from somewhere, for example here https://packages.debian.org/jessie/firmware-iwlwifi
Are you sure he does not have the firmware? It is included in every version of linux-firmware I have here (both older and newer than the version OP used, although I skipped his version). Based on his kernel configuration, IWLWIFI is builtin. Based on the dmesg output, it initializes very early. I suspect that he does not have root mounted when it looks for the firmware. If so, then his problem is not that he does not have it, but rather that he does not have access to it when he needs it.



Yes you are right! Thanks for your help :D


Last edited by x17324 on Sun Jul 19, 2015 4:45 am; edited 1 time in total
Back to top
View user's profile Send private message
x17324
n00b
n00b


Joined: 07 Oct 2013
Posts: 22

PostPosted: Sun Jul 19, 2015 3:32 am    Post subject: Reply with quote

py-ro wrote:
Newer Kernel try to load the Firmware before / is available, so you either build the FW into the Kernel or you build the driver as module. Booth will work as solution.

Bye
Py


Thanks for your help :D I build the driver as module ,finally problem solved :D
Back to top
View user's profile Send private message
Display posts from previous:   
Reply to topic    Gentoo Forums Forum Index Kernel & Hardware All times are GMT
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum