WiFi not working with BCM43142 on lollipop-x86

2,240 views
Skip to first unread message

Tyler Williamson

unread,
Dec 30, 2015, 1:38:16 PM12/30/15
to Android-x86
I have no WiFi currently. The wlan0 and eth0 interfaces do not show up on netcfg. When I boot into Ubuntu, I can enable Wifi using proprietary drivers (wl), and the wl module appears to be installed, but there is no Wifi. The b43 driver does not support my wireless card either. I have tried disabling and enabling and installing iwlwifi modules, but I cannot get it to work. I can run commands and such if needed. Here is my setup, netcfg, lspci, and lsmod.

Setup
> Android-x86_64 5.1rc1
> Dell Inspiron 7347
> Intel® Dual Band Wireless-AC 7260 Plus Bluetooth*
> No Ethernet Port

netcfg
> ip6tnl0  DOWN 0.0.0.0/0   0x00000080 00:00:00:00:00:00
> lo       UP 127.0.0.1/8   0x00000049 00:00:00:00:00:00
> sit0     DOWN 0.0.0.0/0   0x00000080 00:00:00:00:00:00

lspci
> 00:00.0 Class 0600: 8086:0a04
> 00:02.0 Class 0300: 8086:0a16 i915
> 00:03.0 Class 0403: 8086:0a0c snd_hda_intel
> 00:04.0 Class 1180: 8086:0a03
> 00:14.0 Class 0c03: 8086:9c31 xhci_hcd
> 00:16.0 Class 0780: 8086:9c3a
> 00:1b.0 Class 0403: 8086:9c20 snd_hda_intel
> 00:1c.0 Class 0604: 8086:9c14 pcieport
> 00:1d.0 Class 0c03: 8086:9c26 ehci-pci
> 00:1f.0 Class 0601: 8086:9c43 lpc_ich
> 00:1f.2 Class 0106: 8086:9c03 ahci
> 00:1f.3 Class 0c05: 8086:9c22
> 00:1f.6 Class 1180: 8086:9c24
> 01:00.0 Class 0280: 14e4:4365 bcma-pci-bridge

14e4:4365 is BCM43142

> wl 6350517 0 - Live 0x0000000000000000 (P)
> cfg80211 455178 1 wl, Live 0x0000000000000000

Thank you,
Tyler

Tyler Williamson

unread,
Jan 1, 2016, 4:02:39 PM1/1/16
to Android-x86
Has anyone gotten WiFi working with BCM43142?

Or know of if wl needs to be updated or how to do it?

Thank you,

JJ Meijer

unread,
Jan 1, 2016, 4:29:53 PM1/1/16
to Android-x86
It appears you need the wl driver for that. Have you tried manually modprobing it?


http://linuxwireless.org/en/users/Drivers/b43/

Tyler Williamson

unread,
Jan 1, 2016, 4:55:32 PM1/1/16
to Android-x86
Yes. I have tried both

modprobe wl
busybox modprobe wl

And lsmod shows that wl is on, but netcfg still shows no wlan0 or eth0 and there is no WiFi in Android itself.

JJ Meijer

unread,
Jan 1, 2016, 5:12:15 PM1/1/16
to Android-x86
Might there be some interesting dmesg log information after you probe? Have you googled if it's working on another Linux distro like Ubuntu?

Tyler Williamson

unread,
Jan 1, 2016, 5:34:23 PM1/1/16
to Android-x86
<4>[ 2497.671337] wl: Unknown symbol cfg80211_scan_done (err 0)
<4>[ 2497.671398] wl: Unknown symbol cfg80211_disconnected (err 0)
<4>[ 2497.671424] wl: Unknown symbol wiphy_new_nm (err 0)
<4>[ 2497.671441] wl: Unknown symbol cfg80211_inform_bss_width_frame (err 0)
<4>[ 2497.671460] wl: Unknown symbol wiphy_register (err 0)
<4>[ 2497.671476] wl: Unknown symbol cfg80211_put_bss (err 0)
<4>[ 2497.671488] wl: Unknown symbol cfg80211_roamed (err 0)
<4>[ 2497.671502] wl: Unknown symbol cfg80211_inform_bss_width (err 0)
<4>[ 2497.671514] wl: Unknown symbol cfg80211_gtk_rekey_notify (err 0)
<4>[ 2497.671528] wl: Unknown symbol cfg80211_ibss_joined (err 0)
<4>[ 2497.671546] wl: Unknown symbol cfg80211_michael_mic_failure (err 0)
<4>[ 2497.671557] wl: Unknown symbol cfg80211_connect_result (err 0)
<4>[ 2497.671581] wl: Unknown symbol wiphy_unregister (err 0)
<4>[ 2497.671600] wl: Unknown symbol cfg80211_get_bss (err 0)
<4>[ 2497.671617] wl: Unknown symbol __ieee80211_get_channel (err 0)
<4>[ 2497.671655] wl: Unknown symbol ieee80211_channel_to_frequency (err 0)
<4>[ 2497.671672] wl: Unknown symbol cfg80211_report_wowlan_wakeup (err 0)
<4>[ 2497.671688] wl: Unknown symbol ieee80211_frequency_to_channel (err 0)
<4>[ 2497.671708] wl: Unknown symbol wiphy_free (err 0)
<6>[ 2497.689143] cfg80211: Calling CRDA to update world regulatory domain

Very interesting dmesg... I think we have found the problem. I'll begin googling these, but I have very little experience in this

Tyler Williamson

unread,
Jan 1, 2016, 5:37:46 PM1/1/16
to Android-x86
As for the second part of your question, I have a Ubuntu live USB and it works fine with wl (have to enable the driver though)

Povilas Staniulis

unread,
Jan 1, 2016, 5:55:16 PM1/1/16
to andro...@googlegroups.com
These error messages suggest that cfg80211 module isn't loaded. But last message shows that it is...
Strange.
--
You received this message because you are subscribed to the Google Groups "Android-x86" group.
To unsubscribe from this group and stop receiving emails from it, send an email to android-x86...@googlegroups.com.
To post to this group, send email to andro...@googlegroups.com.
Visit this group at https://groups.google.com/group/android-x86.
For more options, visit https://groups.google.com/d/optout.

Tyler Williamson

unread,
Jan 1, 2016, 6:06:41 PM1/1/16
to Android-x86
lsmod confirms that cfg80211 is loaded.

I have been reading that some people run into similar problems when there is a dependency problem with lib80211. It wasnt running before, so I enabled it. Still getting the same dmesg messages though.

Also made sure any other conflicting drivers (b43 etc) were turned off. Still nothing

Tyler Williamson

unread,
Jan 1, 2016, 6:08:45 PM1/1/16
to Android-x86
Hallelujah! Something I just did worked. It might have been the conflicts

Chih-Wei Huang

unread,
Jan 4, 2016, 12:38:25 PM1/4/16
to Android-x86
2016-01-02 6:34 GMT+08:00 Tyler Williamson <tjw...@gmail.com>:
> <4>[ 2497.671337] wl: Unknown symbol cfg80211_scan_done (err 0)
> <4>[ 2497.671398] wl: Unknown symbol cfg80211_disconnected (err 0)
> <4>[ 2497.671424] wl: Unknown symbol wiphy_new_nm (err 0)
> <4>[ 2497.671441] wl: Unknown symbol cfg80211_inform_bss_width_frame (err 0)
> <4>[ 2497.671460] wl: Unknown symbol wiphy_register (err 0)
> <4>[ 2497.671476] wl: Unknown symbol cfg80211_put_bss (err 0)
> <4>[ 2497.671488] wl: Unknown symbol cfg80211_roamed (err 0)
> <4>[ 2497.671502] wl: Unknown symbol cfg80211_inform_bss_width (err 0)
> <4>[ 2497.671514] wl: Unknown symbol cfg80211_gtk_rekey_notify (err 0)
> <4>[ 2497.671528] wl: Unknown symbol cfg80211_ibss_joined (err 0)
> <4>[ 2497.671546] wl: Unknown symbol cfg80211_michael_mic_failure (err 0)
> <4>[ 2497.671557] wl: Unknown symbol cfg80211_connect_result (err 0)
> <4>[ 2497.671581] wl: Unknown symbol wiphy_unregister (err 0)
> <4>[ 2497.671600] wl: Unknown symbol cfg80211_get_bss (err 0)
> <4>[ 2497.671617] wl: Unknown symbol __ieee80211_get_channel (err 0)
> <4>[ 2497.671655] wl: Unknown symbol ieee80211_channel_to_frequency (err 0)
> <4>[ 2497.671672] wl: Unknown symbol cfg80211_report_wowlan_wakeup (err 0)
> <4>[ 2497.671688] wl: Unknown symbol ieee80211_frequency_to_channel (err 0)
> <4>[ 2497.671708] wl: Unknown symbol wiphy_free (err 0)
> <6>[ 2497.689143] cfg80211: Calling CRDA to update world regulatory domain

The error is due to the modprobe of android busybox porting.
It's just a false alarm. The depended modules will finally be loaded.

In marshmallow-x86 we will use a different modprobe
implementation which won't issue such errors.


--
Chih-Wei
Android-x86 project
http://www.android-x86.org

Charles Milette

unread,
Jan 4, 2016, 9:58:23 PM1/4/16
to Android-x86
+1 for this.
Except for that and sometimes soft reboot (usually when I plug/unplug my wireless Logitech Mouse in my laptop), the 5.1-rc1 efi image is working perfectly.
Since I use the x86_64 image for booting via EFI (I don't have CSM), I can't load the driver because "su" won't work, so is it possible to include the driver within Android-x86?
Or, is there any way to load the driver without root/To make root working ? (Example: Manually installing SuperSU in the system files)
Message has been deleted

Chih-Wei Huang

unread,
Jan 4, 2016, 10:23:36 PM1/4/16
to Android-x86
2016-01-05 3:56 GMT+08:00 Charles Milette <charles...@gmail.com>:
> +1 for this.
> Except for that and sometimes soft reboot (usually when I plug/unplug my
> wireless Logitech Mouse in my laptop), the 5.1-rc1 efi image is working
> perfectly.
> Since I use the x86_64 image for booting via EFI (I don't have CSM), I can't
> load the driver because "su" won't work, so is it possible to include the
> driver within Android-x86?

Just switch to another virtual console by Alt-F1.
Switch back to GUI by Alt-F7.

> Or, is there any way to load the driver without root/To make root working ?
> (Example: Manually installing SuperSU in the system files)


Message has been deleted

Charles Milette

unread,
Jan 5, 2016, 10:13:55 PM1/5/16
to Android-x86
Thanks for the tip.
After making sure that lib80211 and cfg80211 are loaded and loading wl, I can't see wlan0 in netcfg, nor does Android. :(
Is there any easy way to make this wireless card working forever? Any help would be aprreciated.

Tyler Williamson

unread,
Jan 6, 2016, 8:30:23 PM1/6/16
to Android-x86

I have to also do busybox modprobe bcma

Tyler Williamson

unread,
Jan 6, 2016, 8:31:49 PM1/6/16
to Android-x86
On Tuesday, January 5, 2016 at 10:13:55 PM UTC-5, Charles Milette wrote:

I have to also do busybox modprobe bcma

I haven't figured out to have to make it always do it on load though

Charles Milette

unread,
Jan 7, 2016, 8:31:28 PM1/7/16
to Android-x86
On classic linux, there is "/etc/modules.conf". All modules typed here will be loaded at startup. But it doesn't seem to have it's equivalent in Android-x86.
If root access worked, it would be so easy to create an app that automatically run these commands... But root doesn't works on x86_64...


If anyone knows how to run these commands / load drivers at startup, please help us.

Chih-Wei Huang

unread,
Jan 13, 2016, 8:41:44 AM1/13/16
to Android-x86
Two ways:
* Add a script to a subdirectory named scripts
in the directory android-x86 installed
* Add the commands to /etc/init.sh

Charles Milette

unread,
Jan 14, 2016, 12:32:58 AM1/14/16
to Android-x86

* Add a script to a subdirectory named scripts
  in the directory android-x86 installed
 
So that would be /android-5.1-rc1/scripts or /android-5.1-rc1/system/scripts ?

Chih-Wei Huang

unread,
Jan 14, 2016, 12:41:42 AM1/14/16
to Android-x86
/android-5.1-rc1/scripts

You need to modify it under the debug mode
before booting into android.

Charles Milette

unread,
Jan 14, 2016, 9:42:07 AM1/14/16
to Android-x86

You need to modify it under the debug mode
before booting into android.

I just mounted it in Windows and made the changes from here. Easier.

Charles Milette

unread,
Jan 14, 2016, 10:16:59 AM1/14/16
to Android-x86
I just tested the script:

modprobe lib80211
modprobe cfg30211
modprobe bcma
modprobe wl

After startup, Wi-Fi works. The card's integrated Bluetooth also. I am currently replying from Android :)

Chih-Wei Huang

unread,
Jan 15, 2016, 3:49:11 AM1/15/16
to Android-x86
Could you provide the output of the following commands:

su
cat /sys/class/dmi/id/uevent
cat /sys/class/dmi/id/product_name

I can customize the init.sh for this device.

Charles Milette

unread,
Jan 15, 2016, 8:40:21 AM1/15/16
to Android-x86
Oops, it's "modprobe cfg80211" and not "modprobe cfg30211".

product_name gives:
HP 14 Notebook PC

uevent gives:
MODALIAS=dmi:bvnInsyde:bvrF.40:bd07/24/2015:svnHP:pnHP14NotebookPC:pvrType1ProductConfigId:rvnHP:rn8092:rvr89.22:cvnHP:ct10:cvrChassisVersion:


I personnaly find it better to base on "14e4:4365" for detecting the BCM43142 because it will work for other computers equipped with this card, and not just mine.

Chih-Wei Huang

unread,
Jan 17, 2016, 10:58:42 AM1/17/16
to Android-x86
Fine. Could you provide a script?

Besides, I guess just one modprobe is enough:

modprobe wl

Could you try?

Charles Milette

unread,
Jan 17, 2016, 11:47:38 AM1/17/16
to Android-x86

Could you provide a script?

I'm not really into Linux scripting, but I've came up with something like this:

if lspci | grep -q "14e4:4365"; then
modprobe things here
fi

 
Besides, I guess just one modprobe is enough:

modprobe wl

Could you try?

I've tried it before, it didn't worked. I'll try to remove the maximum possible from the script, but I think the end result will be:

modprobe bcma
modprobe wl






There's someone that haves a different broadcom card and that the script also fixed his wi-fi problems: https://plus.google.com/u/0/105763419002014634202/posts/dfHCoexfkhS

I've reffered him here, and if he replies, we might also be able to add his card to the script.

Charles Milette

unread,
Jan 17, 2016, 11:55:41 AM1/17/16
to Android-x86

> I've tried it before, it didn't worked. I'll try to remove the maximum possible from the script, but I think the end result will be:
>
>
>
> modprobe bcma
> modprobe wl

My prediction was good. So basically the final script would be:

if lspci | grep -q "14e4:4365"; then

modprobe bcma
modprobe wl
fi

I'm gonna test it

Charles Milette

unread,
Jan 17, 2016, 1:00:52 PM1/17/16
to Android-x86

I'm gonna test it


Nope, after "Detecting Android-x86 ... found at /dev/sda5", I return to GRUB. I probably mistaken something.

pstglia

unread,
Jan 17, 2016, 1:16:32 PM1/17/16
to Android-x86
Hi,


Em domingo, 17 de janeiro de 2016 16:00:52 UTC-2, Charles Milette escreveu:

I'm gonna test it


Nope, after "Detecting Android-x86 ... found at /dev/sda5", I return to GRUB. I probably mistaken something.

You have to use square brackets on if statements. 

Also, evaluate lspci/grep with  $() and check if you pattern was found:

A suggestion (can be better than this):

if [ $(lspci | grep "14e4:4365" | wc -l) -gt 0 ]

Antony Stone

unread,
Jan 17, 2016, 1:22:20 PM1/17/16
to andro...@googlegroups.com
On Sunday 17 January 2016 at 19:16:32, pstglia wrote:

> Em domingo, 17 de janeiro de 2016 16:00:52 UTC-2, Charles Milette escreveu:
> > I'm gonna test it
> >
> > Nope, after "Detecting Android-x86 ... found at /dev/sda5", I return to
> > GRUB. I probably mistaken something.
>
> You have to use square brackets on if statements.

Er, no you don't.

The left square bracket is an alias for the "test" command (the right bracket
is an alias for nothing), so you need the brackets if you are going to check
something like the value of a number, the existence of a file, etc (see "man
test" for details).

However to simply check the success or otherwise of a command, the brackets
are not needed (and in fact must not be used).

Therefore:

if lspci | grep -q "14e4:4365"
then
whatever
fi

Is perfectly valid. If grep finds the string in the output of lspci, the
result will be true, otherwise false. No need to test for how many times it
was found.

> Also, evaluate lspci/grep with $() and check if you pattern was found:
>
> A suggestion (can be better than this):
>
> if [ $(lspci | grep "14e4:4365" | wc -l) -gt 0 ]
> then
> modprobe bcma
> modprobe wl
> fi

Whilst that will work, it is really over-complicating things.


Antony.

--
"Black holes are where God divided by zero."

- Steven Wright

Please reply to the list;
please *don't* CC me.

Charles Milette

unread,
Jan 17, 2016, 1:42:08 PM1/17/16
to Android-x86, Antony...@android.open.source.it
Thanks for the advice,
After trying all the 3 script (mine, pstglia's and Anthony's), it still sends me back to GRUB, without any output but "Detecting Android-x86 ... found at /dev/sda5"... Any reason?

Antony Stone

unread,
Jan 17, 2016, 1:49:18 PM1/17/16
to andro...@googlegroups.com
Where are you placing this script?

What does it look like (in full, including the first line starting with #)?


Antony.

--
Tinned food was developed for the British Navy in 1813.

The tin opener was not invented until 1858.

pstglia

unread,
Jan 17, 2016, 1:55:18 PM1/17/16
to Android-x86, Antony...@android.open.source.it
Hi Anthony


On Sunday 17 January 2016 at 19:16:32, pstglia wrote:

> Em domingo, 17 de janeiro de 2016 16:00:52 UTC-2, Charles Milette escreveu:
> > I'm gonna test it
> >
> > Nope, after "Detecting Android-x86 ... found at /dev/sda5", I return to
> > GRUB. I probably mistaken something.
>
> You have to use square brackets on if statements.

Er, no you don't.

The left square bracket is an alias for the "test" command (the right bracket
is an alias for nothing), so you need the brackets if you are going to check
something like the value of a number, the existence of a file, etc (see "man
test" for details).

However to simply check the success or otherwise of a command, the brackets
are not needed (and in fact must not be used).

 Thanks for the explanation! With this info, I can review lots of scripts. I always used to check by number of occurences (or testing $? after cmd execution) 

Off topic: Do you know if this is the same for every scripting available? (I mean ksh, csh, etc)
When I first have contact with Unix (It was a Unisys U6000 ), if I'm not wrong every check on "if" statements required square brackets. But I'm probably wrong

Regards,
Pstglia

Дмитрий А

unread,
Jan 17, 2016, 2:16:38 PM1/17/16
to Android-x86
WiFi not working with BCM43142 on lollipop-x86

It was possible to solve the problem of how the chip BCM43142?

Povilas Staniulis

unread,
Jan 17, 2016, 2:18:09 PM1/17/16
to andro...@googlegroups.com
Square bracket [ is in fact a standard command. It's a short equivalent of "test" command.

"if" keyword by itself does not require square brackets, any command can be used (eg. grep). The statement is executed if exit code is zero.


On 2016.01.17 20:55, pstglia wrote:

Off topic: Do you know if this is the same for every scripting available? (I mean ksh, csh, etc)
When I first have contact with Unix (It was a Unisys U6000 ), if I'm not wrong every check on "if" statements required square brackets. But I'm probably wrong

Regards,
Pstglia

--
You received this message because you are subscribed to the Google Groups "Android-x86" group.
To unsubscribe from this group and stop receiving emails from it, send an email to android-x86...@googlegroups.com.
To post to this group, send email to andro...@googlegroups.com.
Visit this group at https://groups.google.com/group/android-x86.
For more options, visit https://groups.google.com/d/optout.

Charles Milette

unread,
Jan 17, 2016, 3:57:01 PM1/17/16
to Android-x86, Antony...@android.open.source.it

Where are you placing this script?

In /android-5.1-rc1/scripts/bcm41342.sh
What does it look like (in full, including the first line starting with #)?

I haven't put any hashbang on it, because it worked when it was only
modprobe bcma
modprobe wl

Maybe the if statement would work with a hashbang. But what should I put? I don't think that the linux normal ones applies here. Besides, init.sh doesn't even have one and runs fine, even with if statements.
 

Currently, this is my script:
if lspci | grep -q "14e4:4365"
then
Message has been deleted
Message has been deleted

Andrew Craig

unread,
Jan 20, 2016, 8:23:40 PM1/20/16
to Android-x86
@Charles Milette, how did you mount the file system in windows? The native windows archive mounter doesn't seem to work.

Charles Milette

unread,
Jan 20, 2016, 8:38:20 PM1/20/16
to Android-x86
I mounted the file system with the hard drive manager, like explained here.
If you have an ext* file system, also install Ext2FSD

Charles Milette

unread,
Jan 21, 2016, 8:14:38 PM1/21/16
to Android-x86
...

Does anyone knows the problem with the script?

Chih-Wei Huang

unread,
Jan 21, 2016, 9:00:49 PM1/21/16
to Android-x86
2016-01-22 9:14 GMT+08:00 Charles Milette <charles...@gmail.com>:
>
> Does anyone knows the problem with the script?

No idea...

Could you try this simple patch to init.sh
(/system/etc/init.sh)?

diff --git a/init.sh b/init.sh
index 9ca62fc..396754b 100644
--- a/init.sh
+++ b/init.sh
@@ -15,6 +15,8 @@ function init_misc()
# a hack for USB modem
lsusb | grep 1a8d:1000 && eject

+ lspci | grep -q 14e4:4365 && modprobe bcma && modprobe wl
+
# in case no cpu governor driver autoloads
[ -d /sys/devices/system/cpu/cpu0/cpufreq ] || modprobe acpi-cpufreq
}

If not work, please show me the lsmod and dmesg.

Charles Milette

unread,
Jan 22, 2016, 9:17:57 AM1/22/16
to Android-x86
Nope, back to start. Even manually modprobing bcma and wl or even lib80211 doesn't works after boot. Here's my lsmod and dmesg after startup:

lsmod:
binfmt_misc 8963 1 - Live 0x0000000000000000
wl
6350517 0 - Live 0x0000000000000000 (P)
joydev
8552 0 - Live 0x0000000000000000
aesni_intel
159292 0 - Live 0x0000000000000000
cfg80211
455178 1 wl, Live 0x0000000000000000
aes_x86_64
7683 1 aesni_intel, Live 0x0000000000000000
mac_hid
3595 0 - Live 0x0000000000000000
pppoe
8302 0 - Live 0x0000000000000000
hp_wmi
7001 0 - Live 0x0000000000000000
sparse_keymap
3652 1 hp_wmi, Live 0x0000000000000000
btusb
29975 0 - Live 0x0000000000000000
bluetooth
414168 2 btusb, Live 0x0000000000000000
uvcvideo
65127 1 - Live 0x0000000000000000
videobuf2_vmalloc
4621 1 uvcvideo, Live 0x0000000000000000
videobuf2_memops
2810 1 videobuf2_vmalloc, Live 0x0000000000000000
videobuf2_core
34271 1 uvcvideo, Live 0x0000000000000000
psmouse
94292 0 - Live 0x0000000000000000
atkbd
16608 0 - Live 0x0000000000000000
pcspkr
1878 0 - Live 0x0000000000000000
r8169
60100 0 - Live 0x0000000000000000
mii
4614 1 r8169, Live 0x0000000000000000
bcma
40166 0 - Live 0x0000000000000000
i2c_i801
15326 0 - Live 0x0000000000000000
snd_hda_codec_realtek
64257 1 - Live 0x0000000000000000
lpc_ich
13917 0 - Live 0x0000000000000000
snd_hda_codec_generic
48862 1 snd_hda_codec_realtek, Live 0x0000000000000000
snd_hda_codec_hdmi
37359 1 - Live 0x0000000000000000
shpchp
23255 0 - Live 0x0000000000000000
snd_hda_intel
24340 0 - Live 0x0000000000000000
snd_hda_controller
22904 1 snd_hda_intel, Live 0x0000000000000000
snd_hda_codec
110693 5 snd_hda_codec_realtek,snd_hda_codec_hdmi,snd_hda_codec_generic,snd_hda_intel,snd_hda_controller, Live 0x0000000000000000
snd_hwdep
5553 1 snd_hda_codec, Live 0x0000000000000000
snd_pcm
84081 4 snd_hda_codec_hdmi,snd_hda_intel,snd_hda_controller,snd_hda_codec, Live 0x0000000000000000
snd_timer
19094 1 snd_pcm, Live 0x0000000000000000
snd
64478 7 snd_hda_codec_generic,snd_hda_codec_hdmi,snd_hda_intel,snd_hda_codec,snd_hwdep,snd_pcm,snd_timer, Live 0x0000000000000000
soundcore
6367 2 snd_hda_codec,snd, Live 0x0000000000000000
i915
887509 8 - Live 0x0000000000000000
drm_kms_helper
90705 1 i915, Live 0x0000000000000000
drm
289791 9 i915,drm_kms_helper, Live 0x0000000000000000
i2c_algo_bit
5125 1 i915, Live 0x0000000000000000
wmi
8841 1 hp_wmi, Live 0x0000000000000000
8250_fintek 2563 0 - Live 0x0000000000000000
parport_pc
16919 0 - Live 0x0000000000000000
parport
22517 1 parport_pc, Live 0x0000000000000000
hp_accel
17703 0 - Live 0x0000000000000000
lis3lv02d
11924 1 hp_accel, Live 0x0000000000000000
input_polldev
5111 1 lis3lv02d, Live 0x0000000000000000
hp_wireless
1853 0 - Live 0x0000000000000000


dmesg:
<6>[    0.000000] Initializing cgroup subsys cpu
<6>[    0.000000] Initializing cgroup subsys cpuacct
<5>[    0.000000] Linux version 4.0.9-android-x86_64+ (cwhuang@android-x86) (gcc version 4.8.2 (Ubuntu 4.8.2-19ubuntu1) ) #1 SMP PREEMPT Wed Oct 7 02:56:08 CST 2015
<6>[    0.000000] Command line: BOOT_IMAGE=/android-5.1-rc1/kernel quiet root=/dev/ram0 androidboot.hardware=android_x86_64
<6>[    0.000000] KERNEL supported cpus:
<6>[    0.000000]   Intel GenuineIntel
<6>[    0.000000]   AMD AuthenticAMD
<6>[    0.000000]   Centaur CentaurHauls
<6>[    0.000000] e820: BIOS-provided physical RAM map:
<6>[    0.000000] BIOS-e820: [mem 0x0000000000000000-0x0000000000057fff] usable
<6>[    0.000000] BIOS-e820: [mem 0x0000000000058000-0x0000000000058fff] reserved
<6>[    0.000000] BIOS-e820: [mem 0x0000000000059000-0x0000000000085fff] usable
<6>[    0.000000] BIOS-e820: [mem 0x0000000000086000-0x000000000009ffff] reserved
<6>[    0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000009c2bdfff] usable
<6>[    0.000000] BIOS-e820: [mem 0x000000009c2be000-0x000000009c4bdfff] type 20
<6>[    0.000000] BIOS-e820: [mem 0x000000009c4be000-0x000000009cdbdfff] reserved
<6>[    0.000000] BIOS-e820: [mem 0x000000009cdbe000-0x000000009cfbdfff] ACPI NVS
<6>[    0.000000] BIOS-e820: [mem 0x000000009cfbe000-0x000000009cffdfff] ACPI data
<6>[    0.000000] BIOS-e820: [mem 0x000000009cffe000-0x000000009cffefff] usable
<6>[    0.000000] BIOS-e820: [mem 0x00000000e0000000-0x00000000efffffff] reserved
<6>[    0.000000] BIOS-e820: [mem 0x00000000feb00000-0x00000000feb03fff] reserved
<6>[    0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
<6>[    0.000000] BIOS-e820: [mem 0x00000000fed10000-0x00000000fed19fff] reserved
<6>[    0.000000] BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved
<6>[    0.000000] BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
<6>[    0.000000] BIOS-e820: [mem 0x00000000ffa00000-0x00000000ffffffff] reserved
<6>[    0.000000] BIOS-e820: [mem 0x0000000100000000-0x00000001deffffff] usable
<6>[    0.000000] NX (Execute Disable) protection: active
<6>[    0.000000] efi: EFI v2.40 by INSYDE Corp.
<6>[    0.000000] efi:  SMBIOS=0x9c630000  ACPI 2.0=0x9cffd014
<6>[    0.000000] efi: mem00: [Boot Code          |   |  |  |  |   |WB|WT|WC|UC] range=[0x0000000000000000-0x0000000000001000) (0MB)
<6>[    0.000000] efi: mem01: [Conventional Memory|   |  |  |  |   |WB|WT|WC|UC] range=[0x0000000000001000-0x0000000000058000) (0MB)
<6>[    0.000000] efi: mem02: [Reserved           |   |  |  |  |   |WB|WT|WC|UC] range=[0x0000000000058000-0x0000000000059000) (0MB)
<6>[    0.000000] efi: mem03: [Conventional Memory|   |  |  |  |   |WB|WT|WC|UC] range=[0x0000000000059000-0x000000000007f000) (0MB)
<6>[    0.000000] efi: mem04: [Boot Code          |   |  |  |  |   |WB|WT|WC|UC] range=[0x000000000007f000-0x0000000000080000) (0MB)
<6>[    0.000000] efi: mem05: [Conventional Memory|   |  |  |  |   |WB|WT|WC|UC] range=[0x0000000000080000-0x0000000000086000) (0MB)
<6>[    0.000000] efi: mem06: [Reserved           |   |  |  |  |   |WB|WT|WC|UC] range=[0x0000000000086000-0x0000000000088000) (0MB)
<6>[    0.000000] efi: mem07: [Runtime Data       |RUN|  |  |  |   |WB|WT|WC|UC] range=[0x0000000000088000-0x00000000000a0000) (0MB)
<6>[    0.000000] efi: mem08: [Loader Data        |   |  |  |  |   |WB|WT|WC|UC] range=[0x0000000000100000-0x0000000000f8c000) (14MB)
<6>[    0.000000] efi: mem09: [Conventional Memory|   |  |  |  |   |WB|WT|WC|UC] range=[0x0000000000f8c000-0x0000000010000000) (240MB)
<6>[    0.000000] efi: mem10: [Boot Code          |   |  |  |  |   |WB|WT|WC|UC] range=[0x0000000010000000-0x000000001000b000) (0MB)
<6>[    0.000000] efi: mem11: [Conventional Memory|   |  |  |  |   |WB|WT|WC|UC] range=[0x000000001000b000-0x0000000037d54000) (637MB)
<6>[    0.000000] efi: mem12: [Loader Data        |   |  |  |  |   |WB|WT|WC|UC] range=[0x0000000037d54000-0x0000000037ea2000) (1MB)
<6>[    0.000000] efi: mem13: [Conventional Memory|   |  |  |  |   |WB|WT|WC|UC] range=[0x0000000037ea2000-0x0000000060c79000) (653MB)
<6>[    0.000000] efi: mem14: [Loader Data        |   |  |  |  |   |WB|WT|WC|UC] range=[0x0000000060c79000-0x00000000870ad000) (612MB)
<6>[    0.000000] efi: mem15: [Boot Data          |   |  |  |  |   |WB|WT|WC|UC] range=[0x00000000870ad000-0x00000000870cd000) (0MB)
<6>[    0.000000] efi: mem16: [Conventional Memory|   |  |  |  |   |WB|WT|WC|UC] range=[0x00000000870cd000-0x0000000089d99000) (44MB)
<6>[    0.000000] efi: mem17: [Loader Data        |   |  |  |  |   |WB|WT|WC|UC] range=[0x0000000089d99000-0x0000000089e91000) (0MB)
<6>[    0.000000] efi: mem18: [Conventional Memory|   |  |  |  |   |WB|WT|WC|UC] range=[0x0000000089e91000-0x0000000089e94000) (0MB)
<6>[    0.000000] efi: mem19: [Loader Data        |   |  |  |  |   |WB|WT|WC|UC] range=[0x0000000089e94000-0x0000000089e95000) (0MB)
<6>[    0.000000] efi: mem20: [Conventional Memory|   |  |  |  |   |WB|WT|WC|UC] range=[0x0000000089e95000-0x0000000089e9a000) (0MB)
<6>[    0.000000] efi: mem21: [Loader Data        |   |  |  |  |   |WB|WT|WC|UC] range=[0x0000000089e9a000-0x0000000089f8d000) (0MB)
<6>[    0.000000] efi: mem22: [Boot Data          |   |  |  |  |   |WB|WT|WC|UC] range=[0x0000000089f8d000-0x000000008b07a000) (16MB)
<6>[    0.000000] efi: mem23: [Boot Code          |   |  |  |  |   |WB|WT|WC|UC] range=[0x000000008b07a000-0x000000008b093000) (0MB)
<6>[    0.000000] efi: mem24: [Boot Data          |   |  |  |  |   |WB|WT|WC|UC] range=[0x000000008b093000-0x000000008b0df000) (0MB)
<6>[    0.000000] efi: mem25: [Conventional Memory|   |  |  |  |   |WB|WT|WC|UC] range=[0x000000008b0df000-0x000000008b0e0000) (0MB)
<6>[    0.000000] efi: mem26: [Loader Data        |   |  |  |  |   |WB|WT|WC|UC] range=[0x000000008b0e0000-0x000000008b0e2000) (0MB)
<6>[    0.000000] efi: mem27: [Conventional Memory|   |  |  |  |   |WB|WT|WC|UC] range=[0x000000008b0e2000-0x000000008b0e5000) (0MB)
<6>[    0.000000] efi: mem28: [Loader Data        |   |  |  |  |   |WB|WT|WC|UC] range=[0x000000008b0e5000-0x000000008b0e7000) (0MB)
<6>[    0.000000] efi: mem29: [Conventional Memory|   |  |  |  |   |WB|WT|WC|UC] range=[0x000000008b0e7000-0x000000008b0e8000) (0MB)
<6>[    0.000000] efi: mem30: [Loader Data        |   |  |  |  |   |WB|WT|WC|UC] range=[0x000000008b0e8000-0x000000008b0ea000) (0MB)
<6>[    0.000000] efi: mem31: [Conventional Memory|   |  |  |  |   |WB|WT|WC|UC] range=[0x000000008b0ea000-0x000000008b0ec000) (0MB)
<6>[    0.000000] efi: mem32: [Loader Data        |   |  |  |  |   |WB|WT|WC|UC] range=[0x000000008b0ec000-0x000000008b0ee000) (0MB)
<6>[    0.000000] efi: mem33: [Conventional Memory|   |  |  |  |   |WB|WT|WC|UC] range=[0x000000008b0ee000-0x000000008b1c8000) (0MB)
<6>[    0.000000] efi: mem34: [Loader Code        |   |  |  |  |   |WB|WT|WC|UC] range=[0x000000008b1c8000-0x000000008b2ee000) (1MB)
<6>[    0.000000] efi: mem35: [Conventional Memory|   |  |  |  |   |WB|WT|WC|UC] range=[0x000000008b2ee000-0x000000008db4c000) (40MB)
<6>[    0.000000] efi: mem36: [Boot Data          |   |  |  |  |   |WB|WT|WC|UC] range=[0x000000008db4c000-0x000000008f2ee000) (23MB)
<6>[    0.000000] efi: mem37: [Conventional Memory|   |  |  |  |   |WB|WT|WC|UC] range=[0x000000008f2ee000-0x000000009be05000) (203MB)
<6>[    0.000000] efi: mem38: [Loader Data        |   |  |  |  |   |WB|WT|WC|UC] range=[0x000000009be05000-0x000000009be0e000) (0MB)
<6>[    0.000000] efi: mem39: [Boot Code          |   |  |  |  |   |WB|WT|WC|UC] range=[0x000000009be0e000-0x000000009c2be000) (4MB)
<6>[    0.000000] efi: mem40: [Runtime Code       |RUN|  |  |  |   |WB|WT|WC|UC] range=[0x000000009c2be000-0x000000009c4be000) (2MB)
<6>[    0.000000] efi: mem41: [Runtime Data       |RUN|  |  |  |   |WB|WT|WC|UC] range=[0x000000009c4be000-0x000000009c8be000) (4MB)
<6>[    0.000000] efi: mem42: [Reserved           |   |  |  |  |   |WB|WT|WC|UC] range=[0x000000009c8be000-0x000000009cdbe000) (5MB)
<6>[    0.000000] efi: mem43: [ACPI Memory NVS    |   |  |  |  |   |WB|WT|WC|UC] range=[0x000000009cdbe000-0x000000009cfbe000) (2MB)
<6>[    0.000000] efi: mem44: [ACPI Reclaim Memory|   |  |  |  |   |WB|WT|WC|UC] range=[0x000000009cfbe000-0x000000009cffe000) (0MB)
<6>[    0.000000] efi: mem45: [Boot Data          |   |  |  |  |   |WB|WT|WC|UC] range=[0x000000009cffe000-0x000000009cfff000) (0MB)
<6>[    0.000000] efi: mem46: [Conventional Memory|   |  |  |  |   |WB|WT|WC|UC] range=[0x0000000100000000-0x00000001df000000) (3568MB)
<6>[    0.000000] efi: mem47: [Memory Mapped I/O  |RUN|  |  |  |   |  |  |  |UC] range=[0x00000000e0000000-0x00000000f0000000) (256MB)
<6>[    0.000000] efi: mem48: [Memory Mapped I/O  |RUN|  |  |  |   |  |  |  |UC] range=[0x00000000feb00000-0x00000000feb04000) (0MB)
<6>[    0.000000] efi: mem49: [Memory Mapped I/O  |RUN|  |  |  |   |  |  |  |UC] range=[0x00000000fec00000-0x00000000fec01000) (0MB)
<6>[    0.000000] efi: mem50: [Memory Mapped I/O  |RUN|  |  |  |   |  |  |  |UC] range=[0x00000000fed10000-0x00000000fed1a000) (0MB)
<6>[    0.000000] efi: mem51: [Memory Mapped I/O  |RUN|  |  |  |   |  |  |  |UC] range=[0x00000000fed1c000-0x00000000fed20000) (0MB)
<6>[    0.000000] efi: mem52: [Memory Mapped I/O  |RUN|  |  |  |   |  |  |  |UC] range=[0x00000000fee00000-0x00000000fee01000) (0MB)
<6>[    0.000000] efi: mem53: [Memory Mapped I/O  |RUN|  |  |  |   |  |  |  |UC] range=[0x00000000ffa00000-0x0000000100000000) (6MB)
<6>[    0.000000] SMBIOS 2.8 present.
<7>[    0.000000] DMI: HP HP 14 Notebook PC    /8092, BIOS F.40 07/24/2015
<7>[    0.000000] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
<7>[    0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
<6>[    0.000000] e820: last_pfn = 0x1df000 max_arch_pfn = 0x400000000
<7>[    0.000000] MTRR default type: uncachable
<7>[    0.000000] MTRR fixed ranges enabled:
<7>[    0.000000]   00000-9FFFF write-back
<7>[    0.000000]   A0000-BFFFF uncachable
<7>[    0.000000]   C0000-E7FFF write-protect
<7>[    0.000000]   E8000-EFFFF write-combining
<7>[    0.000000]   F0000-FFFFF write-protect
<7>[    0.000000] MTRR variable ranges enabled:
<7>[    0.000000]   0 base 0000000000 mask 7E00000000 write-back
<7>[    0.000000]   1 base 009CFFF000 mask 7FFFFFF000 uncachable
<7>[    0.000000]   2 base 009D000000 mask 7FFF000000 uncachable
<7>[    0.000000]   3 base 009E000000 mask 7FFE000000 uncachable
<7>[    0.000000]   4 base 00A0000000 mask 7FE0000000 uncachable
<7>[    0.000000]   5 base 00C0000000 mask 7FC0000000 uncachable
<7>[    0.000000]   6 disabled
<7>[    0.000000]   7 disabled
<7>[    0.000000]   8 disabled
<7>[    0.000000]   9 disabled
<6>[    0.000000] PAT configuration [0-7]: WB  WC  UC- UC  WB  WC  UC- UC  
<7>[    0.000000] e820: update [mem 0x9cfff000-0xffffffff] usable ==> reserved
<6>[    0.000000] e820: last_pfn = 0x9cfff max_arch_pfn = 0x400000000
<7>[    0.000000] Base memory trampoline at [ffff880000080000] 80000 size 24576
<6>[    0.000000] Using GB pages for direct mapping
<6>[    0.000000] init_memory_mapping: [mem 0x00000000-0x000fffff]
<7>[    0.000000]  [mem 0x00000000-0x000fffff] page 4k
<7>[    0.000000] BRK [0x01b1f000, 0x01b1ffff] PGTABLE
<7>[    0.000000] BRK [0x01b20000, 0x01b20fff] PGTABLE
<7>[    0.000000] BRK [0x01b21000, 0x01b21fff] PGTABLE
<6>[    0.000000] init_memory_mapping: [mem 0x1dee00000-0x1deffffff]
<7>[    0.000000]  [mem 0x1dee00000-0x1deffffff] page 2M
<7>[    0.000000] BRK [0x01b22000, 0x01b22fff] PGTABLE
<6>[    0.000000] init_memory_mapping: [mem 0x1c0000000-0x1dedfffff]
<7>[    0.000000]  [mem 0x1c0000000-0x1dedfffff] page 2M
<6>[    0.000000] init_memory_mapping: [mem 0x1a0000000-0x1bfffffff]
<7>[    0.000000]  [mem 0x1a0000000-0x1bfffffff] page 1G
<6>[    0.000000] init_memory_mapping: [mem 0x00100000-0x9c2bdfff]
<7>[    0.000000]  [mem 0x00100000-0x001fffff] page 4k
<7>[    0.000000]  [mem 0x00200000-0x3fffffff] page 2M
<7>[    0.000000]  [mem 0x40000000-0x7fffffff] page 1G
<7>[    0.000000]  [mem 0x80000000-0x9c1fffff] page 2M
<7>[    0.000000]  [mem 0x9c200000-0x9c2bdfff] page 4k
<6>[    0.000000] init_memory_mapping: [mem 0x9cffe000-0x9cffefff]
<7>[    0.000000]  [mem 0x9cffe000-0x9cffefff] page 4k
<7>[    0.000000] BRK [0x01b23000, 0x01b23fff] PGTABLE
<6>[    0.000000] init_memory_mapping: [mem 0x100000000-0x19fffffff]
<7>[    0.000000]  [mem 0x100000000-0x19fffffff] page 1G
<6>[    0.000000] RAMDISK: [mem 0x37d54000-0x37ea1fff]
<6>[    0.000000] ACPI: Early table checksum verification disabled
<4>[    0.000000] ACPI: RSDP 0x000000009CFFD014 000024 (v02 HPQOEM)
<4>[    0.000000] ACPI: XSDT 0x000000009CFC9188 0000E4 (v01 HPQOEM SLIC-MPC 00000001 HP   01000013)
<4>[    0.000000] ACPI: FACP 0x000000009CFEB000 00010C (v05 HPQOEM SLIC-MPC 00000001 HP   00040000)
<4>[    0.000000] ACPI: DSDT 0x000000009CFD7000 00F964 (v02 HPQOEM 8092     00000000 ACPI 00040000)
<4>[    0.000000] ACPI: FACS 0x000000009CFB8000 000040
<4>[    0.000000] ACPI: UEFI 0x000000009CFFC000 000236 (v01 HPQOEM 8092     00000001 HP   00040000)
<4>[    0.000000] ACPI: UEFI 0x000000009CFFB000 000042 (v01 HPQOEM 8092     00000000 HP   00040000)
<4>[    0.000000] ACPI: SSDT 0x000000009CFF4000 006A38 (v01 HPQOEM 8092     00001000 ACPI 00040000)
<4>[    0.000000] ACPI: MSDM 0x000000009CFF3000 000055 (v03 HPQOEM SLIC-MPC 00000001 HP   00040000)
<4>[    0.000000] ACPI: SSDT 0x000000009CFF0000 0022FB (v02 HPQOEM 8092     00001000 ACPI 00040000)
<4>[    0.000000] ACPI: ASF! 0x000000009CFEF000 0000A5 (v32 HPQOEM 8092     00000001 HP   00040000)
<4>[    0.000000] ACPI: ASPT 0x000000009CFEE000 000034 (v07 HPQOEM 8092     00000001 HP   00040000)
<4>[    0.000000] ACPI: BOOT 0x000000009CFED000 000028 (v01 HPQOEM 8092     00000001 HP   00040000)
<4>[    0.000000] ACPI: DBGP 0x000000009CFEC000 000034 (v01 HPQOEM 8092     00000001 HP   00040000)
<4>[    0.000000] ACPI: HPET 0x000000009CFEA000 000038 (v01 HPQOEM 8092     00000001 HP   00040000)
<4>[    0.000000] ACPI: LPIT 0x000000009CFE9000 000094 (v01 HPQOEM 8092     00000000 HP   00040000)
<4>[    0.000000] ACPI: APIC 0x000000009CFE8000 00008C (v03 HPQOEM 8092     00000001 HP   00040000)
<4>[    0.000000] ACPI: MCFG 0x000000009CFE7000 00003C (v01 HPQOEM 8092     00000001 HP   00040000)
<4>[    0.000000] ACPI: SSDT 0x000000009CFD5000 0014D1 (v02 HPQOEM 8092     00001000 ACPI 00040000)
<4>[    0.000000] ACPI: SSDT 0x000000009CFD4000 000539 (v02 HPQOEM 8092     00003000 ACPI 00040000)
<4>[    0.000000] ACPI: SSDT 0x000000009CFD3000 000B74 (v02 HPQOEM 8092     00003000 ACPI 00040000)
<4>[    0.000000] ACPI: SSDT 0x000000009CFCD000 005AA9 (v02 HPQOEM 8092     00003000 ACPI 00040000)
<4>[    0.000000] ACPI: SSDT 0x000000009CFCC000 000394 (v02 HPQOEM 8092     00001000 ACPI 00040000)
<4>[    0.000000] ACPI: PCCT 0x000000009CFCB000 00006E (v05 HPQOEM 8092     00001000 HP   00040000)
<4>[    0.000000] ACPI: SSDT 0x000000009CFCA000 000AC4 (v02 HPQOEM 8092     00001000 ACPI 00040000)
<4>[    0.000000] ACPI: DMAR 0x000000009CFC8000 0000A8 (v01 HPQOEM 8092     00000001 HP   00040000)
<4>[    0.000000] ACPI: FPDT 0x000000009CFC7000 000044 (v01 HPQOEM SLIC-MPC 00000002 HP   00040000)
<4>[    0.000000] ACPI: BGRT 0x000000009CFC6000 000038 (v01 HPQOEM 8092     00000001 HP   00040000)
<7>[    0.000000] ACPI: Local APIC address 0xfee00000
<7>[    0.000000]  [ffffea0000000000-ffffea00069fffff] PMD -> [ffff8801d8600000-ffff8801ddbfffff] on node 0
<6>[    0.000000] Zone ranges:
<6>[    0.000000]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
<6>[    0.000000]   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
<6>[    0.000000]   Normal   [mem 0x0000000100000000-0x00000001deffffff]
<6>[    0.000000] Movable zone start for each node
<6>[    0.000000] Early memory node ranges
<6>[    0.000000]   node   0: [mem 0x0000000000001000-0x0000000000057fff]
<6>[    0.000000]   node   0: [mem 0x0000000000059000-0x0000000000085fff]
<6>[    0.000000]   node   0: [mem 0x0000000000100000-0x000000009c2bdfff]
<6>[    0.000000]   node   0: [mem 0x000000009cffe000-0x000000009cffefff]
<6>[    0.000000]   node   0: [mem 0x0000000100000000-0x00000001deffffff]
<6>[    0.000000] Initmem setup node 0 [mem 0x0000000000001000-0x00000001deffffff]
<7>[    0.000000] On node 0 totalpages: 1552963
<7>[    0.000000]   DMA zone: 56 pages used for memmap
<7>[    0.000000]   DMA zone: 23 pages reserved
<7>[    0.000000]   DMA zone: 3972 pages, LIFO batch:0
<7>[    0.000000]   DMA32 zone: 8690 pages used for memmap
<7>[    0.000000]   DMA32 zone: 635583 pages, LIFO batch:31
<7>[    0.000000]   Normal zone: 12488 pages used for memmap
<7>[    0.000000]   Normal zone: 913408 pages, LIFO batch:31
<6>[    0.000000] Reserving Intel graphics stolen memory at 0x9e000000-0x9fffffff
<6>[    0.000000] ACPI: PM-Timer IO Port: 0x1808
<7>[    0.000000] ACPI: Local APIC address 0xfee00000
<6>[    0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x00] enabled)
<6>[    0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x02] enabled)
<6>[    0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x01] enabled)
<6>[    0.000000] ACPI: LAPIC (acpi_id[0x04] lapic_id[0x03] enabled)
<6>[    0.000000] ACPI: LAPIC (acpi_id[0x05] lapic_id[0xff] disabled)
<6>[    0.000000] ACPI: LAPIC (acpi_id[0x06] lapic_id[0xff] disabled)
<6>[    0.000000] ACPI: LAPIC (acpi_id[0x07] lapic_id[0xff] disabled)
<6>[    0.000000] ACPI: LAPIC (acpi_id[0x08] lapic_id[0xff] disabled)
<6>[    0.000000] ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0])
<6>[    0.000000] IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-39
<6>[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
<6>[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
<7>[    0.000000] ACPI: IRQ0 used by override.
<7>[    0.000000] ACPI: IRQ9 used by override.
<6>[    0.000000] Using ACPI (MADT) for SMP configuration information
<6>[    0.000000] ACPI: HPET id: 0x8086a201 base: 0xfed00000
<6>[    0.000000] smpboot: Allowing 8 CPUs, 4 hotplug CPUs
<6>[    0.000000] e820: [mem 0xa0000000-0xdfffffff] available for PCI devices
<6>[    0.000000] setup_percpu: NR_CPUS:8 nr_cpumask_bits:8 nr_cpu_ids:8 nr_node_ids:1
<6>[    0.000000] PERCPU: Embedded 30 pages/cpu @ffff8801dec00000 s85144 r8192 d29544 u262144
<7>[    0.000000] pcpu-alloc: s85144 r8192 d29544 u262144 alloc=1*2097152
<7>[    0.000000] pcpu-alloc: [0] 0 1 2 3 4 5 6 7
<6>[    0.000000] Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 1531706
<5>[    0.000000] Kernel command line: BOOT_IMAGE=/android-5.1-rc1/kernel quiet root=/dev/ram0 androidboot.hardware=android_x86_64
<6>[    0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
<6>[    0.000000] Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes)
<6>[    0.000000] Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes)
<6>[    0.000000] xsave: enabled xstate_bv 0x7, cntxt size 0x340 using standard form
<6>[    0.000000] Memory: 5984572K/6211852K available (5629K kernel code, 779K rwdata, 3248K rodata, 920K init, 768K bss, 227280K reserved, 0K cma-reserved)
<6>[    0.000000] Preemptible hierarchical RCU implementation.
<6>[    0.000000]     CONFIG_RCU_FANOUT set to non-default value of 32
<6>[    0.000000]     RCU dyntick-idle grace-period acceleration is enabled.
<6>[    0.000000] NR_IRQS:4352 nr_irqs:760 16
<6>[    0.000000]     Offload RCU callbacks from all CPUs
<6>[    0.000000]     Offload RCU callbacks from CPUs: 0-7.
<6>[    0.000000] Console: colour dummy device 80x25
<6>[    0.000000] console [tty0] enabled
<7>[    0.000000] hpet clockevent registered
<6>[    0.000000] tsc: Fast TSC calibration using PIT
<6>[    0.000000] tsc: Detected 2194.906 MHz processor
<6>[    0.000002] Calibrating delay loop (skipped), value calculated using timer frequency.. 4389.81 BogoMIPS (lpj=2194906)
<6>[    0.000005] pid_max: default: 32768 minimum: 301
<6>[    0.000011] ACPI: Core revision 20150204
<4>[    0.020340] ACPI: All ACPI Tables successfully acquired
<6>[    0.021652] Security Framework initialized
<6>[    0.021687] Mount-cache hash table entries: 16384 (order: 5, 131072 bytes)
<6>[    0.021690] Mountpoint-cache hash table entries: 16384 (order: 5, 131072 bytes)
<6>[    0.021876] Initializing cgroup subsys freezer
<6>[    0.021879] Initializing cgroup subsys debug
<6>[    0.021901] CPU: Physical Processor ID: 0
<6>[    0.021902] CPU: Processor Core ID: 0
<4>[    0.021906] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
<4>[    0.021907] ENERGY_PERF_BIAS: View and update with x86_energy_perf_policy(8)
<6>[    0.022975] mce: CPU supports 7 MCE banks
<6>[    0.022987] CPU0: Thermal monitoring enabled (TM1)
<6>[    0.022995] process: using mwait in idle threads
<6>[    0.022998] Last level iTLB entries: 4KB 64, 2MB 8, 4MB 8
<6>[    0.022999] Last level dTLB entries: 4KB 64, 2MB 0, 4MB 0, 1GB 4
<6>[    0.023106] Freeing SMP alternatives memory: 24K (ffffffff81a58000 - ffffffff81a5e000)
<6>[    0.026254] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
<7>[    0.036269] TSC deadline timer enabled
<6>[    0.036272] smpboot: CPU0: Intel(R) Core(TM) i5-5200U CPU @ 2.20GHz (fam: 06, model: 3d, stepping: 04)
<6>[    0.036293] Performance Events: PEBS fmt2+, generic architected perfmon, full-width counters, Intel PMU driver.
<6>[    0.036298] ... version:                3
<6>[    0.036299] ... bit width:              48
<6>[    0.036300] ... generic registers:      4
<6>[    0.036301] ... value mask:             0000ffffffffffff
<6>[    0.036303] ... max period:             0000ffffffffffff
<6>[    0.036304] ... fixed-purpose events:   3
<6>[    0.036305] ... event mask:             000000070000000f
<6>[    0.044468] x86: Booting SMP configuration:
<6>[    0.044470] .... node  #0, CPUs:      #1
<6>[    0.412117] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
<4>[    0.414151]  #2 #3
<6>[    0.444981] x86: Booted up 1 node, 4 CPUs
<6>[    0.444984] smpboot: Total of 4 processors activated (17559.24 BogoMIPS)
<6>[    0.448573] PM: Registering ACPI NVS region [mem 0x9cdbe000-0x9cfbdfff] (2097152 bytes)
<6>[    0.448752] pinctrl core: initialized pinctrl subsystem
<6>[    0.448861] RTC time:  9:00:26, date: 01/22/16
<6>[    0.448971] NET: Registered protocol family 16
<6>[    0.460277] cpuidle: using governor ladder
<6>[    0.472331] cpuidle: using governor menu
<6>[    0.472411] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
<6>[    0.472413] ACPI: bus type PCI registered
<6>[    0.472414] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
<6>[    0.472488] PCI: Using configuration type 1 for base access
<6>[    0.484739] ACPI: Added _OSI(Module Device)
<6>[    0.484742] ACPI: Added _OSI(Processor Device)
<6>[    0.484743] ACPI: Added _OSI(3.0 _SCP Extensions)
<6>[    0.484745] ACPI: Added _OSI(Processor Aggregator Device)
<4>[    0.490127] ACPI: Executed 6 blocks of module-level executable AML code
<5>[    0.493988] [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored
<4>[    0.494892] ACPI: Dynamic OEM Table Load:
<4>[    0.494904] ACPI: SSDT 0xFFFF8801D7539400 0003D3 (v02 PmRef  Cpu0Cst  00003001 INTL 20130117)
<4>[    0.495755] ACPI: Dynamic OEM Table Load:
<4>[    0.495765] ACPI: SSDT 0xFFFF8801D8375000 0005AA (v02 PmRef  ApIst    00003000 INTL 20130117)
<4>[    0.496662] ACPI: Dynamic OEM Table Load:
<4>[    0.496671] ACPI: SSDT 0xFFFF8801D7A9A600 000119 (v02 PmRef  ApCst    00003000 INTL 20130117)
<6>[    0.567397] ACPI: Interpreter enabled
<4>[    0.567407] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S1_] (20150204/hwxface-580)
<4>[    0.567414] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20150204/hwxface-580)
<6>[    0.567429] ACPI: (supports S0 S3 S5)
<6>[    0.567431] ACPI: Using IOAPIC for interrupt routing
<6>[    0.567464] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
<6>[    0.578211] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-fe])
<6>[    0.578217] acpi PNP0A08:00: _OSC: OS supports [ASPM ClockPM Segments MSI]
<6>[    0.578318] acpi PNP0A08:00: _OSC: not requesting OS control; OS requires [ExtendedConfig ASPM ClockPM MSI]
<6>[    0.578718] PCI host bridge to bus 0000:00
<6>[    0.578721] pci_bus 0000:00: root bus resource [bus 00-fe]
<6>[    0.578727] pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7 window]
<6>[    0.578730] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
<6>[    0.578733] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
<6>[    0.578736] pci_bus 0000:00: root bus resource [mem 0x000c0000-0x000c3fff window]
<6>[    0.578737] pci_bus 0000:00: root bus resource [mem 0x000c4000-0x000c7fff window]
<6>[    0.578739] pci_bus 0000:00: root bus resource [mem 0x000c8000-0x000cbfff window]
<6>[    0.578741] pci_bus 0000:00: root bus resource [mem 0x000cc000-0x000cffff window]
<6>[    0.578742] pci_bus 0000:00: root bus resource [mem 0x000d0000-0x000d3fff window]
<6>[    0.578744] pci_bus 0000:00: root bus resource [mem 0x000d4000-0x000d7fff window]
<6>[    0.578746] pci_bus 0000:00: root bus resource [mem 0x000d8000-0x000dbfff window]
<6>[    0.578747] pci_bus 0000:00: root bus resource [mem 0x000dc000-0x000dffff window]
<6>[    0.578749] pci_bus 0000:00: root bus resource [mem 0xa0000000-0xfeafffff window]
<7>[    0.578757] pci 0000:00:00.0: [8086:1604] type 00 class 0x060000
<7>[    0.578980] pci 0000:00:02.0: [8086:1616] type 00 class 0x030000
<7>[    0.578992] pci 0000:00:02.0: reg 0x10: [mem 0xc1000000-0xc1ffffff 64bit]
<7>[    0.578999] pci 0000:00:02.0: reg 0x18: [mem 0xb0000000-0xbfffffff 64bit pref]
<7>[    0.579004] pci 0000:00:02.0: reg 0x20: [io  0x5000-0x503f]
<7>[    0.579219] pci 0000:00:03.0: [8086:160c] type 00 class 0x040300
<7>[    0.579227] pci 0000:00:03.0: reg 0x10: [mem 0xc3218000-0xc321bfff 64bit]
<7>[    0.579450] pci 0000:00:04.0: [8086:1603] type 00 class 0x118000
<7>[    0.579463] pci 0000:00:04.0: reg 0x10: [mem 0xc3210000-0xc3217fff 64bit]
<7>[    0.579704] pci 0000:00:14.0: [8086:9cb1] type 00 class 0x0c0330
<7>[    0.579721] pci 0000:00:14.0: reg 0x10: [mem 0xc3200000-0xc320ffff 64bit]
<7>[    0.579783] pci 0000:00:14.0: PME# supported from D3hot D3cold
<6>[    0.579956] pci 0000:00:14.0: System wakeup disabled by ACPI
<7>[    0.579996] pci 0000:00:16.0: [8086:9cba] type 00 class 0x078000
<7>[    0.580014] pci 0000:00:16.0: reg 0x10: [mem 0xc3222000-0xc322201f 64bit]
<7>[    0.580075] pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
<7>[    0.580281] pci 0000:00:1b.0: [8086:9ca0] type 00 class 0x040300
<7>[    0.580298] pci 0000:00:1b.0: reg 0x10: [mem 0xc321c000-0xc321ffff 64bit]
<7>[    0.580355] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
<7>[    0.580555] pci 0000:00:1c.0: [8086:9c90] type 01 class 0x060400
<7>[    0.580616] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
<6>[    0.580788] pci 0000:00:1c.0: System wakeup disabled by ACPI
<7>[    0.580826] pci 0000:00:1c.1: [8086:9c92] type 01 class 0x060400
<7>[    0.580887] pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
<6>[    0.581055] pci 0000:00:1c.1: System wakeup disabled by ACPI
<7>[    0.581092] pci 0000:00:1c.2: [8086:9c94] type 01 class 0x060400
<7>[    0.581153] pci 0000:00:1c.2: PME# supported from D0 D3hot D3cold
<6>[    0.581320] pci 0000:00:1c.2: System wakeup disabled by ACPI
<7>[    0.581356] pci 0000:00:1c.3: [8086:9c96] type 01 class 0x060400
<7>[    0.581417] pci 0000:00:1c.3: PME# supported from D0 D3hot D3cold
<6>[    0.581598] pci 0000:00:1c.3: System wakeup disabled by ACPI
<7>[    0.581643] pci 0000:00:1f.0: [8086:9cc3] type 00 class 0x060100
<7>[    0.581961] pci 0000:00:1f.2: [8086:9c83] type 00 class 0x010601
<7>[    0.581975] pci 0000:00:1f.2: reg 0x10: [io  0x5088-0x508f]
<7>[    0.581982] pci 0000:00:1f.2: reg 0x14: [io  0x5094-0x5097]
<7>[    0.581989] pci 0000:00:1f.2: reg 0x18: [io  0x5080-0x5087]
<7>[    0.581996] pci 0000:00:1f.2: reg 0x1c: [io  0x5090-0x5093]
<7>[    0.582003] pci 0000:00:1f.2: reg 0x20: [io  0x5060-0x507f]
<7>[    0.582010] pci 0000:00:1f.2: reg 0x24: [mem 0xc3220000-0xc32207ff]
<7>[    0.582047] pci 0000:00:1f.2: PME# supported from D3hot
<7>[    0.582244] pci 0000:00:1f.3: [8086:9ca2] type 00 class 0x0c0500
<7>[    0.582258] pci 0000:00:1f.3: reg 0x10: [mem 0xc3221000-0xc32210ff 64bit]
<7>[    0.582276] pci 0000:00:1f.3: reg 0x20: [io  0x5040-0x505f]
<6>[    0.582528] pci 0000:00:1c.0: PCI bridge to [bus 01]
<6>[    0.582583] pci 0000:00:1c.1: PCI bridge to [bus 02-07]
<7>[    0.582586] pci 0000:00:1c.1:   bridge window [io  0x4000-0x4fff]
<7>[    0.582589] pci 0000:00:1c.1:   bridge window [mem 0xc2000000-0xc2ffffff]
<7>[    0.582594] pci 0000:00:1c.1:   bridge window [mem 0xc0000000-0xc0ffffff 64bit pref]
<7>[    0.582683] pci 0000:08:00.0: [14e4:4365] type 00 class 0x028000
<7>[    0.582705] pci 0000:08:00.0: reg 0x10: [mem 0xc3100000-0xc3107fff 64bit]
<7>[    0.582833] pci 0000:08:00.0: supports D1 D2
<7>[    0.582834] pci 0000:08:00.0: PME# supported from D0 D3hot D3cold
<6>[    0.582861] pci 0000:08:00.0: System wakeup disabled by ACPI
<6>[    0.585773] pci 0000:00:1c.2: PCI bridge to [bus 08]
<7>[    0.585778] pci 0000:00:1c.2:   bridge window [mem 0xc3100000-0xc31fffff]
<7>[    0.585850] pci 0000:09:00.0: [10ec:8136] type 00 class 0x020000
<7>[    0.585866] pci 0000:09:00.0: reg 0x10: [io  0x3000-0x30ff]
<7>[    0.585893] pci 0000:09:00.0: reg 0x18: [mem 0xc3004000-0xc3004fff 64bit]
<7>[    0.585911] pci 0000:09:00.0: reg 0x20: [mem 0xc3000000-0xc3003fff 64bit]
<7>[    0.585985] pci 0000:09:00.0: supports D1 D2
<7>[    0.585987] pci 0000:09:00.0: PME# supported from D0 D1 D2 D3hot D3cold
<6>[    0.586013] pci 0000:09:00.0: System wakeup disabled by ACPI
<6>[    0.588765] pci 0000:00:1c.3: PCI bridge to [bus 09]
<7>[    0.588769] pci 0000:00:1c.3:   bridge window [io  0x3000-0x3fff]
<7>[    0.588772] pci 0000:00:1c.3:   bridge window [mem 0xc3000000-0xc30fffff]
<7>[    0.588817] pci_bus 0000:00: on NUMA node 0
<6>[    0.589748] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
<6>[    0.589799] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
<6>[    0.589842] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
<6>[    0.589884] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
<6>[    0.589926] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
<6>[    0.589968] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
<6>[    0.590010] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
<6>[    0.590052] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
<4>[    0.590319] ACPI: Enabled 6 GPEs in block 00 to 7F
<6>[    0.590541] ACPI : EC: GPE = 0x8, I/O: command/status = 0x66, data = 0x62
<6>[    0.590638] vgaarb: setting as boot device: PCI:0000:00:02.0
<6>[    0.590641] vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
<6>[    0.590645] vgaarb: loaded
<6>[    0.590647] vgaarb: bridge control possible 0000:00:02.0
<5>[    0.590728] SCSI subsystem initialized
<7>[    0.590777] libata version 3.00 loaded.
<6>[    0.590785] ACPI: bus type USB registered
<6>[    0.590816] usbcore: registered new interface driver usbfs
<6>[    0.590827] usbcore: registered new interface driver hub
<6>[    0.590845] usbcore: registered new device driver usb
<6>[    0.590870] media: Linux media interface: v0.10
<6>[    0.590884] Linux video capture interface: v2.00
<6>[    0.591029] PCI: Using ACPI for IRQ routing
<7>[    0.591031] PCI: pci_cache_line_size set to 64 bytes
<7>[    0.591086] e820: reserve RAM buffer [mem 0x00058000-0x0005ffff]
<7>[    0.591088] e820: reserve RAM buffer [mem 0x00086000-0x0008ffff]
<7>[    0.591089] e820: reserve RAM buffer [mem 0x9c2be000-0x9fffffff]
<7>[    0.591091] e820: reserve RAM buffer [mem 0x9cfff000-0x9fffffff]
<7>[    0.591092] e820: reserve RAM buffer [mem 0x1df000000-0x1dfffffff]
<6>[    0.591305] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
<6>[    0.591311] hpet0: 8 comparators, 64-bit 14.318180 MHz counter
<6>[    0.593339] Switched to clocksource hpet
<6>[    0.596405] pnp: PnP ACPI init
<6>[    0.596803] system 00:00: [io  0x0680-0x069f] has been reserved
<6>[    0.596806] system 00:00: [io  0xffff] has been reserved
<6>[    0.596808] system 00:00: [io  0xffff] has been reserved
<6>[    0.596810] system 00:00: [io  0xffff] has been reserved
<6>[    0.596812] system 00:00: [io  0x1800-0x18fe] could not be reserved
<6>[    0.596814] system 00:00: [io  0x164e-0x164f] has been reserved
<6>[    0.596816] system 00:00: [io  0x0454-0x0457] has been reserved
<6>[    0.596818] system 00:00: [io  0x0380-0x0387] has been reserved
<7>[    0.596821] system 00:00: Plug and Play ACPI device, IDs PNP0c02 (active)
<7>[    0.596868] pnp 00:01: Plug and Play ACPI device, IDs PNP0b00 (active)
<7>[    0.596910] pnp 00:02: Plug and Play ACPI device, IDs HPQ8001 PNP0303 (active)
<7>[    0.596944] pnp 00:03: Plug and Play ACPI device, IDs ETD0703 ETD0000 AUI0000 PNP0f13 (active)
<6>[    0.597175] system 00:04: [mem 0xfed1c000-0xfed1ffff] has been reserved
<6>[    0.597177] system 00:04: [mem 0xfed10000-0xfed17fff] has been reserved
<6>[    0.597179] system 00:04: [mem 0xfed18000-0xfed18fff] has been reserved
<6>[    0.597181] system 00:04: [mem 0xfed19000-0xfed19fff] has been reserved
<6>[    0.597183] system 00:04: [mem 0xe0000000-0xefffffff] has been reserved
<6>[    0.597185] system 00:04: [mem 0xfed20000-0xfed3ffff] has been reserved
<6>[    0.597186] system 00:04: [mem 0xfed90000-0xfed93fff] has been reserved
<6>[    0.597188] system 00:04: [mem 0xfed45000-0xfed8ffff] has been reserved
<6>[    0.597190] system 00:04: [mem 0xff000000-0xffffffff] could not be reserved
<6>[    0.597192] system 00:04: [mem 0xfee00000-0xfeefffff] could not be reserved
<6>[    0.597194] system 00:04: [mem 0xa0010000-0xa001ffff] has been reserved
<6>[    0.597196] system 00:04: [mem 0xa0000000-0xa000ffff] has been reserved
<7>[    0.597198] system 00:04: Plug and Play ACPI device, IDs PNP0c02 (active)
<6>[    0.597591] pnp: PnP ACPI: found 5 devices
<6>[    0.603183] pci 0000:00:1c.0: PCI bridge to [bus 01]
<6>[    0.603194] pci 0000:00:1c.1: PCI bridge to [bus 02-07]
<6>[    0.603197] pci 0000:00:1c.1:   bridge window [io  0x4000-0x4fff]
<6>[    0.603202] pci 0000:00:1c.1:   bridge window [mem 0xc2000000-0xc2ffffff]
<6>[    0.603205] pci 0000:00:1c.1:   bridge window [mem 0xc0000000-0xc0ffffff 64bit pref]
<6>[    0.603210] pci 0000:00:1c.2: PCI bridge to [bus 08]
<6>[    0.603215] pci 0000:00:1c.2:   bridge window [mem 0xc3100000-0xc31fffff]
<6>[    0.603221] pci 0000:00:1c.3: PCI bridge to [bus 09]
<6>[    0.603224] pci 0000:00:1c.3:   bridge window [io  0x3000-0x3fff]
<6>[    0.603228] pci 0000:00:1c.3:   bridge window [mem 0xc3000000-0xc30fffff]
<7>[    0.603236] pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7 window]
<7>[    0.603238] pci_bus 0000:00: resource 5 [io  0x0d00-0xffff window]
<7>[    0.603239] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
<7>[    0.603241] pci_bus 0000:00: resource 7 [mem 0x000c0000-0x000c3fff window]
<7>[    0.603243] pci_bus 0000:00: resource 8 [mem 0x000c4000-0x000c7fff window]
<7>[    0.603244] pci_bus 0000:00: resource 9 [mem 0x000c8000-0x000cbfff window]
<7>[    0.603246] pci_bus 0000:00: resource 10 [mem 0x000cc000-0x000cffff window]
<7>[    0.603248] pci_bus 0000:00: resource 11 [mem 0x000d0000-0x000d3fff window]
<7>[    0.603249] pci_bus 0000:00: resource 12 [mem 0x000d4000-0x000d7fff window]
<7>[    0.603251] pci_bus 0000:00: resource 13 [mem 0x000d8000-0x000dbfff window]
<7>[    0.603253] pci_bus 0000:00: resource 14 [mem 0x000dc000-0x000dffff window]
<7>[    0.603255] pci_bus 0000:00: resource 15 [mem 0xa0000000-0xfeafffff window]
<7>[    0.603257] pci_bus 0000:02: resource 0 [io  0x4000-0x4fff]
<7>[    0.603258] pci_bus 0000:02: resource 1 [mem 0xc2000000-0xc2ffffff]
<7>[    0.603260] pci_bus 0000:02: resource 2 [mem 0xc0000000-0xc0ffffff 64bit pref]
<7>[    0.603262] pci_bus 0000:08: resource 1 [mem 0xc3100000-0xc31fffff]
<7>[    0.603264] pci_bus 0000:09: resource 0 [io  0x3000-0x3fff]
<7>[    0.603265] pci_bus 0000:09: resource 1 [mem 0xc3000000-0xc30fffff]
<6>[    0.603313] NET: Registered protocol family 2
<6>[    0.603491] TCP established hash table entries: 65536 (order: 7, 524288 bytes)
<6>[    0.603571] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
<6>[    0.603694] TCP: Hash tables configured (established 65536 bind 65536)
<6>[    0.603711] TCP: reno registered
<6>[    0.603714] UDP hash table entries: 4096 (order: 5, 131072 bytes)
<6>[    0.603733] UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes)
<6>[    0.603794] NET: Registered protocol family 1
<7>[    0.603810] pci 0000:00:02.0: Video device with shadowed ROM
<7>[    0.605278] PCI: CLS 64 bytes, default 64
<6>[    0.605318] Trying to unpack rootfs image as initramfs...
<6>[    0.629392] Freeing initrd memory: 1336K (ffff880037d54000 - ffff880037ea2000)
<6>[    0.629401] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
<6>[    0.629403] software IO TLB [mem 0x97e0e000-0x9be0e000] (64MB) mapped at [ffff880097e0e000-ffff88009be0dfff]
<6>[    0.629468] Simple Boot Flag at 0x44 set to 0x1
<6>[    0.629628] RAPL PMU detected, hw unit 2^-14 Joules, API unit is 2^-32 Joules, 4 fixed counters 655360 ms ovfl timer
<6>[    0.629683] microcode: CPU0 sig=0x306d4, pf=0x40, revision=0x21
<6>[    0.629692] microcode: CPU1 sig=0x306d4, pf=0x40, revision=0x21
<6>[    0.629699] microcode: CPU2 sig=0x306d4, pf=0x40, revision=0x21
<6>[    0.629704] microcode: CPU3 sig=0x306d4, pf=0x40, revision=0x21
<6>[    0.629724] microcode: Microcode Update Driver: v2.00
<tigran@aivazian.fsnet.co.uk>, Peter Oruba
<6>[    0.630174] sha1_ssse3: Using AVX2 optimized SHA-1 implementation
<6>[    0.630205] sha256_ssse3: Using AVX2 optimized SHA-256 implementation
<6>[    0.630261] sha512_ssse3: Using AVX2 optimized SHA-512 implementation
<6>[    0.630865] futex hash table entries: 2048 (order: 5, 131072 bytes)
<5>[    0.631206] VFS: Disk quotas dquot_6.5.2
<6>[    0.631234] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
<6>[    0.631356] squashfs: version 4.0 (2009/01/31) Phillip Lougher
<6>[    0.631409] fuse init (API version 7.23)
<6>[    0.631888] io scheduler noop registered
<6>[    0.631892] io scheduler deadline registered
<6>[    0.631910] io scheduler cfq registered (default)
<6>[    0.632524] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
<6>[    0.632548] efifb: probing for efifb
<6>[    0.632563] efifb: framebuffer at 0xb0000000, mapped to 0xffffc90000080000, using 4160k, total 4160k
<6>[    0.632564] efifb: mode is 1366x768x32, linelength=5504, pages=1
<6>[    0.632565] efifb: scrolling: redraw
<6>[    0.632567] efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
<6>[    0.635452] Console: switching to colour frame buffer device 170x48
<6>[    0.638210] fb0: EFI VGA frame buffer device
<7>[    0.638222] intel_idle: MWAIT substates: 0x11142120
<7>[    0.638224] intel_idle: v0.4 model 0x3D
<7>[    0.638225] intel_idle: lapic_timer_reliable_states 0xffffffff
<7>[    0.638718] power_supply ADP1: uevent
<7>[    0.638720] power_supply ADP1: POWER_SUPPLY_NAME=ADP1
<7>[    0.638851] power_supply ADP1: prop ONLINE=1
<7>[    0.638858] power_supply ADP1: power_supply_changed
<6>[    0.638863] ACPI: AC Adapter [ADP1] (on-line)
<7>[    0.638867] power_supply ADP1: power_supply_changed_work
<6>[    0.638966] input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input0
<7>[    0.638996] power_supply ADP1: power_supply_update_gen_leds 1
<7>[    0.639001] power_supply ADP1: uevent
<7>[    0.639003] power_supply ADP1: POWER_SUPPLY_NAME=ADP1
<7>[    0.639126] power_supply ADP1: prop ONLINE=1
<6>[    0.639427] ACPI: Lid Switch [LID0]
<6>[    0.639468] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input1
<6>[    0.639471] ACPI: Power Button [PWRB]
<6>[    0.639514] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input2
<6>[    0.639517] ACPI: Power Button [PWRF]
<4>[    0.640591] [Firmware Bug]: Invalid critical threshold (0)
<6>[    0.642272] thermal LNXTHERM:00: registered as thermal_zone0
<6>[    0.642274] ACPI: Thermal Zone [TZ01] (58 C)
<7>[    0.695545] power_supply BAT0: uevent
<7>[    0.695547] power_supply BAT0: POWER_SUPPLY_NAME=BAT0
<7>[    0.699014] power_supply BAT0: prop STATUS=Full
<7>[    0.699017] power_supply BAT0: prop PRESENT=1
<7>[    0.699020] power_supply BAT0: prop TECHNOLOGY=Li-ion
<7>[    0.699023] power_supply BAT0: prop CYCLE_COUNT=0
<7>[    0.699025] power_supply BAT0: prop VOLTAGE_MIN_DESIGN=14800000
<7>[    0.699027] power_supply BAT0: prop VOLTAGE_NOW=16924000
<7>[    0.699030] power_supply BAT0: prop CURRENT_NOW=0
<7>[    0.699032] power_supply BAT0: prop CHARGE_FULL_DESIGN=2560000
<7>[    0.699034] power_supply BAT0: prop CHARGE_FULL=2560000
<7>[    0.699036] power_supply BAT0: prop CHARGE_NOW=2560000
<7>[    0.699038] power_supply BAT0: prop CAPACITY=100
<7>[    0.699040] power_supply BAT0: prop CAPACITY_LEVEL=Full
<7>[    0.699042] power_supply BAT0: prop MODEL_NAME=Primary
<7>[    0.699045] power_supply BAT0: prop MANUFACTURER=Hewlett-Packard
<7>[    0.699047] power_supply BAT0: prop SERIAL_NUMBER=
<7>[    0.699054] power_supply BAT0: power_supply_changed
<6>[    0.699059] ACPI: Battery Slot [BAT0] (battery present)
<7>[    0.699094] power_supply BAT0: power_supply_changed_work
<7>[    0.699097] power_supply BAT0: power_supply_update_bat_leds 4
<7>[    0.699102] power_supply BAT0: uevent
<7>[    0.699105] power_supply BAT0: POWER_SUPPLY_NAME=BAT0
<7>[    0.699108] power_supply BAT0: prop STATUS=Full
<7>[    0.699111] power_supply BAT0: prop PRESENT=1
<7>[    0.699115] power_supply BAT0: prop TECHNOLOGY=Li-ion
<7>[    0.699118] power_supply BAT0: prop CYCLE_COUNT=0
<7>[    0.699121] power_supply BAT0: prop VOLTAGE_MIN_DESIGN=14800000
<7>[    0.699124] power_supply BAT0: prop VOLTAGE_NOW=16924000
<7>[    0.699127] power_supply BAT0: prop CURRENT_NOW=0
<7>[    0.699130] power_supply BAT0: prop CHARGE_FULL_DESIGN=2560000
<7>[    0.699134] power_supply BAT0: prop CHARGE_FULL=2560000
<7>[    0.699137] power_supply BAT0: prop CHARGE_NOW=2560000
<7>[    0.699140] power_supply BAT0: prop CAPACITY=100
<7>[    0.699144] power_supply BAT0: prop CAPACITY_LEVEL=Full
<7>[    0.699147] power_supply BAT0: prop MODEL_NAME=Primary
<7>[    0.699150] power_supply BAT0: prop MANUFACTURER=Hewlett-Packard
<7>[    0.699154] power_supply BAT0: prop SERIAL_NUMBER=
<6>[    0.700158] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
<6>[    0.700555] Linux agpgart interface v0.103
<6>[    0.701844] brd: module loaded
<6>[    0.702630] loop: module loaded
<6>[    0.702650] hv_vmbus: registering driver hv_storvsc
<7>[    0.702715] ahci 0000:00:1f.2: version 3.0
<6>[    0.713535] ahci 0000:00:1f.2: AHCI 0001.0300 32 slots 4 ports 6 Gbps 0x3 impl SATA mode
<6>[    0.713539] ahci 0000:00:1f.2: flags: 64bit ncq pm led clo only pio slum part deso sadm sds apst
<6>[    0.714088] scsi host0: ahci
<6>[    0.714190] scsi host1: ahci
<6>[    0.714285] scsi host2: ahci
<6>[    0.714376] scsi host3: ahci
<6>[    0.714415] ata1: SATA max UDMA/133 abar m2048@0xc3220000 port 0xc3220100 irq 40
<6>[    0.714418] ata2: SATA max UDMA/133 abar m2048@0xc3220000 port 0xc3220180 irq 40
<6>[    0.714419] ata3: DUMMY
<6>[    0.714420] ata4: DUMMY
<6>[    0.714833] scsi host4: pata_legacy
<6>[    0.714874] ata5: PATA max PIO4 cmd 0x1f0 ctl 0x3f6 irq 14
<6>[    1.018836] ata2: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
<6>[    1.018853] ata1: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
<6>[    1.020443] ata2.00: ATAPI: hp      DVDRW  UJ8G2A, SGM1, max UDMA/133
<6>[    1.021698] ata2.00: configured for UDMA/133
<6>[    1.060470] ata1.00: ATA-9: HGST HTS541075A9E680, JA2OA710, max UDMA/133
<6>[    1.060474] ata1.00: 1465149168 sectors, multi 16: LBA48 NCQ (depth 31/32), AA
<6>[    1.062337] ata1.00: configured for UDMA/133
<5>[    1.062557] scsi 0:0:0:0: Direct-Access     ATA      HGST HTS541075A9 A710 PQ: 0 ANSI: 5
<5>[    1.062888] sd 0:0:0:0: [sda] 1465149168 512-byte logical blocks: (750 GB/698 GiB)
<5>[    1.062892] sd 0:0:0:0: Attached scsi generic sg0 type 0
<5>[    1.062893] sd 0:0:0:0: [sda] 4096-byte physical blocks
<5>[    1.062928] sd 0:0:0:0: [sda] Write Protect is off
<7>[    1.062931] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
<5>[    1.062940] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
<5>[    1.064494] scsi 1:0:0:0: CD-ROM            hp       DVDRW  UJ8G2A    SGM1 PQ: 0 ANSI: 5
<6>[    1.089386] sr 1:0:0:0: [sr0] scsi3-mmc drive: 24x/24x writer dvd-ram cd/rw xa/form2 cdda tray
<6>[    1.089389] cdrom: Uniform CD-ROM driver Revision: 3.20
<7>[    1.089512] sr 1:0:0:0: Attached scsi CD-ROM sr0
<5>[    1.089557] sr 1:0:0:0: Attached scsi generic sg1 type 5
<6>[    1.113774]  sda: sda1 sda2 sda3 sda4 sda5
<5>[    1.114051] sd 0:0:0:0: [sda] Attached SCSI disk
<6>[    1.114557] scsi host5: pata_legacy
<6>[    1.114609] ata6: PATA max PIO4 cmd 0x170 ctl 0x376 irq 15
<6>[    1.265262] tun: Universal TUN/TAP device driver, 1.6
<6>[    1.265265] tun: (C) 1999-2004 Max Krasnyansky
<maxk@qualcomm.com>
<6>[    1.265288] PPP generic driver version 2.4.2
<6>[    1.265329] PPP BSD Compression module registered
<6>[    1.265334] PPP Deflate Compression module registered
<6>[    1.265342] PPP MPPE Compression module registered
<6>[    1.265348] NET: Registered protocol family 24
<6>[    1.265537] xhci_hcd 0000:00:14.0: xHCI Host Controller
<6>[    1.265562] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 1
<6>[    1.265639] xhci_hcd 0000:00:14.0: hcc params 0x200077c1 hci version 0x100 quirks 0x00009810
<7>[    1.265645] xhci_hcd 0000:00:14.0: cache line size of 64 is not supported
<6>[    1.265748] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
<6>[    1.265752] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
<6>[    1.265754] usb usb1: Product: xHCI Host Controller
<6>[    1.265755] usb usb1: Manufacturer: Linux 4.0.9-android-x86_64+ xhci-hcd
<6>[    1.265757] usb usb1: SerialNumber: 0000:00:14.0
<6>[    1.265857] hub 1-0:1.0: USB hub found
<6>[    1.265879] hub 1-0:1.0: 11 ports detected
<6>[    1.268370] xhci_hcd 0000:00:14.0: xHCI Host Controller
<6>[    1.268395] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 2
<6>[    1.268427] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003
<6>[    1.268429] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
<6>[    1.268430] usb usb2: Product: xHCI Host Controller
<6>[    1.268432] usb usb2: Manufacturer: Linux 4.0.9-android-x86_64+ xhci-hcd
<6>[    1.268434] usb usb2: SerialNumber: 0000:00:14.0
<6>[    1.268511] hub 2-0:1.0: USB hub found
<6>[    1.268521] hub 2-0:1.0: 4 ports detected
<6>[    1.269798] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
<6>[    1.269804] ehci-pci: EHCI PCI platform driver
<6>[    1.269868] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
<6>[    1.269874] ohci-pci: OHCI PCI platform driver
<6>[    1.269891] uhci_hcd: USB Universal Host Controller Interface driver
<6>[    1.269926] fusbh200_hcd: FUSBH200 Host Controller (EHCI) Driver
<4>[    1.269927] Warning! fusbh200_hcd should always be loaded before uhci_hcd and ohci_hcd, not after
<6>[    1.269956] usbcore: registered new interface driver usb-storage
<6>[    1.269968] usbcore: registered new interface driver ums-alauda
<6>[    1.269979] usbcore: registered new interface driver ums-cypress
<6>[    1.269990] usbcore: registered new interface driver ums-datafab
<6>[    1.270001] usbcore: registered new interface driver ums_eneub6250
<6>[    1.270011] usbcore: registered new interface driver ums-freecom
<6>[    1.270027] usbcore: registered new interface driver ums-isd200
<6>[    1.270039] usbcore: registered new interface driver ums-jumpshot
<6>[    1.270052] usbcore: registered new interface driver ums-onetouch
<6>[    1.270064] usbcore: registered new interface driver ums-realtek
<6>[    1.270074] usbcore: registered new interface driver ums-sddr09
<6>[    1.270087] usbcore: registered new interface driver ums-sddr55
<6>[    1.270100] usbcore: registered new interface driver ums-usbat
<6>[    1.270136] i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f13:PS2M] at 0x60,0x64 irq 1,12
<6>[    1.278556] serio: i8042 KBD port at 0x60,0x64 irq 1
<6>[    1.278580] serio: i8042 AUX port at 0x60,0x64 irq 12
<6>[    1.278645] hv_vmbus: registering driver hyperv_keyboard
<6>[    1.278686] mousedev: PS/2 mouse device common for all mice
<6>[    1.278807] rtc_cmos 00:01: RTC can wake from S4
<7>[    1.278916] rtc rtc0: rtc_cmos: dev (254:0)
<6>[    1.278920] rtc_cmos 00:01: rtc core: registered rtc_cmos as rtc0
<6>[    1.278949] rtc_cmos 00:01: alarms up to one month, 242 bytes nvram, hpet irqs
<6>[    1.278959] IR Sharp protocol handler initialized
<6>[    1.278962] IR XMP protocol handler initialized
<6>[    1.278987] device-mapper: uevent: version 1.0.3
<6>[    1.279015] device-mapper: ioctl: 4.30.0-ioctl (2014-12-22) initialised: dm-d...@redhat.com
<6>[    1.279059] Intel P-state driver initializing.
<4>[    1.279200] Driver 'mmcblk' needs updating - please use bus_type methods
<6>[    1.279226] sdhci: Secure Digital Host Controller Interface driver
<6>[    1.279230] sdhci: Copyright(c) Pierre Ossman
<6>[    1.279338] sdhci-pltfm: SDHCI platform and OF driver helper
<6>[    1.280503] hidraw: raw HID events driver (C) Jiri Kosina
<6>[    1.280651] usbcore: registered new interface driver usbhid
<6>[    1.280655] usbhid: USB HID core driver
<6>[    1.280734] ashmem: initialized
<6>[    1.280971] oprofile: using NMI interrupt.
<6>[    1.281011] GACT probability NOT on
<6>[    1.281020] Mirror/redirect action on
<6>[    1.281042] u32 classifier
<6>[    1.281045]     Actions configured
<6>[    1.281054] Netfilter messages via NETLINK v0.30.
<6>[    1.281085] nf_conntrack version 0.5.0 (65536 buckets, 262144 max)
<6>[    1.281495] ctnetlink v0.93: registering with nfnetlink.
<6>[    1.281898] xt_time: kernel timezone is -0000
<6>[    1.282211] ip_tables: (C) 2000-2006 Netfilter Core Team
<6>[    1.282325] arp_tables: (C) 2002 David S. Miller
<6>[    1.282360] TCP: cubic registered
<6>[    1.282370] Initializing XFRM netlink socket
<6>[    1.282501] NET: Registered protocol family 10
<6>[    1.282973] mip6: Mobile IPv6
<6>[    1.282987] ip6_tables: (C) 2000-2006 Netfilter Core Team
<6>[    1.283130] sit: IPv6 over IPv4 tunneling driver
<6>[    1.283784] NET: Registered protocol family 17
<6>[    1.283798] NET: Registered protocol family 15
<6>[    1.283810] NET: Registered protocol family 35
<6>[    1.284617] registered taskstats version 1
<6>[    1.285826]   Magic number: 0:536:20
<6>[    1.285990] rtc_cmos 00:01: setting system clock to 2016-01-22 09:00:27 UTC (1453453227)
<6>[    1.286692] Freeing unused kernel memory: 920K (ffffffff81972000 - ffffffff81a58000)
<5>[    1.304481] random: env urandom read with 48 bits of entropy available
<3>[    1.314000] VFS: could not find a valid V7 on sda.
<3>[    1.344221] VFS: could not find a valid V7 on sda1.
<3>[    1.484138] VFS: could not find a valid V7 on sda3.
<3>[    1.512320] VFS: could not find a valid V7 on sda4.
<6>[    1.621444] usb 1-2: new full-speed USB device number 2 using xhci_hcd
<6>[    1.631386] tsc: Refined TSC clocksource calibration: 2194.917 MHz
<6>[    1.787683] usb 1-2: New USB device found, idVendor=046d, idProduct=c52f
<6>[    1.787686] usb 1-2: New USB device strings: Mfr=1, Product=2, SerialNumber=0
<6>[    1.787688] usb 1-2: Product: USB Receiver
<6>[    1.787690] usb 1-2: Manufacturer: Logitech
<6>[    1.789396] input: Logitech USB Receiver as /devices/pci0000:00/0000:00:14.0/usb1/1-2/1-2:1.0/0003:046D:C52F.0001/input/input3
<6>[    1.789460] hid-generic 0003:046D:C52F.0001: input,hidraw0: USB HID v1.11 Mouse [Logitech USB Receiver] on usb-0000:00:14.0-2/input0
<6>[    1.791164] input: Logitech USB Receiver as /devices/pci0000:00/0000:00:14.0/usb1/1-2/1-2:1.1/0003:046D:C52F.0002/input/input4
<6>[    1.841709] hid-generic 0003:046D:C52F.0002: input,hiddev0,hidraw1: USB HID v1.11 Device [Logitech USB Receiver] on usb-0000:00:14.0-2/input1
<5>[    1.987031] random: nonblocking pool is initialized
<6>[    1.994790] usb 1-3: new high-speed USB device number 3 using xhci_hcd
<6>[    2.177019] usb 1-3: New USB device found, idVendor=04f2, idProduct=b50d
<6>[    2.177022] usb 1-3: New USB device strings: Mfr=3, Product=1, SerialNumber=2
<6>[    2.177024] usb 1-3: Product: HP Truevision HD
<6>[    2.177025] usb 1-3: Manufacturer: Generic
<6>[    2.177026] usb 1-3: SerialNumber: 200901010001
<6>[    2.331149] usb 1-7: new full-speed USB device number 4 using xhci_hcd
<6>[    2.497170] usb 1-7: New USB device found, idVendor=0a5c, idProduct=216d
<6>[    2.497174] usb 1-7: New USB device strings: Mfr=1, Product=2, SerialNumber=3
<6>[    2.497176] usb 1-7: Product: BCM43142A0
<6>[    2.497177] usb 1-7: Manufacturer: Broadcom Corp
<6>[    2.497179] usb 1-7: SerialNumber: D85DE2C7BB0E
<6>[    2.632594] Switched to clocksource tsc
<3>[    2.731238] EXT3-fs (sda5): error: couldn't mount because of unsupported optional features (40)
<3>[    2.731403] EXT2-fs (sda5): error: couldn't mount because of unsupported optional features (40)
<6>[    2.753223] EXT4-fs (sda5): mounted filesystem with ordered data mode. Opts: (null)
<6>[    2.835860] EXT4-fs (sda5): re-mounted. Opts: (null)
<6>[    3.192202] Initializing HPQ6001 module
<6>[    3.192265] input: HP Wireless hotkeys as /devices/virtual/input/input5
<6>[    3.242191] hp_accel: laptop model unknown, using default axes configuration
<6>[
   5.389333] lis3lv02d: 8 bits 3DC sensor found
<6>[    5.395229] input: ST LIS3LV02DL Accelerometer as /devices/platform/lis3lv02d/input/input6
<7>[    5.443897] power_supply BAT0: power_supply_changed
<7>[    5.443902] power_supply BAT0: power_supply_changed_work
<7>[    5.443905] power_supply BAT0: power_supply_update_bat_leds 4
<7>[    5.443911] power_supply BAT0: uevent
<7>[    5.443912] power_supply BAT0: POWER_SUPPLY_NAME=BAT0
<7>[    5.443916] power_supply BAT0: prop STATUS=Full
<7>[    5.443918] power_supply BAT0: prop PRESENT=1
<7>[    5.443921] power_supply BAT0: prop TECHNOLOGY=Li-ion
<7>[    5.443923] power_supply BAT0: prop CYCLE_COUNT=0
<7>[    5.443925] power_supply BAT0: prop VOLTAGE_MIN_DESIGN=14800000
<7>[    5.443927] power_supply BAT0: prop VOLTAGE_NOW=16925000
<7>[    5.443929] power_supply BAT0: prop CURRENT_NOW=0
<7>[    5.443931] power_supply BAT0: prop CHARGE_FULL_DESIGN=2560000
<7>[    5.443933] power_supply BAT0: prop CHARGE_FULL=2560000
<7>[    5.443935] power_supply BAT0: prop CHARGE_NOW=2560000
<7>[    5.443937] power_supply BAT0: prop CAPACITY=100
<7>[    5.443939] power_supply BAT0: prop CAPACITY_LEVEL=Full
<7>[    5.443941] power_supply BAT0: prop MODEL_NAME=Primary
<7>[    5.443943] power_supply BAT0: prop MANUFACTURER=Hewlett-Packard
<7>[    5.443945] power_supply BAT0: prop SERIAL_NUMBER=
<7>[    5.444186] power_supply BAT0: power_supply_changed
<7>[    5.444188] power_supply BAT0: power_supply_changed_work
<7>[    5.444191] power_supply BAT0: power_supply_update_bat_leds 4
<7>[    5.444195] power_supply BAT0: uevent
<7>[    5.444201] power_supply BAT0: POWER_SUPPLY_NAME=BAT0
<7>[    5.444204] power_supply BAT0: prop STATUS=Full
<7>[    5.444206] power_supply BAT0: prop PRESENT=1
<7>[    5.444208] power_supply BAT0: prop TECHNOLOGY=Li-ion
<7>[    5.444210] power_supply BAT0: prop CYCLE_COUNT=0
<7>[    5.444212] power_supply BAT0: prop VOLTAGE_MIN_DESIGN=14800000
<7>[    5.444214] power_supply BAT0: prop VOLTAGE_NOW=16925000
<7>[    5.444216] power_supply BAT0: prop CURRENT_NOW=0
<7>[    5.444218] power_supply BAT0: prop CHARGE_FULL_DESIGN=2560000
<7>[    5.444220] power_supply BAT0: prop CHARGE_FULL=2560000
<7>[    5.444222] power_supply BAT0: prop CHARGE_NOW=2560000
<7>[    5.444224] power_supply BAT0: prop CAPACITY=100
<7>[    5.444226] power_supply BAT0: prop CAPACITY_LEVEL=Full
<7>[    5.444228] power_supply BAT0: prop MODEL_NAME=Primary
<7>[    5.444230] power_supply BAT0: prop MANUFACTURER=Hewlett-Packard
<7>[    5.444232] power_supply BAT0: prop SERIAL_NUMBER=
<7>[    5.444391] power_supply BAT0: uevent
<7>[    5.444394] power_supply BAT0: POWER_SUPPLY_NAME=BAT0
<7>[    5.444398] power_supply BAT0: prop STATUS=Full
<7>[    5.444400] power_supply BAT0: prop PRESENT=1
<7>[    5.444402] power_supply BAT0: prop TECHNOLOGY=Li-ion
<7>[    5.444405] power_supply BAT0: prop CYCLE_COUNT=0
<7>[    5.444407] power_supply BAT0: prop VOLTAGE_MIN_DESIGN=14800000
<7>[    5.444409] power_supply BAT0: prop VOLTAGE_NOW=16925000
<7>[    5.444411] power_supply BAT0: prop CURRENT_NOW=0
<7>[    5.444413] power_supply BAT0: prop CHARGE_FULL_DESIGN=2560000
<7>[    5.444415] power_supply BAT0: prop CHARGE_FULL=2560000
<7>[    5.444417] power_supply BAT0: prop CHARGE_NOW=2560000
<7>[    5.444419] power_supply BAT0: prop CAPACITY=100
<7>[    5.444421] power_supply BAT0: prop CAPACITY_LEVEL=Full
<7>[    5.444423] power_supply BAT0: prop MODEL_NAME=Primary
<7>[    5.444425] power_supply BAT0: prop MANUFACTURER=Hewlett-Packard
<7>[    5.444427] power_supply BAT0: prop SERIAL_NUMBER=
<7>[    5.444586] power_supply BAT0: uevent
<7>[    5.444589] power_supply BAT0: POWER_SUPPLY_NAME=BAT0
<7>[    5.444591] power_supply BAT0: prop STATUS=Full
<7>[    5.444593] power_supply BAT0: prop PRESENT=1
<7>[    5.444595] power_supply BAT0: prop TECHNOLOGY=Li-ion
<7>[    5.444597] power_supply BAT0: prop CYCLE_COUNT=0
<7>[    5.444599] power_supply BAT0: prop VOLTAGE_MIN_DESIGN=14800000
<7>[    5.444601] power_supply BAT0: prop VOLTAGE_NOW=16925000
<7>[    5.444603] power_supply BAT0: prop CURRENT_NOW=0
<7>[    5.444605] power_supply BAT0: prop CHARGE_FULL_DESIGN=2560000
<7>[    5.444607] power_supply BAT0: prop CHARGE_FULL=2560000
<7>[    5.444609] power_supply BAT0: prop CHARGE_NOW=2560000
<7>[    5.444611] power_supply BAT0: prop CAPACITY=100
<7>[    5.444613] power_supply BAT0: prop CAPACITY_LEVEL=Full
<7>[    5.444615] power_supply BAT0: prop MODEL_NAME=Primary
<7>[    5.444617] power_supply BAT0: prop MANUFACTURER=Hewlett-Packard
<7>[    5.444619] power_supply BAT0: prop SERIAL_NUMBER=
<6>[    5.711284] wmi: Mapper loaded
<6>[    5.761175] [drm] Initialized drm 1.1.0 20060810
<6>[    5.790289] [drm] Memory usable by graphics device = 4096M
<7>[    5.790293] checking generic (b0000000 410000) vs hw (b0000000 10000000)
<6>[    5.790295] fb: switching to inteldrmfb from EFI VGA
<6>[    5.790318] Console: switching to colour dummy device 80x25
<6>[    5.790376] [drm] Replacing VGA console driver
<6>[    5.796660] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
<6>[    5.796662] [drm] Driver supports precise vblank timestamp query.
<6>[    5.796810] vgaarb: device changed decodes: PCI:0000:00:02.0,olddecodes=io+mem,decodes=io+mem:owns=io+mem
<6>[    5.839869] fbcon: inteldrmfb (fb0) is primary device
<6>[    5.840629] ACPI: Video Device [GFX0] (multi-head: yes  rom: no  post: no)
<6>[    5.840761] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:00/input/input7
<6>[    5.840834] [drm] Initialized i915 1.6.0 20150130 for 0000:00:02.0 on minor 0
<6>[    6.995033] Console: switching to colour frame buffer device 170x48
<6>[    7.001727] i915 0000:00:02.0: fb0: inteldrmfb frame buffer device
<6>[    7.001731] i915 0000:00:02.0: registered panic notifier
<6>[    7.078758] snd_hda_intel 0000:00:03.0: bound 0000:00:02.0 (ops i915_audio_component_bind_ops [i915])
<6>[    7.110064] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
<6>[    7.127857] input: HDA Intel HDMI HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:03.0/sound/card0/input8
<6>[    7.127921] input: HDA Intel HDMI HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:03.0/sound/card0/input9
<6>[    7.127979] input: HDA Intel HDMI HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:03.0/sound/card0/input10
<6>[    7.163166] sound hdaudioC1D0: autoconfig for ALC3241: line_outs=1 (0x14/0x0/0x0/0x0/0x0) type:speaker
<6>[    7.163169] sound hdaudioC1D0:    speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
<6>[    7.163171] sound hdaudioC1D0:    hp_outs=1 (0x15/0x0/0x0/0x0/0x0)
<6>[    7.163173] sound hdaudioC1D0:    mono: mono_out=0x0
<6>[    7.163174] sound hdaudioC1D0:    inputs:
<6>[    7.163176] sound hdaudioC1D0:      Mic=0x1a
<6>[    7.163178] sound hdaudioC1D0:      Internal Mic=0x12
<6>[    7.167219] input: HDA Intel PCH Mic as /devices/pci0000:00/0000:00:1b.0/sound/card1/input11
<6>[    7.167292] input: HDA Intel PCH Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card1/input12
<0>[    7.182279] ACPI Warning: SystemIO range 0x0000000000005040-0x000000000000505F conflicts with OpRegion 0x0000000000005040-0x000000000000504F (\_SB_.PCI0.SBUS.SMBI) (20150204/utaddress-254)
<6>[    7.182288] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
<6>[    7.194846] bcma: bus0: Found chip with id 43142, rev 0x01 and package 0x08
<6>[    7.194869] bcma: bus0: Core 0 found: ChipCommon (manuf 0x4BF, id 0x800, rev 0x28, class 0x0)
<6>[    7.194887] bcma: bus0: Core 1 found: IEEE 802.11 (manuf 0x4BF, id 0x812, rev 0x21, class 0x0)
<6>[    7.194921] bcma: bus0: Core 2 found: PCIe (manuf 0x4BF, id 0x820, rev 0x16, class 0x0)
<6>[    7.194972] bcma: bus0: Core 3 found: UNKNOWN (manuf 0x43B, id 0x368, rev 0x00, class 0x0)
<6>[    7.209918] bcma: bus0: Bus registered
<6>[    7.251567] r8169 Gigabit Ethernet driver 2.3LK-NAPI loaded
<4>[    7.251576] r8169 0000:09:00.0: can't disable ASPM; OS doesn't have ASPM control
<6>[    7.254089] r8169 0000:09:00.0 eth0: RTL8107e at 0xffffc90000078000, d0:bf:9c:9a:6b:0e, XID 14100880 IRQ 45
<6>[    7.304791] input: PC Speaker as /devices/platform/pcspkr/input/input13
<6>[    7.394263] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input14
<6>[    7.397296] uvcvideo: Found UVC 1.00 device HP Truevision HD (04f2:b50d)
<6>[    7.398496] input: HP Truevision HD as /devices/pci0000:00/0000:00:14.0/usb1/1-3/1-3:1.0/input/input16
<6>[    7.398555] usbcore: registered new interface driver uvcvideo
<6>[    7.398557] USB Video Class driver (1.1.1)
<6>[    7.430173] Bluetooth: Core ver 2.20
<6>[    7.430190] NET: Registered protocol family 31
<6>[    7.430191] Bluetooth: HCI device and connection manager initialized
<6>[    7.430194] Bluetooth: HCI socket layer initialized
<6>[    7.430196] Bluetooth: L2CAP socket layer initialized
<6>[    7.430202] Bluetooth: SCO socket layer initialized
<6>[    7.450751] usbcore: registered new interface driver btusb
<4>[    7.471013] bluetooth hci0: Direct firmware load for brcm/BCM43142A0-0a5c-216d.hcd failed with error -2
<6>[    7.471019] Bluetooth: hci0: BCM: patch brcm/BCM43142A0-0a5c-216d.hcd not found
<6>[    7.504469] input: HP WMI hotkeys as /devices/virtual/input/input18
<6>[    7.552403] EXT4-fs (sda5): re-mounted. Opts: (null)
<7>[    7.673630] power_supply BAT0: uevent
<7>[    7.673634] power_supply BAT0: POWER_SUPPLY_NAME=BAT0
<7>[    7.677097] power_supply BAT0: prop STATUS=Full
<7>[    7.677101] power_supply BAT0: prop PRESENT=1
<7>[    7.677104] power_supply BAT0: prop TECHNOLOGY=Li-ion
<7>[    7.677106] power_supply BAT0: prop CYCLE_COUNT=0
<7>[    7.677108] power_supply BAT0: prop VOLTAGE_MIN_DESIGN=14800000
<7>[    7.677110] power_supply BAT0: prop VOLTAGE_NOW=16923000
<7>[    7.677111] power_supply BAT0: prop CURRENT_NOW=0
<7>[    7.677113] power_supply BAT0: prop CHARGE_FULL_DESIGN=2560000
<7>[    7.677115] power_supply BAT0: prop CHARGE_FULL=2560000
<7>[    7.677117] power_supply BAT0: prop CHARGE_NOW=2560000
<7>[    7.677119] power_supply BAT0: prop CAPACITY=100
<7>[    7.677120] power_supply BAT0: prop CAPACITY_LEVEL=Full
<7>[    7.677122] power_supply BAT0: prop MODEL_NAME=Primary
<7>[    7.677124] power_supply BAT0: prop MANUFACTURER=Hewlett-Packard
<7>[    7.677126] power_supply BAT0: prop SERIAL_NUMBER=
<7>[    7.679306] power_supply ADP1: uevent
<7>[    7.679310] power_supply ADP1: POWER_SUPPLY_NAME=ADP1
<7>[    7.679539] power_supply ADP1: prop ONLINE=1
<6>[    7.682289] cfg80211: Calling CRDA to update world regulatory domain
<11>[    7.687423] init: /dev/hw_random not found
<6>[    7.698036] AVX2 version of gcm_enc/dec engaged.
<6>[    7.698040] AES CTR mode by8 optimization enabled
<4>[    7.919979] wl: module license 'unspecified' taints kernel.
<4>[    7.919982] Disabling lock debugging due to kernel taint
<3>[    8.014454] psmouse serio1: elantech: unknown hardware version, aborting...
<6>[    8.318752] input: PS/2 Elantech Touchpad as /devices/platform/i8042/serio1/input/input17
<11>[    8.381023] init: /dev/hw_random not found
<14>[    8.381247] fs_mgr: __mount(source=none,target=/cache,type=tmpfs)=0
<11>[    8.476049] init: Unable to read property file '/system/default.prop'
<11>[    8.476060] init: Unable to read property file '/vendor/build.prop'
<11>[    8.476065] init: Unable to read property file '/factory/factory.prop'
<11>[    8.476071] init: Unable to read property file '/data/local.prop'
<6>[    8.560479] binder: 1616:1616 transaction failed 29189, size 0-0
<11>[    8.985988] init: cannot find '/system/bin/install-recovery.sh', disabling 'flash_recovery'
<3>[    9.479275] Bluetooth: hci0 command 0x1003 tx timeout
<6>[    9.481342] input: Android Power Button as /devices/virtual/input/input19
<12>[    9.561767] healthd: BatteryHealthPath not found
<12>[    9.561771] healthd: BatteryTemperaturePath not found
<13>[   10.710846] init: /sbin/modprobe fs-binfmt_misc
<13>[   10.805983] init: /sbin/modprobe net-pf-16-proto-9
<11>[   10.813780] init: Couldn't probe module 'net-pf-16-proto-9'
<38>[   10.813956] logd.auditd: start
<3>[   11.246367] x_tables: ip_tables: owner match: used from hooks INPUT, but only valid from OUTPUT/POSTROUTING
<3>[   11.247359] x_tables: ip6_tables: owner match: used from hooks INPUT, but only valid from OUTPUT/POSTROUTING
<13>[   12.783096] init: /sbin/modprobe net-pf-16-proto-5
<11>[   12.790394] init: Couldn't probe module 'net-pf-16-proto-5'
<6>[   24.794869] capability: warning: `main' uses 32-bit capabilities (legacy support in use)
<12>[   58.636887] healthd: battery l=100 v=16922 t=0.0 h=1 st=5 c=0 chg=a
<6>[   59.593844] lowmemorykiller: lowmem_shrink: convert oom_adj to oom_score_adj:
<6>[   59.593848] lowmemorykiller: oom_adj 0 => oom_score_adj 0
<6>[   59.593850] lowmemorykiller: oom_adj 1 => oom_score_adj 58
<6>[   59.593852] lowmemorykiller: oom_adj 2 => oom_score_adj 117
<6>[   59.593853] lowmemorykiller: oom_adj 3 => oom_score_adj 176
<6>[   59.593855] lowmemorykiller: oom_adj 9 => oom_score_adj 529
<6>[   59.593856] lowmemorykiller: oom_adj 15 => oom_score_adj 1000
<6>[   61.919503] r8169 0000:09:00.0 eth0: link down
<6>[   61.919561] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
<12>[   69.625941] healthd: battery l=100 v=16924 t=0.0 h=1 st=5 c=0 chg=a
<6>[   87.501914] snd_hda_intel 0000:00:1b.0: IRQ timing workaround is activated for card #1. Suggest a bigger bdl_pos_adj.
<12>[  129.686488] healthd: battery l=100 v=16923 t=0.0 h=1 st=5 c=0 chg=a
<12>[  189.746176] healthd: battery l=100 v=16924 t=0.0 h=1 st=5 c=0 chg=a
<12>[  249.806489] healthd: battery l=100 v=16924 t=0.0 h=1 st=5 c=0 chg=a
<12>[  309.866203] healthd: battery l=100 v=16924 t=0.0 h=1 st=5 c=0 chg=a

Charles Milette

unread,
Jan 22, 2016, 9:19:46 AM1/22/16
to Android-x86
The dmesg got cut... Here's the full dmesg

Chih-Wei Huang

unread,
Jan 22, 2016, 10:26:54 AM1/22/16
to Android-x86
2016-01-22 22:19 GMT+08:00 Charles Milette <charles...@gmail.com>:
> The dmesg got cut... Here's the full dmesg

<6>[ 7.194846] bcma: bus0: Found chip with id 43142, rev 0x01 and
package 0x08
<6>[ 7.194869] bcma: bus0: Core 0 found: ChipCommon (manuf 0x4BF,
id 0x800, rev 0x28, class 0x0)
<6>[ 7.194887] bcma: bus0: Core 1 found: IEEE 802.11 (manuf 0x4BF,
id 0x812, rev 0x21, class 0x0)
<6>[ 7.194921] bcma: bus0: Core 2 found: PCIe (manuf 0x4BF, id
0x820, rev 0x16, class 0x0)
<6>[ 7.194972] bcma: bus0: Core 3 found: UNKNOWN (manuf 0x43B, id
0x368, rev 0x00, class 0x0)
<6>[ 7.209918] bcma: bus0: Bus registered
...
<4>[ 7.919979] wl: module license 'unspecified' taints kernel.

Are you sure bcma is needed?
It seems to me bcma detected (and occupied) the chip
so wl couldn't find it.

How about

rmmod bcma
modprobe wl

Charles Milette

unread,
Jan 22, 2016, 12:08:17 PM1/22/16
to Android-x86

Are you sure bcma is needed?

Yeah, modprobing wl alone doesn't works.
 
It seems to me bcma detected (and occupied) the chip
so wl couldn't find it.

How about

rmmod bcma
modprobe wl



I don't know how, but I got stuck in a bootloop, so I'm gonna reinstall before trying.
Message has been deleted
Message has been deleted
Message has been deleted

Den

unread,
Jan 22, 2016, 12:45:22 PM1/22/16
to Android-x86
Charles Milette

 To load in debug mode
Perform:
modprobe wl

Then exit and exit
WiFi works
Only now after rebooting again I need to perform on the new, necessary as that to automate the process.
Sorry for my English

Antony Stone

unread,
Jan 22, 2016, 12:49:38 PM1/22/16
to andro...@googlegroups.com
On Friday 22 January 2016 at 18:45:21, Den wrote several times:

> To load in debug mode
> Perform:
> modprobe wl
>
> Then exit and exit

Please could you try to reply just once (or maybe twice if you happen to make
a mistake which really needs correcting) when responding?

Five emails all saying pretty much the same thing are either a nuisance (if
they really do say the same thing) or confusing (if there are variations, and
we don't know the reason why).


Thanks,


Antony.

--
BASIC is to computer languages what Roman numerals are to arithmetic.

Andrew Craig

unread,
Jan 22, 2016, 4:00:24 PM1/22/16
to Android-x86
Did you mount the system.I'm file? If I try the error states the disc image file is corrupt.

I'm using Windows 10.

Charles Milette

unread,
Jan 22, 2016, 4:36:40 PM1/22/16
to Android-x86
You're probably using an ext file system. Install Ext2FSD

Charles Milette

unread,
Jan 22, 2016, 4:37:38 PM1/22/16
to Android-x86
For the installed Android. Not the live. If you really want to open the live image, try 7-ZIP

Andrew Craig

unread,
Jan 22, 2016, 5:21:15 PM1/22/16
to Android-x86
Thanks. I think my issue is that I did the install with the Android x86 installer from GTXExtreme on XDA Developers. 

Andrew Craig

unread,
Jan 23, 2016, 6:40:23 AM1/23/16
to Android-x86

Charles Milette

unread,
Jan 26, 2016, 4:15:19 PM1/26/16
to Android-x86
Strange...Changing init.sh doesn't works.


But adding a script like that:

modprobe bcma
modprobe wl

In /scripts works...

Here's the dmesg when bcma and wl are modprobed (why do I use that word as a verb?) by a script in /scripts:
http://pastebin.com/Vc36dw4V

The one when init.sh is modprobing wl and bcma:
http://pastebin.com/kSy65fYK

Chih-Wei Huang

unread,
Jan 26, 2016, 8:42:11 PM1/26/16
to Android-x86
2016-01-27 5:15 GMT+08:00 Charles Milette <charles...@gmail.com>:
> Strange...Changing init.sh doesn't works.
>
>
> But adding a script like that:
>
> modprobe bcma
> modprobe wl
>
> In /scripts works...
>
> Here's the dmesg when bcma and wl are modprobed (why do I use that word as a
> verb?) by a script in /scripts:
> http://pastebin.com/Vc36dw4V

The working case:

<4>[ 2.675874] wl: module license 'unspecified' taints kernel.
<4>[ 2.675877] Disabling lock debugging due to kernel taint
<3>[ 2.708366] wl0: online cpus 1
<3>[ 2.798540] wl_init_rfkill: rfkill registered
<0>[ 2.798659] wlan0: Broadcom BCM4365 802.11 Hybrid Wireless
Controller 6.30.223.248 (r487574)

> The one when init.sh is modprobing wl and bcma:
> http://pastebin.com/kSy65fYK

Not working case:

<6>[ 7.194846] bcma: bus0: Found chip with id 43142, rev 0x01 and
package 0x08
<6>[ 7.194869] bcma: bus0: Core 0 found: ChipCommon (manuf 0x4BF,
id 0x800, rev 0x28, class 0x0)
<6>[ 7.194887] bcma: bus0: Core 1 found: IEEE 802.11 (manuf 0x4BF,
id 0x812, rev 0x21, class 0x0)
<6>[ 7.194921] bcma: bus0: Core 2 found: PCIe (manuf 0x4BF, id
0x820, rev 0x16, class 0x0)
<6>[ 7.194972] bcma: bus0: Core 3 found: UNKNOWN (manuf 0x43B, id
0x368, rev 0x00, class 0x0)
<6>[ 7.209918] bcma: bus0: Bus registered
...
<4>[ 7.919979] wl: module license 'unspecified' taints kernel.


I still suspect you should not load bcma at all.

Have you tried to modprobe wl only in init.sh or /scripts?

Charles Milette

unread,
Jan 27, 2016, 8:32:50 AM1/27/16
to Android-x86

I still suspect you should not load bcma at all.

Have you tried to modprobe wl only in init.sh or /scripts?

I just tried, with "lspci | grep -q 14e4:4365 && modprobe wl" in init.sh. Doesn't works. The only thing about "wl" in the dmesg is "wl: module license 'unspecified' taints kernel.". Nothing else.



I noticed: The working case is loaded earlier (2.*) than the not working one (7.*). Could this affect something?

Chih-Wei Huang

unread,
Jan 27, 2016, 8:58:18 AM1/27/16
to Android-x86
2016-01-27 21:32 GMT+08:00 Charles Milette <charles...@gmail.com>:
>
>> I still suspect you should not load bcma at all.
>>
>> Have you tried to modprobe wl only in init.sh or /scripts?
>
>
> I just tried, with "lspci | grep -q 14e4:4365 && modprobe wl" in init.sh.
> Doesn't works. The only thing about "wl" in the dmesg is "wl: module license
> 'unspecified' taints kernel.". Nothing else.

Have you checked the dmesg in this case?

It's possible bcma or other modules will be auto-probed and loaded
earlier than wl. You may need to remove them.


> I noticed: The working case is loaded earlier (2.*) than the not working one
> (7.*). Could this affect something?



Charles Milette

unread,
Jan 29, 2016, 3:27:55 PM1/29/16
to Android-x86
Have you checked the dmesg in this case?
Yes.

 
It's possible bcma or other modules will be auto-probed and loaded
earlier than wl. You may need to remove them.

What would be the other modules?

Andrew Craig

unread,
Feb 1, 2016, 4:02:42 PM2/1/16
to Android-x86
Has anyone managed to get a script to work from the scripts folder?

I figured out how to use cat to create and popuate a script but am still not sure exactly what should be in the script. If anyone has this working please can you share the exact script contents.

Do you need to do anything to make the script executable or is naming it xxx.sh enough?

Thanks for your help.

Charles Milette

unread,
Feb 1, 2016, 4:27:16 PM2/1/16
to Android-x86
Has anyone managed to get a script to work from the scripts folder?
Me, I managed to do it . What we are trying do now is in init.sh
 

I figured out how to use cat to create and popuate a script but am still not sure exactly what should be in the script. If anyone has this working please can you share the exact script contents.

modprobe bcma
modprobe wl


Do you need to do anything to make the script executable  or is naming it xxx.sh enough?

Naming it xxx.sh is enough

Andrew Craig

unread,
Feb 2, 2016, 3:21:23 PM2/2/16
to Android-x86
@Charles Milette, Thanks for your help I have it working now. Very excited.

Cheers

Chih-Wei Huang

unread,
Feb 2, 2016, 10:31:32 PM2/2/16
to Android-x86
2016-02-02 5:27 GMT+08:00 Charles Milette <charles...@gmail.com>:
>> Has anyone managed to get a script to work from the scripts folder?
>
>> Do you need to do anything to make the script executable or is naming it
>> xxx.sh enough?
>
> Naming it xxx.sh is enough

No special requirement for the filename.
Any file put in the scripts folder
will be treated as scripts.

Charles Milette

unread,
Mar 8, 2016, 6:23:48 PM3/8/16
to Android-x86
Sorry for the late answer, but I think I found the problem:

<6>[    6.491811] usb 1-7: New USB device found, idVendor=0a5c, idProduct=216d
<6>[    6.491815] usb 1-7: New USB device strings: Mfr=1, Product=2, SerialNumber=3
<6>[    6.491817] usb 1-7: Product: BCM43142A0
<6>[    6.491819] usb 1-7: Manufacturer: Broadcom Corp
<6>[    6.491821] usb 1-7: SerialNumber: D85DE2C7BB0E

I seems USB occupes the card. How can I make it so that wl finds it?
Reply all
Reply to author
Forward
0 new messages