Why is not there a coordinated image for Intel Atom Bay Trail tablets?

2,392 views
Skip to first unread message

Christian

unread,
Jan 14, 2018, 2:01:07 AM1/14/18
to Android-x86
There are a lot of Windows tablets with Intel Atom Bay Trail tablets, why is not supported this spectrum supports.

Chih-Wei Huang

unread,
Jan 14, 2018, 3:25:59 AM1/14/18
to Android-x86
2018-01-14 15:01 GMT+08:00 'Christian' via Android-x86
<andro...@googlegroups.com>:
> There are a lot of Windows tablets with Intel Atom Bay Trail tablets, why is
> not supported this spectrum supports.

Baytrail is supported, of course.
But don't expect all your peripherals are supported.
That's unrealistic.
It depends on how many linux developers
are working on that devices.
If you are using nameless Baytrail tablets,
the situation would be worse.

What's your device and
what issues do you have exactly?

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

Jordan Anderson

unread,
Jan 14, 2018, 3:37:26 AM1/14/18
to Android-x86
I'm sure the Intel Atom in my RCA Cambio W101SA23T1 is a Bay Trail, A quad-core x5-Z8350 @ 1.44Ghz. However I'm getting error, after error, after error running any android out of the box. I just want to dual boot Android and windows

Chih-Wei Huang

unread,
Jan 14, 2018, 3:45:27 AM1/14/18
to Android-x86
2018-01-14 16:37 GMT+08:00 Jordan Anderson <jordan.m....@gmail.com>:
> I'm sure the Intel Atom in my RCA Cambio W101SA23T1 is a Bay Trail, A
> quad-core x5-Z8350 @ 1.44Ghz. However I'm getting error, after error, after

x5-Z8350 is NOT a Bay Trail.
It's called Cherry Trail.

> error running any android out of the box. I just want to dual boot Android
> and windows

Again. What errors do you have exactly?
If you can't provide more info, nobody can help.

Jordan Anderson

unread,
Jan 14, 2018, 6:43:46 PM1/14/18
to andro...@googlegroups.com
Something to do with the CPU set not registered, Memory map etc.
before the animated Android logo appears. I'm not sure where my boot
log file is on my flash drive, as I've chose debug mode.
Does Android x86 support Cherry Trail now or are you working on that?
> --
> You received this message because you are subscribed to a topic in the
> Google Groups "Android-x86" group.
> To unsubscribe from this topic, visit
> https://groups.google.com/d/topic/android-x86/L8Ga_bpA6BQ/unsubscribe.
> To unsubscribe from this group and all its topics, 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.
>

Nikolai Cassanova

unread,
Jan 17, 2018, 12:40:47 AM1/17/18
to Android-x86
Hi I have baytrail cpu as I have an Asus t100taf model with 2 Gb of ram and 32 Gb of solid state in terms of hard drive space and I have problems with Android 7.1.2 (rc 2). For some reason I can't get it to recognize the micro SD card that's inside the tablet as it's a 32 Gb micro SD card but it will pick up my other SD card if I put it into a USB flash converter and plug it into the USB port on the keyboard dock. I did blkid in terminal and it shows me that the micro SD card is there in /dev/block/mmcblk2p1 but when I run mount /dev/block/mmcblk2p1 it says fstab doesn't see it. Here is the thing I have this tablet dual booted with Android x86 and Ubuntu 16.04 and on the Ubuntu side it recognizes it and loads it automatically.

I also for some reason can't get Bluetooth to work and I can't even figure out the way to load the Bluetooth driver for Android x86.

Also a big thing is suspend/resume doesn't work and when I tell it to suspend or if I leave it and the screen goes off like our normal Android phones I can't tell it to wake after and I am forced to turn it off by holding down the power button.

I want to say though great work on Android 7.1.2 because even with all the hiccups on my particular Asus tablet, I still have it very functional where I can use it for studying and also for reading and running certain Android apps that I use to study and to call home and communicate with family. So i thank everyone in Android x86 project for such a great OS.

Chih-Wei Huang

unread,
Jan 17, 2018, 1:24:58 AM1/17/18
to Android-x86
2018-01-17 13:40 GMT+08:00 Nikolai Cassanova <ncassa...@gmail.com>:
> Hi I have baytrail cpu as I have an Asus t100taf model with 2 Gb of ram and 32 Gb of solid state in terms of hard drive space and I have problems with Android 7.1.2 (rc 2). For some reason I can't get it to recognize the micro SD card that's inside the tablet as it's a 32 Gb micro SD card but it will pick up my other SD card if I put it into a USB flash converter and plug it into the USB port on the keyboard dock. I did blkid in terminal and it shows me that the micro SD card is there in /dev/block/mmcblk2p1 but when I run mount /dev/block/mmcblk2p1 it says fstab doesn't see it. Here is the thing I have this tablet dual booted with Android x86 and Ubuntu 16.04 and on the Ubuntu side it recognizes it and loads it automatically.
>
> I also for some reason can't get Bluetooth to work and I can't even figure out the way to load the Bluetooth driver for Android x86.
>
> Also a big thing is suspend/resume doesn't work and when I tell it to suspend or if I leave it and the screen goes off like our normal Android phones I can't tell it to wake after and I am forced to turn it off by holding down the power button.

Please show the output of these commands:

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

You can also check /etc/init.sh in android-x86.
It sets BT port and sleep.state to none
(to avoid suspend issue) for T100TA.
I guess it will also work for T100TAF.
You may try this patch:

diff --git a/init.sh b/init.sh
index 22f5793..293e4cd 100644
--- a/init.sh
+++ b/init.sh
@@ -50,7 +50,7 @@ function init_hal_bluetooth()
done

case "$PRODUCT" in
- T10*TA|HP*Omni*)
+ T10*TA*|HP*Omni*)
BTUART_PORT=/dev/ttyS1
set_property hal.bluetooth.uart.proto bcm
[ -z "$(getprop sleep.state)" ] &&
set_property sleep.state none


> I want to say though great work on Android 7.1.2 because even with all the hiccups on my particular Asus tablet, I still have it very functional where I can use it for studying and also for reading and running certain Android apps that I use to study and to call home and communicate with family. So i thank everyone in Android x86 project for such a great OS.

Thank you!

Christian

unread,
Jan 17, 2018, 1:53:00 AM1/17/18
to Android-x86
I have the Lenovo ThinkPad 8 LTE with 4GB of RAM & Intel Z3795 and I would like a fully functional Android.

Jordan Anderson

unread,
Jan 17, 2018, 8:09:42 AM1/17/18
to andro...@googlegroups.com
Note that the RCA Cambio W101SA23T1 I have also has a suspend issue on
7.1, my choice of flavor for my tablet. I'm also stuck working on the
build I previously mentioned in my post.<div
id="DAB4FAD8-2DD7-40BB-A1B8-4E2AA1F9FDF2"><br />
<table style="border-top: 1px solid #D3D4DE;">
<tr>
<td style="width: 55px; padding-top: 13px;"><a
href="https://www.avast.com/sig-email?utm_medium=email&utm_source=link&utm_campaign=sig-email&utm_content=webmail&utm_term=icon"
target="_blank"><img
src="https://ipmcdn.avast.com/images/icons/icon-envelope-tick-round-orange-animated-no-repeat-v1.gif"
alt="" width="46" height="29" style="width: 46px; height: 29px;"
/></a></td>
<td style="width: 470px; padding-top: 12px; color: #41424e;
font-size: 13px; font-family: Arial, Helvetica, sans-serif;
line-height: 18px;">Virus-free. <a
href="https://www.avast.com/sig-email?utm_medium=email&utm_source=link&utm_campaign=sig-email&utm_content=webmail&utm_term=link"
target="_blank" style="color: #4453ea;">www.avast.com</a>
</td>
</tr>
</table><a href="#DAB4FAD8-2DD7-40BB-A1B8-4E2AA1F9FDF2" width="1"
height="1"></a></div>

Jordan Anderson

unread,
Jan 17, 2018, 8:14:07 AM1/17/18
to andro...@googlegroups.com
What the heck was that code doing there? I have Avast antivirus, and
replied via e-mail...I'll try posting again here.
Note that the RCA Cambio W101SA23T1 I have also has a suspend issue on
7.1, a perfect choice for my tablet. I'm also stuck working on the
build I previously mentioned in my post asking for help on building an
image.<div id="DAB4FAD8-2DD7-40BB-A1B8-4E2AA1F9FDF2"><br />
<table style="border-top: 1px solid #D3D4DE;">
<tr>
<td style="width: 55px; padding-top: 13px;"><a
href="https://www.avast.com/sig-email?utm_medium=email&utm_source=link&utm_campaign=sig-email&utm_content=webmail&utm_term=icon"
target="_blank"><img
src="https://ipmcdn.avast.com/images/icons/icon-envelope-tick-round-orange-animated-no-repeat-v1.gif"
alt="" width="46" height="29" style="width: 46px; height: 29px;"
/></a></td>
<td style="width: 470px; padding-top: 12px; color: #41424e;
font-size: 13px; font-family: Arial, Helvetica, sans-serif;
line-height: 18px;">Virus-free. <a
href="https://www.avast.com/sig-email?utm_medium=email&utm_source=link&utm_campaign=sig-email&utm_content=webmail&utm_term=link"
target="_blank" style="color: #4453ea;">www.avast.com</a>
</td>
</tr>
</table><a href="#DAB4FAD8-2DD7-40BB-A1B8-4E2AA1F9FDF2" width="1"
height="1"></a></div>

Nikolai Cassanova

unread,
Jan 17, 2018, 8:49:02 AM1/17/18
to Android-x86
here is the output in terminal you asked for:
x86_64:/ $ cat /sys/class/dmi/id/product_name
T100TAF
x86_64:/ $ cat /sys/class/dmi/id/uevent
MODALIAS=dmi:bvnAmericanMegatrendsInc.:bvrT100TAF.300:bd07/14/2016:svnASUSTeKCOMPUTERINC.:pnT100TAF:pvr1.0:rvnASUSTeKCOMPUTERINC.:rnT100TAF:rvr1.0:cvnASUSTeKCOMPUTERINC.:ct10:cvr1.0:
x86_64:/ $

and i wanted to note that for android 7.1.2 (rc2) when i first installed the OS sound wasn't working but after researching a while which took a few days i final found asound.conf file and just copied and added the sound patch from ubuntu to that same asound.conf file and got sound to work for anyone else who might have this tablet and decides to run android x86 on it. If you want i can post the exact contents of the asound.conf as i don't know if you would add that as default to the next future android x86 builds so that asus t100 models can be supported for future android x86 builds. P.S: sound works only with the regular speakers and when i do plug in headphones into the headphone port it doesn't switch audio to headphones it keeps playing from internal speakers but that is the same thing in ubuntu as you have to manually switch sound drivers everytime to get it to headphones using the regular sound settings in ubuntu which isn't a big deal but we don't have such a default app that lets us select the sound driver like the one in ubuntu.

youling 257

unread,
Jan 17, 2018, 9:05:32 AM1/17/18
to Android-x86
hello,please you test my bytcrrt5640.state and Jack-detect.sh
https://groups.google.com/forum/#!searchin/android-x86/bytcrrt5640%7Csort:date/android-x86/n14kVAauPJ8/fzRxc7EkAwAJ

在 2018年1月17日星期三 UTC+8下午9:49:02,Nikolai Cassanova写道:

Povilas Staniulis

unread,
Jan 17, 2018, 2:43:03 PM1/17/18
to andro...@googlegroups.com
As for SD card, since it's not USB, I think you need to set the SDCARD
kernel argument to point to your SD card device for Android to recognize it.

As for power issues, Bay Trail is still quirky with Linux. The situation
is improving with newer kernels but it still ain't perfectly stable.
Bluetooth should work (tty devices are most likely there) but probably
needs to be setup in init.rc at boot.

Chih-Wei Huang

unread,
Jan 17, 2018, 9:28:49 PM1/17/18
to Android-x86
2018-01-17 21:49 GMT+08:00 Nikolai Cassanova <ncassa...@gmail.com>:
> here is the output in terminal you asked for:
> x86_64:/ $ cat /sys/class/dmi/id/product_name
> T100TAF
> x86_64:/ $ cat /sys/class/dmi/id/uevent
> MODALIAS=dmi:bvnAmericanMegatrendsInc.:bvrT100TAF.300:bd07/14/2016:svnASUSTeKCOMPUTERINC.:pnT100TAF:pvr1.0:rvnASUSTeKCOMPUTERINC.:rnT100TAF:rvr1.0:cvnASUSTeKCOMPUTERINC.:ct10:cvr1.0:

Thanks!

Have you tried the patch of init.sh to see
if it solves your BT and suspend issue?
You can just modify it by hand in your running system.

> and i wanted to note that for android 7.1.2 (rc2) when i first installed the OS sound wasn't working but after researching a while which took a few days i final found asound.conf file and just copied and added the sound patch from ubuntu to that same asound.conf file and got sound to work for anyone else who might have this tablet and decides to run android x86 on it. If you want i can post the exact contents of the asound.conf as i don't know if you would add that as default to the next future android x86 builds so that asus t100 models can be supported for future android x86 builds. P.S: sound works only with the regular speakers and when i do plug in headphones into the headphone port it doesn't switch audio to headphones it keeps playing from internal speakers but that is the same thing in ubuntu as you have to manually switch sound drivers everytime to get it to headphones using the regular sound settings in ubuntu which isn't a big deal but we don't have such a default app that lets us select the sound driver like the one in ubuntu.

Yes. Please post the details.
If it's easy to integrate and won't affect others,
I'll do it.

Nikolai Cassanova

unread,
Jan 17, 2018, 11:50:54 PM1/17/18
to Android-x86
I did try to edit it via finding the line and adding the edits to init.sh and when I saved and rebooted the screen came up discombobulated to the point that I couldn't see anything. I even plugged it into my flat screen and it still was discombobulated. Which I can't understand because the only line which was missing when I compared what you to told me to add was the one with + ta ... (Sorry on cell phone and cant remember the whole code for that line) but I did a copy and paste of that one line and I don't understand how that line affected the screen output where I wasn't able to see the screen at all. I mean it came up and loaded but the screen just showed scrambled lines and colors and once I changed it back meaning editing it out, I got the device to boot normally with the screen showing up perfect. So I thought that was weird because the line you told me to change represents a Bluetooth fix and nothing to do with the screen.

In terms of youling:

I just did a search from what you told me about the sound file and will try your detect.sh, I did read all your posts on the sound file and went to the GitHub page and seen from I believe since 2016 they have fixed the rt5640 for our devices and will try to add it and see but after I get some time when I am done with studying.

P.S: I will post my sound.conf once I am done studying so everyone can see how the sound works on my device.

Chih-Wei Huang

unread,
Jan 18, 2018, 12:55:25 AM1/18/18
to Android-x86
2018-01-18 12:50 GMT+08:00 Nikolai Cassanova <ncassa...@gmail.com>:
> I did try to edit it via finding the line and adding the edits to init.sh and when I saved and rebooted the screen came up discombobulated to the point that I couldn't see anything. I even plugged it into my flat screen and it still was discombobulated. Which I can't understand because the only line which was missing when I compared what you to told me to add was the one with + ta ... (Sorry on cell phone and cant remember the whole code for that line) but I did a copy and paste of that one line and I don't understand how that line affected the screen output where I wasn't able to see the screen at all. I mean it came up and loaded but the screen just showed scrambled lines and colors and once I changed it back meaning editing it out, I got the device to boot normally with the screen showing up perfect. So I thought that was weird because the line you told me to change represents a Bluetooth fix and nothing to do with the screen.

Oh, not sure if you understand the patch format correctly.
Indeed it just changes T10*TA -> T10*TA*

Or, you can use this command to change it:

sed -i 's/\(\tT10.TA\)|/\1*|/' /etc/init.sh

Christian

unread,
Jan 18, 2018, 3:45:19 AM1/18/18
to Android-x86
How damn well do I apply patches?


Am Sonntag, 14. Januar 2018 08:01:07 UTC+1 schrieb Christian:

Nikolai Cassanova

unread,
Jan 20, 2018, 10:01:03 PM1/20/18
to Android-x86
hey so a quick update. I got SD card detection, the internal micro sd card slot to be detected.

So i tried to add SDCARD=/dev/block/mmcblk2p1 but the system still couldn't recognize it but then i just put SDCARD=mmcblk2p1 and the system recognized it. which i put right after the quite line in grub and right before splash. So i don't know if it was because maybe i kept putting the location of SDCARD in the wrong line or if its due to the fact that vold recognizes mmclk2p1 as suppose to /dev/block/mmcblk2p1

Also i will add your edits to that change for the init.sh file and see if it works.

The other thing i wanted to know is how to go about fixing the bluetooth and i remembered someone mentioning that its in tty? also here is the asound.conf file that worked for my asus t100: (its copy and pasted below)

state.bytcrrt5640 {
control.1 {
iface MIXER
name 'media0_out mix 0 media0_in Switch'
value true
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.2 {
iface MIXER
name 'media0_out mix 0 media1_in Switch'
value true
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.3 {
iface MIXER
name 'media0_out mix 0 media2_in Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.4 {
iface MIXER
name 'media0_out mix 0 media3_in Switch'
value true
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.5 {
iface MIXER
name 'media1_out mix 0 media0_in Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.6 {
iface MIXER
name 'media1_out mix 0 media1_in Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.7 {
iface MIXER
name 'media1_out mix 0 media2_in Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.8 {
iface MIXER
name 'media1_out mix 0 media3_in Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.9 {
iface MIXER
name 'pcm0_out mix 0 modem_in Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.10 {
iface MIXER
name 'pcm0_out mix 0 codec_in0 Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.11 {
iface MIXER
name 'pcm0_out mix 0 codec_in1 Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.12 {
iface MIXER
name 'pcm0_out mix 0 sprot_loop_in Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.13 {
iface MIXER
name 'pcm0_out mix 0 media_loop1_in Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.14 {
iface MIXER
name 'pcm0_out mix 0 media_loop2_in Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.15 {
iface MIXER
name 'pcm0_out mix 0 pcm0_in Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.16 {
iface MIXER
name 'pcm0_out mix 0 pcm1_in Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.17 {
iface MIXER
name 'pcm1_out mix 0 modem_in Switch'
value true
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.18 {
iface MIXER
name 'pcm1_out mix 0 codec_in0 Switch'
value true
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.19 {
iface MIXER
name 'pcm1_out mix 0 codec_in1 Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.20 {
iface MIXER
name 'pcm1_out mix 0 sprot_loop_in Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.21 {
iface MIXER
name 'pcm1_out mix 0 media_loop1_in Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.22 {
iface MIXER
name 'pcm1_out mix 0 media_loop2_in Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.23 {
iface MIXER
name 'pcm1_out mix 0 pcm0_in Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.24 {
iface MIXER
name 'pcm1_out mix 0 pcm1_in Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.25 {
iface MIXER
name 'pcm2_out mix 0 modem_in Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.26 {
iface MIXER
name 'pcm2_out mix 0 codec_in0 Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.27 {
iface MIXER
name 'pcm2_out mix 0 codec_in1 Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.28 {
iface MIXER
name 'pcm2_out mix 0 sprot_loop_in Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.29 {
iface MIXER
name 'pcm2_out mix 0 media_loop1_in Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.30 {
iface MIXER
name 'pcm2_out mix 0 media_loop2_in Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.31 {
iface MIXER
name 'pcm2_out mix 0 pcm0_in Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.32 {
iface MIXER
name 'pcm2_out mix 0 pcm1_in Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.33 {
iface MIXER
name 'sprot_loop_out mix 0 modem_in Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.34 {
iface MIXER
name 'sprot_loop_out mix 0 codec_in0 Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.35 {
iface MIXER
name 'sprot_loop_out mix 0 codec_in1 Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.36 {
iface MIXER
name 'sprot_loop_out mix 0 sprot_loop_in Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.37 {
iface MIXER
name 'sprot_loop_out mix 0 media_loop1_in Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.38 {
iface MIXER
name 'sprot_loop_out mix 0 media_loop2_in Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.39 {
iface MIXER
name 'sprot_loop_out mix 0 pcm0_in Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.40 {
iface MIXER
name 'sprot_loop_out mix 0 pcm1_in Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.41 {
iface MIXER
name 'media_loop1_out mix 0 modem_in Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.42 {
iface MIXER
name 'media_loop1_out mix 0 codec_in0 Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.43 {
iface MIXER
name 'media_loop1_out mix 0 codec_in1 Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.44 {
iface MIXER
name 'media_loop1_out mix 0 sprot_loop_in Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.45 {
iface MIXER
name 'media_loop1_out mix 0 media_loop1_in Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.46 {
iface MIXER
name 'media_loop1_out mix 0 media_loop2_in Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.47 {
iface MIXER
name 'media_loop1_out mix 0 pcm0_in Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.48 {
iface MIXER
name 'media_loop1_out mix 0 pcm1_in Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.49 {
iface MIXER
name 'media_loop2_out mix 0 modem_in Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.50 {
iface MIXER
name 'media_loop2_out mix 0 codec_in0 Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.51 {
iface MIXER
name 'media_loop2_out mix 0 codec_in1 Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.52 {
iface MIXER
name 'media_loop2_out mix 0 sprot_loop_in Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.53 {
iface MIXER
name 'media_loop2_out mix 0 media_loop1_in Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.54 {
iface MIXER
name 'media_loop2_out mix 0 media_loop2_in Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.55 {
iface MIXER
name 'media_loop2_out mix 0 pcm0_in Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.56 {
iface MIXER
name 'media_loop2_out mix 0 pcm1_in Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.57 {
iface MIXER
name 'codec_out0 mix 0 modem_in Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.58 {
iface MIXER
name 'codec_out0 mix 0 codec_in0 Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.59 {
iface MIXER
name 'codec_out0 mix 0 codec_in1 Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.60 {
iface MIXER
name 'codec_out0 mix 0 sprot_loop_in Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.61 {
iface MIXER
name 'codec_out0 mix 0 media_loop1_in Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.62 {
iface MIXER
name 'codec_out0 mix 0 media_loop2_in Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.63 {
iface MIXER
name 'codec_out0 mix 0 pcm0_in Switch'
value true
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.64 {
iface MIXER
name 'codec_out0 mix 0 pcm1_in Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.65 {
iface MIXER
name 'codec_out1 mix 0 modem_in Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.66 {
iface MIXER
name 'codec_out1 mix 0 codec_in0 Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.67 {
iface MIXER
name 'codec_out1 mix 0 codec_in1 Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.68 {
iface MIXER
name 'codec_out1 mix 0 sprot_loop_in Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.69 {
iface MIXER
name 'codec_out1 mix 0 media_loop1_in Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.70 {
iface MIXER
name 'codec_out1 mix 0 media_loop2_in Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.71 {
iface MIXER
name 'codec_out1 mix 0 pcm0_in Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.72 {
iface MIXER
name 'codec_out1 mix 0 pcm1_in Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.73 {
iface MIXER
name 'modem_out mix 0 modem_in Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.74 {
iface MIXER
name 'modem_out mix 0 codec_in0 Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.75 {
iface MIXER
name 'modem_out mix 0 codec_in1 Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.76 {
iface MIXER
name 'modem_out mix 0 sprot_loop_in Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.77 {
iface MIXER
name 'modem_out mix 0 media_loop1_in Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.78 {
iface MIXER
name 'modem_out mix 0 media_loop2_in Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.79 {
iface MIXER
name 'modem_out mix 0 pcm0_in Switch'
value true
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.80 {
iface MIXER
name 'modem_out mix 0 pcm1_in Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.81 {
iface MIXER
name 'media0_in Gain 0 Ramp Delay'
value 5
comment {
access 'read write'
type INTEGER
count 1
range '5 - 5000'
}
}
control.82 {
iface MIXER
name 'media0_in Gain 0 Switch'
value true
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.83 {
iface MIXER
name 'media0_in Gain 0 Volume'
value.0 0
value.1 0
comment {
access 'read write'
type INTEGER
count 2
range '-1440 - 360'
dbmin -14400
dbmax 3600
dbvalue.0 0
dbvalue.1 0
}
}
control.84 {
iface MIXER
name 'media1_in Gain 0 Ramp Delay'
value 5
comment {
access 'read write'
type INTEGER
count 1
range '5 - 5000'
}
}
control.85 {
iface MIXER
name 'media1_in Gain 0 Switch'
value true
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.86 {
iface MIXER
name 'media1_in Gain 0 Volume'
value.0 0
value.1 0
comment {
access 'read write'
type INTEGER
count 2
range '-1440 - 360'
dbmin -14400
dbmax 3600
dbvalue.0 0
dbvalue.1 0
}
}
control.87 {
iface MIXER
name 'media2_in Gain 0 Ramp Delay'
value 5
comment {
access 'read write'
type INTEGER
count 1
range '5 - 5000'
}
}
control.88 {
iface MIXER
name 'media2_in Gain 0 Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.89 {
iface MIXER
name 'media2_in Gain 0 Volume'
value.0 -1440
value.1 -1440
comment {
access 'read write'
type INTEGER
count 2
range '-1440 - 360'
dbmin -14400
dbmax 3600
dbvalue.0 -14400
dbvalue.1 -14400
}
}
control.90 {
iface MIXER
name 'media3_in Gain 0 Ramp Delay'
value 5
comment {
access 'read write'
type INTEGER
count 1
range '5 - 5000'
}
}
control.91 {
iface MIXER
name 'media3_in Gain 0 Switch'
value true
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.92 {
iface MIXER
name 'media3_in Gain 0 Volume'
value.0 0
value.1 0
comment {
access 'read write'
type INTEGER
count 2
range '-1440 - 360'
dbmin -14400
dbmax 3600
dbvalue.0 0
dbvalue.1 0
}
}
control.93 {
iface MIXER
name 'pcm0_in Gain 0 Ramp Delay'
value 5
comment {
access 'read write'
type INTEGER
count 1
range '5 - 5000'
}
}
control.94 {
iface MIXER
name 'pcm0_in Gain 0 Switch'
value true
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.95 {
iface MIXER
name 'pcm0_in Gain 0 Volume'
value.0 0
value.1 0
comment {
access 'read write'
type INTEGER
count 2
range '-1440 - 360'
dbmin -14400
dbmax 3600
dbvalue.0 0
dbvalue.1 0
}
}
control.96 {
iface MIXER
name 'pcm1_in Gain 0 Ramp Delay'
value 5
comment {
access 'read write'
type INTEGER
count 1
range '5 - 5000'
}
}
control.97 {
iface MIXER
name 'pcm1_in Gain 0 Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.98 {
iface MIXER
name 'pcm1_in Gain 0 Volume'
value.0 -1440
value.1 -1440
comment {
access 'read write'
type INTEGER
count 2
range '-1440 - 360'
dbmin -14400
dbmax 3600
dbvalue.0 -14400
dbvalue.1 -14400
}
}
control.99 {
iface MIXER
name 'pcm1_out Gain 0 Ramp Delay'
value 5
comment {
access 'read write'
type INTEGER
count 1
range '5 - 5000'
}
}
control.100 {
iface MIXER
name 'pcm1_out Gain 0 Switch'
value true
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.101 {
iface MIXER
name 'pcm1_out Gain 0 Volume'
value.0 0
value.1 0
comment {
access 'read write'
type INTEGER
count 2
range '-1440 - 360'
dbmin -14400
dbmax 3600
dbvalue.0 0
dbvalue.1 0
}
}
control.102 {
iface MIXER
name 'pcm2_out Gain 0 Ramp Delay'
value 5
comment {
access 'read write'
type INTEGER
count 1
range '5 - 5000'
}
}
control.103 {
iface MIXER
name 'pcm2_out Gain 0 Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.104 {
iface MIXER
name 'pcm2_out Gain 0 Volume'
value.0 -1440
value.1 -1440
comment {
access 'read write'
type INTEGER
count 2
range '-1440 - 360'
dbmin -14400
dbmax 3600
dbvalue.0 -14400
dbvalue.1 -14400
}
}
control.105 {
iface MIXER
name 'codec_in0 Gain 0 Ramp Delay'
value 5
comment {
access 'read write'
type INTEGER
count 1
range '5 - 5000'
}
}
control.106 {
iface MIXER
name 'codec_in0 Gain 0 Switch'
value true
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.107 {
iface MIXER
name 'codec_in0 Gain 0 Volume'
value.0 0
value.1 0
comment {
access 'read write'
type INTEGER
count 2
range '-1440 - 360'
dbmin -14400
dbmax 3600
dbvalue.0 0
dbvalue.1 0
}
}
control.108 {
iface MIXER
name 'codec_in1 Gain 0 Ramp Delay'
value 5
comment {
access 'read write'
type INTEGER
count 1
range '5 - 5000'
}
}
control.109 {
iface MIXER
name 'codec_in1 Gain 0 Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.110 {
iface MIXER
name 'codec_in1 Gain 0 Volume'
value.0 -1440
value.1 -1440
comment {
access 'read write'
type INTEGER
count 2
range '-1440 - 360'
dbmin -14400
dbmax 3600
dbvalue.0 -14400
dbvalue.1 -14400
}
}
control.111 {
iface MIXER
name 'codec_out0 Gain 0 Ramp Delay'
value 5
comment {
access 'read write'
type INTEGER
count 1
range '5 - 5000'
}
}
control.112 {
iface MIXER
name 'codec_out0 Gain 0 Switch'
value true
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.113 {
iface MIXER
name 'codec_out0 Gain 0 Volume'
value.0 0
value.1 0
comment {
access 'read write'
type INTEGER
count 2
range '-1440 - 360'
dbmin -14400
dbmax 3600
dbvalue.0 0
dbvalue.1 0
}
}
control.114 {
iface MIXER
name 'codec_out1 Gain 0 Ramp Delay'
value 5
comment {
access 'read write'
type INTEGER
count 1
range '5 - 5000'
}
}
control.115 {
iface MIXER
name 'codec_out1 Gain 0 Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.116 {
iface MIXER
name 'codec_out1 Gain 0 Volume'
value.0 -1440
value.1 -1440
comment {
access 'read write'
type INTEGER
count 2
range '-1440 - 360'
dbmin -14400
dbmax 3600
dbvalue.0 -14400
dbvalue.1 -14400
}
}
control.117 {
iface MIXER
name 'media_loop1_out Gain 0 Ramp Delay'
value 5
comment {
access 'read write'
type INTEGER
count 1
range '5 - 5000'
}
}
control.118 {
iface MIXER
name 'media_loop1_out Gain 0 Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.119 {
iface MIXER
name 'media_loop1_out Gain 0 Volume'
value.0 -1440
value.1 -1440
comment {
access 'read write'
type INTEGER
count 2
range '-1440 - 360'
dbmin -14400
dbmax 3600
dbvalue.0 -14400
dbvalue.1 -14400
}
}
control.120 {
iface MIXER
name 'media_loop2_out Gain 0 Ramp Delay'
value 5
comment {
access 'read write'
type INTEGER
count 1
range '5 - 5000'
}
}
control.121 {
iface MIXER
name 'media_loop2_out Gain 0 Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.122 {
iface MIXER
name 'media_loop2_out Gain 0 Volume'
value.0 -1440
value.1 -1440
comment {
access 'read write'
type INTEGER
count 2
range '-1440 - 360'
dbmin -14400
dbmax 3600
dbvalue.0 -14400
dbvalue.1 -14400
}
}
control.123 {
iface MIXER
name 'sprot_loop_out Gain 0 Ramp Delay'
value 5
comment {
access 'read write'
type INTEGER
count 1
range '5 - 5000'
}
}
control.124 {
iface MIXER
name 'sprot_loop_out Gain 0 Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.125 {
iface MIXER
name 'sprot_loop_out Gain 0 Volume'
value.0 -1440
value.1 -1440
comment {
access 'read write'
type INTEGER
count 2
range '-1440 - 360'
dbmin -14400
dbmax 3600
dbvalue.0 -14400
dbvalue.1 -14400
}
}
control.126 {
iface MIXER
name 'media0_in Volume 0 Ramp Delay'
value 5
comment {
access 'read write'
type INTEGER
count 1
range '5 - 5000'
}
}
control.127 {
iface MIXER
name 'media0_in Volume 0 Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.128 {
iface MIXER
name 'media0_in Volume 0 Volume'
value.0 -1440
value.1 -1440
comment {
access 'read write'
type INTEGER
count 2
range '-1440 - 360'
dbmin -14400
dbmax 3600
dbvalue.0 -14400
dbvalue.1 -14400
}
}
control.129 {
iface MIXER
name 'modem_in Gain 0 Ramp Delay'
value 5
comment {
access 'read write'
type INTEGER
count 1
range '5 - 5000'
}
}
control.130 {
iface MIXER
name 'modem_in Gain 0 Switch'
value true
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.131 {
iface MIXER
name 'modem_in Gain 0 Volume'
value.0 0
value.1 0
comment {
access 'read write'
type INTEGER
count 2
range '-1440 - 360'
dbmin -14400
dbmax 3600
dbvalue.0 0
dbvalue.1 0
}
}
control.132 {
iface MIXER
name 'modem_out Gain 0 Ramp Delay'
value 5
comment {
access 'read write'
type INTEGER
count 1
range '5 - 5000'
}
}
control.133 {
iface MIXER
name 'modem_out Gain 0 Switch'
value true
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.134 {
iface MIXER
name 'modem_out Gain 0 Volume'
value.0 0
value.1 0
comment {
access 'read write'
type INTEGER
count 2
range '-1440 - 360'
dbmin -14400
dbmax 3600
dbvalue.0 0
dbvalue.1 0
}
}
control.135 {
iface MIXER
name 'media_loop1_out fir 0 params'
value '00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000'
comment {
access 'read write'
type BYTES
count 274
}
}
control.136 {
iface MIXER
name 'media_loop1_out iir 0 params'
value '0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000'
comment {
access 'read write'
type BYTES
count 302
}
}
control.137 {
iface MIXER
name 'media_loop1_out mdrp 0 params'
value '000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000'
comment {
access 'read write'
type BYTES
count 288
}
}
control.138 {
iface MIXER
name 'media_loop2_out fir 0 params'
value '00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000'
comment {
access 'read write'
type BYTES
count 274
}
}
control.139 {
iface MIXER
name 'media_loop2_out iir 0 params'
value '0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000'
comment {
access 'read write'
type BYTES
count 302
}
}
control.140 {
iface MIXER
name 'media_loop2_out mdrp 0 params'
value '000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000'
comment {
access 'read write'
type BYTES
count 288
}
}
control.141 {
iface MIXER
name 'sprot_loop_out lpro 0 params'
value '0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000'
comment {
access 'read write'
type BYTES
count 194
}
}
control.142 {
iface MIXER
name 'codec_in0 dcr 0 params'
value '000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000'
comment {
access 'read write'
type BYTES
count 54
}
}
control.143 {
iface MIXER
name 'codec_in1 dcr 0 params'
value '000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000'
comment {
access 'read write'
type BYTES
count 54
}
}
control.144 {
iface MIXER
name 'codec_out tx interleaver slot 0'
value codec_out0_0
comment {
access 'read write'
type ENUMERATED
count 1
item.0 none
item.1 codec_out0_0
item.2 codec_out0_1
item.3 codec_out1_0
item.4 codec_out1_1
}
}
control.145 {
iface MIXER
name 'codec_out tx interleaver slot 1'
value codec_out0_1
comment {
access 'read write'
type ENUMERATED
count 1
item.0 none
item.1 codec_out0_0
item.2 codec_out0_1
item.3 codec_out1_0
item.4 codec_out1_1
}
}
control.146 {
iface MIXER
name 'codec_out tx interleaver slot 2'
value codec_out1_0
comment {
access 'read write'
type ENUMERATED
count 1
item.0 none
item.1 codec_out0_0
item.2 codec_out0_1
item.3 codec_out1_0
item.4 codec_out1_1
}
}
control.147 {
iface MIXER
name 'codec_out tx interleaver slot 3'
value codec_out1_1
comment {
access 'read write'
type ENUMERATED
count 1
item.0 none
item.1 codec_out0_0
item.2 codec_out0_1
item.3 codec_out1_0
item.4 codec_out1_1
}
}
control.148 {
iface MIXER
name 'codec_in rx deinterleaver codec_in0_0'
value 'slot 0'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 none
item.1 'slot 0'
item.2 'slot 1'
item.3 'slot 2'
item.4 'slot 3'
}
}
control.149 {
iface MIXER
name 'codec_in rx deinterleaver codec_in0_1'
value 'slot 1'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 none
item.1 'slot 0'
item.2 'slot 1'
item.3 'slot 2'
item.4 'slot 3'
}
}
control.150 {
iface MIXER
name 'codec_in rx deinterleaver codec_in1_0'
value 'slot 2'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 none
item.1 'slot 0'
item.2 'slot 1'
item.3 'slot 2'
item.4 'slot 3'
}
}
control.151 {
iface MIXER
name 'codec_in rx deinterleaver codec_in1_1'
value 'slot 3'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 none
item.1 'slot 0'
item.2 'slot 1'
item.3 'slot 2'
item.4 'slot 3'
}
}
control.152 {
iface MIXER
name 'Mono Playback Switch'
value true
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.153 {
iface MIXER
name 'Mono DAC Playback Volume'
value.0 175
value.1 175
comment {
access 'read write'
type INTEGER
count 2
range '0 - 175'
dbmin -65625
dbmax 0
dbvalue.0 0
dbvalue.1 0
}
}
control.154 {
iface MIXER
name 'Speaker Channel Switch'
value.0 true
value.1 true
comment {
access 'read write'
type BOOLEAN
count 2
}
}
control.155 {
iface MIXER
name 'Speaker Playback Volume'
value.0 29
value.1 29
comment {
access 'read write'
type INTEGER
count 2
range '0 - 39'
dbmin -4650
dbmax 1200
dbvalue.0 -300
dbvalue.1 -300
}
}
control.156 {
iface MIXER
name 'HP Channel Switch'
value.0 true
value.1 true
comment {
access 'read write'
type BOOLEAN
count 2
}
}
control.157 {
iface MIXER
name 'HP Playback Volume'
value.0 29
value.1 29
comment {
access 'read write'
type INTEGER
count 2
range '0 - 39'
dbmin -4650
dbmax 1200
dbvalue.0 -300
dbvalue.1 -300
}
}
control.158 {
iface MIXER
name 'OUT Playback Switch'
value.0 false
value.1 false
comment {
access 'read write'
type BOOLEAN
count 2
}
}
control.159 {
iface MIXER
name 'OUT Channel Switch'
value.0 false
value.1 false
comment {
access 'read write'
type BOOLEAN
count 2
}
}
control.160 {
iface MIXER
name 'OUT Playback Volume'
value.0 31
value.1 31
comment {
access 'read write'
type INTEGER
count 2
range '0 - 39'
dbmin -4650
dbmax 1200
dbvalue.0 0
dbvalue.1 0
}
}
control.161 {
iface MIXER
name 'DAC2 Playback Switch'
value.0 true
value.1 true
comment {
access 'read write'
type BOOLEAN
count 2
}
}
control.162 {
iface MIXER
name 'DAC1 Playback Volume'
value.0 175
value.1 175
comment {
access 'read write'
type INTEGER
count 2
range '0 - 175'
dbmin -65625
dbmax 0
dbvalue.0 0
dbvalue.1 0
}
}
control.163 {
iface MIXER
name 'IN1 Boost'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 8'
dbmin 0
dbmax 5200
dbvalue.0 0
}
}
control.164 {
iface MIXER
name 'IN2 Boost'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 8'
dbmin 0
dbmax 5200
dbvalue.0 0
}
}
control.165 {
iface MIXER
name 'IN3 Boost'
value 8
comment {
access 'read write'
type INTEGER
count 1
range '0 - 8'
dbmin 0
dbmax 5200
dbvalue.0 5200
}
}
control.166 {
iface MIXER
name 'IN Capture Volume'
value.0 23
value.1 23
comment {
access 'read write'
type INTEGER
count 2
range '0 - 31'
dbmin -3450
dbmax 1200
dbvalue.0 0
dbvalue.1 0
}
}
control.167 {
iface MIXER
name 'ADC Capture Switch'
value.0 true
value.1 true
comment {
access 'read write'
type BOOLEAN
count 2
}
}
control.168 {
iface MIXER
name 'ADC Capture Volume'
value.0 47
value.1 47
comment {
access 'read write'
type INTEGER
count 2
range '0 - 127'
dbmin -17625
dbmax 30000
dbvalue.0 0
dbvalue.1 0
}
}
control.169 {
iface MIXER
name 'Mono ADC Capture Switch'
value.0 true
value.1 true
comment {
access 'read write'
type BOOLEAN
count 2
}
}
control.170 {
iface MIXER
name 'Mono ADC Capture Volume'
value.0 47
value.1 47
comment {
access 'read write'
type INTEGER
count 2
range '0 - 127'
dbmin -17625
dbmax 30000
dbvalue.0 0
dbvalue.1 0
}
}
control.171 {
iface MIXER
name 'ADC Boost Gain'
value.0 0
value.1 0
comment {
access 'read write'
type INTEGER
count 2
range '0 - 3'
dbmin 0
dbmax 3600
dbvalue.0 0
dbvalue.1 0
}
}
control.172 {
iface MIXER
name 'Class D SPK Ratio Control'
value '2.77x'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 '1.66x'
item.1 '1.83x'
item.2 '1.94x'
item.3 '2x'
item.4 '2.11x'
item.5 '2.22x'
item.6 '2.33x'
item.7 '2.44x'
item.8 '2.55x'
item.9 '2.66x'
item.10 '2.77x'
}
}
control.173 {
iface MIXER
name 'ADC IF1 Data Switch'
value Normal
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Normal
item.1 Swap
item.2 'left copy to right'
item.3 'right copy to left'
}
}
control.174 {
iface MIXER
name 'DAC IF1 Data Switch'
value Normal
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Normal
item.1 Swap
item.2 'left copy to right'
item.3 'right copy to left'
}
}
control.175 {
iface MIXER
name 'ADC IF2 Data Switch'
value Normal
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Normal
item.1 Swap
item.2 'left copy to right'
item.3 'right copy to left'
}
}
control.176 {
iface MIXER
name 'DAC IF2 Data Switch'
value Normal
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Normal
item.1 Swap
item.2 'left copy to right'
item.3 'right copy to left'
}
}
control.177 {
iface MIXER
name 'Headphone Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.178 {
iface MIXER
name 'Headset Mic Switch'
value true
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.179 {
iface MIXER
name 'Internal Mic Switch'
value true
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.180 {
iface MIXER
name 'Speaker Switch'
value true
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.181 {
iface MIXER
name 'RECMIXL HPOL Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.182 {
iface MIXER
name 'RECMIXL INL Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.183 {
iface MIXER
name 'RECMIXL BST3 Switch'
value true
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.184 {
iface MIXER
name 'RECMIXL BST2 Switch'
value true
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.185 {
iface MIXER
name 'RECMIXL BST1 Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.186 {
iface MIXER
name 'RECMIXL OUT MIXL Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.187 {
iface MIXER
name 'RECMIXR HPOR Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.188 {
iface MIXER
name 'RECMIXR INR Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.189 {
iface MIXER
name 'RECMIXR BST3 Switch'
value true
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.190 {
iface MIXER
name 'RECMIXR BST2 Switch'
value true
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.191 {
iface MIXER
name 'RECMIXR BST1 Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.192 {
iface MIXER
name 'RECMIXR OUT MIXR Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.193 {
iface MIXER
name 'Stereo ADC2 Mux'
value DMIC1
comment {
access 'read write'
type ENUMERATED
count 1
item.0 DMIC1
item.1 DMIC2
item.2 'DIG MIX'
}
}
control.194 {
iface MIXER
name 'Stereo ADC1 Mux'
value ADC
comment {
access 'read write'
type ENUMERATED
count 1
item.0 'DIG MIX'
item.1 ADC
}
}
control.195 {
iface MIXER
name 'Mono ADC L2 Mux'
value 'DMIC L1'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 'DMIC L1'
item.1 'DMIC L2'
item.2 'Mono DAC MIXL'
}
}
control.196 {
iface MIXER
name 'Mono ADC L1 Mux'
value ADCL
comment {
access 'read write'
type ENUMERATED
count 1
item.0 'Mono DAC MIXL'
item.1 ADCL
}
}
control.197 {
iface MIXER
name 'Mono ADC R1 Mux'
value ADCR
comment {
access 'read write'
type ENUMERATED
count 1
item.0 'Mono DAC MIXR'
item.1 ADCR
}
}
control.198 {
iface MIXER
name 'Mono ADC R2 Mux'
value 'DMIC R1'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 'DMIC R1'
item.1 'DMIC R2'
item.2 'Mono DAC MIXR'
}
}
control.199 {
iface MIXER
name 'Stereo ADC MIXL ADC1 Switch'
value true
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.200 {
iface MIXER
name 'Stereo ADC MIXL ADC2 Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.201 {
iface MIXER
name 'Stereo ADC MIXR ADC1 Switch'
value true
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.202 {
iface MIXER
name 'Stereo ADC MIXR ADC2 Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.203 {
iface MIXER
name 'Mono ADC MIXL ADC1 Switch'
value true
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.204 {
iface MIXER
name 'Mono ADC MIXL ADC2 Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.205 {
iface MIXER
name 'Mono ADC MIXR ADC1 Switch'
value true
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.206 {
iface MIXER
name 'Mono ADC MIXR ADC2 Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.207 {
iface MIXER
name 'DAI select'
value '1:1|2:2'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 '1:1|2:2'
item.1 '1:2|2:1'
item.2 '1:1|2:1'
item.3 '1:2|2:2'
}
}
control.208 {
iface MIXER
name 'SDI select'
value IF1
comment {
access 'read write'
type ENUMERATED
count 1
item.0 IF1
item.1 IF2
}
}
control.209 {
iface MIXER
name 'DAC MIXL Stereo ADC Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.210 {
iface MIXER
name 'DAC MIXL INF1 Switch'
value true
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.211 {
iface MIXER
name 'DAC MIXR Stereo ADC Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.212 {
iface MIXER
name 'DAC MIXR INF1 Switch'
value true
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.213 {
iface MIXER
name 'Mono DAC MIXL DAC L1 Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.214 {
iface MIXER
name 'Mono DAC MIXL DAC L2 Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.215 {
iface MIXER
name 'Mono DAC MIXL DAC R2 Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.216 {
iface MIXER
name 'Mono DAC MIXR DAC R1 Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.217 {
iface MIXER
name 'Mono DAC MIXR DAC R2 Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.218 {
iface MIXER
name 'Mono DAC MIXR DAC L2 Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.219 {
iface MIXER
name 'DIG MIXL DAC L1 Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.220 {
iface MIXER
name 'DIG MIXL DAC L2 Switch'
value true
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.221 {
iface MIXER
name 'DIG MIXR DAC R1 Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.222 {
iface MIXER
name 'DIG MIXR DAC R2 Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.223 {
iface MIXER
name 'SPK MIXL REC MIXL Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.224 {
iface MIXER
name 'SPK MIXL INL Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.225 {
iface MIXER
name 'SPK MIXL DAC L1 Switch'
value true
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.226 {
iface MIXER
name 'SPK MIXL DAC L2 Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.227 {
iface MIXER
name 'SPK MIXL OUT MIXL Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.228 {
iface MIXER
name 'SPK MIXR REC MIXR Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.229 {
iface MIXER
name 'SPK MIXR INR Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.230 {
iface MIXER
name 'SPK MIXR DAC R1 Switch'
value true
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.231 {
iface MIXER
name 'SPK MIXR DAC R2 Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.232 {
iface MIXER
name 'SPK MIXR OUT MIXR Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.233 {
iface MIXER
name 'SPOL MIX DAC R1 Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.234 {
iface MIXER
name 'SPOL MIX DAC L1 Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.235 {
iface MIXER
name 'SPOL MIX SPKVOL R Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.236 {
iface MIXER
name 'SPOL MIX SPKVOL L Switch'
value true
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.237 {
iface MIXER
name 'SPOL MIX BST1 Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.238 {
iface MIXER
name 'SPOR MIX DAC R1 Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.239 {
iface MIXER
name 'SPOR MIX SPKVOL R Switch'
value true
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.240 {
iface MIXER
name 'SPOR MIX BST1 Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.241 {
iface MIXER
name 'LOUT MIX DAC L1 Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.242 {
iface MIXER
name 'LOUT MIX DAC R1 Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.243 {
iface MIXER
name 'LOUT MIX OUTVOL L Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.244 {
iface MIXER
name 'LOUT MIX OUTVOL R Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.245 {
iface MIXER
name 'Speaker L Playback Switch'
value true
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.246 {
iface MIXER
name 'Speaker R Playback Switch'
value true
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.247 {
iface MIXER
name 'HP L Playback Switch'
value true
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.248 {
iface MIXER
name 'HP R Playback Switch'
value true
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.249 {
iface MIXER
name 'DAC L2 Mux'
value IF2
comment {
access 'read write'
type ENUMERATED
count 1
item.0 IF2
item.1 'Base L/R'
}
}
control.250 {
iface MIXER
name 'DAC R2 Mux'
value IF2
comment {
access 'read write'
type ENUMERATED
count 1
item.0 IF2
}
}
control.251 {
iface MIXER
name 'Stereo DAC MIXL DAC L1 Switch'
value true
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.252 {
iface MIXER
name 'Stereo DAC MIXL DAC L2 Switch'
value true
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.253 {
iface MIXER
name 'Stereo DAC MIXL ANC Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.254 {
iface MIXER
name 'Stereo DAC MIXR DAC R1 Switch'
value true
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.255 {
iface MIXER
name 'Stereo DAC MIXR DAC R2 Switch'
value true
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.256 {
iface MIXER
name 'Stereo DAC MIXR ANC Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.257 {
iface MIXER
name 'OUT MIXL SPK MIXL Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.258 {
iface MIXER
name 'OUT MIXL BST1 Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.259 {
iface MIXER
name 'OUT MIXL INL Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.260 {
iface MIXER
name 'OUT MIXL REC MIXL Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.261 {
iface MIXER
name 'OUT MIXL DAC R2 Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.262 {
iface MIXER
name 'OUT MIXL DAC L2 Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.263 {
iface MIXER
name 'OUT MIXL DAC L1 Switch'
value true
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.264 {
iface MIXER
name 'OUT MIXR SPK MIXR Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.265 {
iface MIXER
name 'OUT MIXR BST2 Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.266 {
iface MIXER
name 'OUT MIXR BST1 Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.267 {
iface MIXER
name 'OUT MIXR INR Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.268 {
iface MIXER
name 'OUT MIXR REC MIXR Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.269 {
iface MIXER
name 'OUT MIXR DAC L2 Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.270 {
iface MIXER
name 'OUT MIXR DAC R2 Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.271 {
iface MIXER
name 'OUT MIXR DAC R1 Switch'
value true
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.272 {
iface MIXER
name 'HPO MIX DAC2 Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.273 {
iface MIXER
name 'HPO MIX DAC1 Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.274 {
iface MIXER
name 'HPO MIX HPVOL Switch'
value true
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.275 {
iface MIXER
name 'Mono MIX DAC R2 Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.276 {
iface MIXER
name 'Mono MIX DAC L2 Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.277 {
iface MIXER
name 'Mono MIX OUTVOL R Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.278 {
iface MIXER
name 'Mono MIX OUTVOL L Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.279 {
iface MIXER
name 'Mono MIX BST1 Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
}

i got that from Youling's post but i believe i had another one that i copied. In terms of Youling's post i got the jack-detect.sh and put it in /etc but it doesn't get automatically detected. In ubuntu i have to manually switch it using the built in sound tool that comes by default so when i plug in hdmi cable i have to then go and select the mono output and it will then play from my flat screen speakers and when i plug in headphones i have to manually select headphones stereo to get it to play from headphones. So my question for youling is where can i put the jack-detect.sh file

youling 257

unread,
Jan 20, 2018, 10:44:48 PM1/20/18
to Android-x86
copy my bytrt5640.state to /system/etc/alsa/,replace the 65KB bytcrrt5640.state,the 65 KB is long ago cwhuang found for BYT T100,ours device is BYTCR.
the /system/etc/Jack-detect.sh won't auto boot,it's not boot script. i said,sh /sdcard/Jack-detect.sh,keep running.
if you not understand my simple English,i am sorry.

在 2018年1月18日星期四 UTC+8下午12:50:54,Nikolai Cassanova写道:

youling 257

unread,
Jan 20, 2018, 10:49:56 PM1/20/18
to Android-x86
“i got that from Youling's post but i believe i had another one that i copied”
what your means?

在 2018年1月18日星期四 UTC+8下午12:50:54,Nikolai Cassanova写道:
I did try to edit it via finding the line and adding the edits to init.sh and when I saved and rebooted the screen came up discombobulated to the point that I couldn't see anything. I even plugged it into my flat screen and it still was discombobulated. Which I can't understand because the only line which was missing when I compared what you to told me to add was the one with + ta ... (Sorry on cell phone and cant remember the whole code for that line) but I did a copy and paste of that one line and I don't understand how that line affected the screen output where I wasn't able to see the screen at all. I mean it came up and loaded but the screen just showed scrambled lines and colors and once I changed it back meaning editing it out, I got the device to boot normally with the screen showing up perfect. So I thought that was weird because the line you told me to change represents a Bluetooth fix and nothing to do with the screen.

Nikolai Cassanova

unread,
Jan 20, 2018, 10:55:04 PM1/20/18
to andro...@googlegroups.com
Hey so i think i have both the old and the newest one of the sound files and i had just switched to the older sound file because i noticed a post of yours in android x86 explaining to someone how to get it to work. but i am now trying to look for the latest sound file that you just mentioned so i can change it. 

Also for the jack.detect file, i will try and place it in the location on my internal micro sd card and just run: sh /location-of-file/jack-detech.sh and see if it works. thanks for all your help so far.

--
You received this message because you are subscribed to a topic in the Google Groups "Android-x86" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/android-x86/L8Ga_bpA6BQ/unsubscribe.
To unsubscribe from this group and all its topics, send an email to android-x86+unsubscribe@googlegroups.com.

youling 257

unread,
Jan 20, 2018, 11:07:56 PM1/20/18
to Android-x86
alsaucm -c bytcr-rt5640 set _verb HiFi set _enadev Headphones
alsaucm -c bytcr-rt5640 set _verb HiFi set _enadev Speaker
alsaucm -c bytcr-rt5640 set _verb HiFi set _enadev IN3-InternalMics
alsaucm -c bytcr-rt5640 set _verb HiFi set _enadev HeadsetMic
alsaucm -c bytcr-rt5640 set _verb HiFi set _enadev IN1-InternalMics
alsactl store bytcrrt5640 -f bytcrrt5640.state

your device is in1 internal mic.

在 2018年1月21日星期日 UTC+8上午11:55:04,Nikolai Cassanova写道:
To unsubscribe from this group and all its topics, send an email to android-x86...@googlegroups.com.
bytcr-rt5640.zip

Nikolai Cassanova

unread,
Jan 20, 2018, 11:15:55 PM1/20/18
to andro...@googlegroups.com
hey thanks for the zip file and i downloaded it. but my quesiton is since this is: android x86 OS, i thought i had to make changes to asound.conf file? i didn't know it was like ubuntu where i could just put it in etc/alsa.  

So my question, is android x86 reading the sound driver from the alsa folder or from the asound.conf file? which one does it look at to know how to allow sound to work properly?


To unsubscribe from this group and all its topics, send an email to android-x86+unsubscribe@googlegroups.com.

youling 257

unread,
Jan 20, 2018, 11:16:05 PM1/20/18
to Android-x86
same with ThinkPad 10/miix 2 10,machine driver CHT-BSW-rt5672,codec driver rt5670
ThinkPad 8/10/miix 2 10/surface 3,ACPI id 10EC5640

在 2018年1月17日星期三 UTC+8下午2:53:00,Christian写道:

youling 257

unread,
Jan 20, 2018, 11:20:22 PM1/20/18
to Android-x86
i give you zip and command for Ubuntu,copy to Ubuntu /usr/share/ucm/alsa
then sudo these command,get best bytcrrt5640.state for your t100taf.

在 2018年1月21日星期日 UTC+8下午12:15:55,Nikolai Cassanova写道:

Nikolai Cassanova

unread,
Jan 20, 2018, 11:21:23 PM1/20/18
to andro...@googlegroups.com
hey youling,

I just checked the conf file from zip file and there was nothing in it? check the printscreen i just took when i tried to open it it only had a few lines of code.

is that how its suppose to be? is that correct? or did ezfile explorer not unzip correctly?

To unsubscribe from this group and all its topics, send an email to android-x86+unsubscribe@googlegroups.com.
Screenshot_20180120-231719.png

Nikolai Cassanova

unread,
Jan 20, 2018, 11:25:52 PM1/20/18
to andro...@googlegroups.com
okay i understand now youling,

but the thing is i needed it for android x86 OS but its okay i will do that on my ubuntu partition. but for android i used your same file and copied it to asound.conf and it got sound working for me. So thanks because without that i wouldn't have gotten sound working in android. right now i am trying to get the auto detect jack to work with android. meaning when i plug in my headphones, android will pick up that i want to now play sound to headphones and not from speakers. so thats my goal for my android x86 partition.  i will still try to run you jack-detect.sh from the android terminal and see if it works by running the command sh /location-of-file/jack-detect.sh and seeing if it works.

To unsubscribe from this group and all its topics, send an email to android-x86+unsubscribe@googlegroups.com.
Message has been deleted

youling 257

unread,
Jan 20, 2018, 11:34:00 PM1/20/18
to Android-x86
Android support asound.conf and alsa.conf
but /etc/alsa/xxxx.state,just because Androidx86 init.sh

 for c in $(grep '\[.*\]' /proc/asound/cards | awk '{print $1}'); do
  f=/system/etc/alsa/$(cat /proc/asound/card$c/id).state
  if [ -e $f ]; then
   alsa_ctl -f $f restore $c

在 2018年1月21日星期日 UTC+8下午12:25:52,Nikolai Cassanova写道:

youling 257

unread,
Jan 20, 2018, 11:38:06 PM1/20/18
to Android-x86
the bytcr_rt5640.c

  .callback = byt_rt5640_quirk_cb,
  .matches = {
   DMI_EXACT_MATCH(DMI_SYS_VENDOR, "ASUSTeK COMPUTER INC."),
   DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "T100TAF"),
  },
  .driver_data = (void *)(BYT_RT5640_IN1_MAP |
     BYT_RT5640_MONO_SPEAKER |
     BYT_RT5640_DIFF_MIC |
     BYT_RT5640_SSP0_AIF2 |
     BYT_RT5640_MCLK_EN)

you need 
alsaucm -c bytcr-rt5640 set _verb HiFi set _enadev MonoSpeaker
alsaucm -c bytcr-rt5640 set _verb HiFi set _enadev DigitalMics

Nikolai Cassanova

unread,
Jan 25, 2018, 12:04:04 AM1/25/18
to andro...@googlegroups.com
Hey so your jack-detect.sh works in android. Thanks a lot for all the help.

Oh, not sure if you understand the patch format correctly. 
Indeed it just changes T10*TA -> T10*TA* 

Or, you can use this command to change it: 

sed -i 's/\(\tT10.TA\)|/\1*|/' /etc/init.sh 

Now in terms of Bluetooth I did run the above command and now it seems like my device doesn't go into sleep state. But I still can't get Bluetooth to work. I tried getting apps like esfile explorer to turn it on but it never does. Here is my current init.sh output:

#
# Copyright (C) 2013-2015 The Android-x86 Open Source Project
#
# License: GNU Public License v2 or later
#

function set_property()
{
setprop "$1" "$2"
[ -n "$DEBUG" ] && echo "$1"="$2" >> /dev/x86.prop
}

function init_misc()
{
# device information
setprop ro.product.manufacturer "$(cat $DMIPATH/sys_vendor)"
setprop ro.product.model "$PRODUCT"

# a hack for USB modem
lsusb | grep 1a8d:1000 && eject

# in case no cpu governor driver autoloads
[ -d /sys/devices/system/cpu/cpu0/cpufreq ] || modprobe acpi-cpufreq

# enable sdcardfs if /data is not mounted on tmpfs or 9p
mount | grep /data\ | grep -qE 'tmpfs|9p'
[ $? -ne 0 ] && modprobe sdcardfs
}

function init_hal_audio()
{
case "$PRODUCT" in
VirtualBox*|Bochs*)
[ -d /proc/asound/card0 ] || modprobe snd-sb16 isapnp=0 irq=5
;;
*)
;;
esac

if grep -qi "IntelHDMI" /proc/asound/card0/id; then
[ -d /proc/asound/card1 ] || set_property ro.hardware.audio.primary hdmi
fi
}

function init_hal_bluetooth()
{
for r in /sys/class/rfkill/*; do
type=$(cat $r/type)
[ "$type" = "wlan" -o "$type" = "bluetooth" ] && echo 1 > $r/state
done

case "$PRODUCT" in
T10*TA*|HP*Omni*)
BTUART_PORT=/dev/ttyS1
set_property hal.bluetooth.uart.proto bcm
[ -z "$(getprop sleep.state)" ] && set_property sleep.state none
;;
MacBookPro8*)
rmmod b43
modprobe b43 btcoex=0
modprobe btusb
;;
# FIXME
# Fix MacBook 2013-2015 (Air6/7&Pro11/12) BCM4360 ssb&wl conflict.
MacBookPro11* | MacBookPro12* | MacBookAir6* | MacBookAir7*)
rmmod b43
rmmod ssb
rmmod bcma
rmmod wl
modprobe wl
modprobe btusb
;;
*)
for bt in $(busybox lsusb -v | awk ' /Class:.E0/ { print $9 } '); do
chown 1002.1002 $bt && chmod 660 $bt
done
;;
esac

if [ -n "$BTUART_PORT" ]; then
set_property hal.bluetooth.uart $BTUART_PORT
chown bluetooth.bluetooth $BTUART_PORT
start btattach
fi

# rtl8723bs bluetooth
if dmesg -t | grep -qE '8723bs.*BT'; then
TTYSTRING=`dmesg -t | grep -E 'tty.*MMIO' | awk '{print $2}' | head -1`
if [ -n "$TTYSTRING" ]; then
echo "RTL8723BS BT uses $TTYSTRING for Bluetooth."
ln -sf $TTYSTRING /dev/rtk_h5
start rtk_hciattach
fi
fi
}

function init_hal_camera()
{
return
}

function init_hal_gps()
{
# TODO
return
}

function set_drm_mode()
{
case "$PRODUCT" in
ET1602*)
drm_mode=1366x768
;;
VMware*)
[ -n "$video" ] && drm_mode=$video
;;
*)
;;
esac

[ -n "$drm_mode" ] && set_property debug.drm.mode.force $drm_mode
}

function init_uvesafb()
{
case "$PRODUCT" in
ET2002*)
UVESA_MODE=${UVESA_MODE:-1600x900}
;;
*)
;;
esac

modprobe uvesafb mode_option=${UVESA_MODE:-1024x768}-32 ${UVESA_OPTION:-mtrr=3 scroll=redraw}
}

function init_hal_gralloc()
{
case "$(cat /proc/fb | head -1)" in
*virtiodrmfb)
if [ "$HWACCEL" != "0" ]; then
set_property ro.hardware.hwcomposer drm
set_property ro.hardware.gralloc gbm
fi
;;
0*inteldrmfb|0*radeondrmfb|0*nouveaufb|0*svgadrmfb|0*amdgpudrmfb)
if [ "$HWACCEL" != "0" ]; then
set_property ro.hardware.gralloc drm
set_drm_mode
fi
;;
"")
init_uvesafb
;&
0*)
;;
esac

[ -n "$DEBUG" ] && set_property debug.egl.trace error
}

function init_hal_hwcomposer()
{
# TODO
return
}

function init_hal_lights()
{
chown 1000.1000 /sys/class/backlight/*/brightness
}

function init_hal_power()
{
for p in /sys/class/rtc/*; do
echo disabled > $p/device/power/wakeup
done

# TODO
case "$PRODUCT" in
*)
;;
esac
}

function init_hal_sensors()
{
# if we have sensor module for our hardware, use it
ro_hardware=$(getprop ro.hardware)
[ -f /system/lib/hw/sensors.${ro_hardware}.so ] && return 0

local hal_sensors=kbd
local has_sensors=true
case "$(cat $DMIPATH/uevent)" in
*Lucid-MWE*)
set_property ro.ignore_atkbd 1
hal_sensors=hdaps
;;
*ICONIA*W5*)
hal_sensors=w500
;;
*S10-3t*)
hal_sensors=s103t
;;
*Inagua*)
#setkeycodes 0x62 29
#setkeycodes 0x74 56
set_property ro.ignore_atkbd 1
set_property hal.sensors.kbd.type 2
;;
*TEGA*|*2010:svnIntel:*)
set_property ro.ignore_atkbd 1
set_property hal.sensors.kbd.type 1
io_switch 0x0 0x1
setkeycodes 0x6d 125
;;
*DLI*)
set_property ro.ignore_atkbd 1
set_property hal.sensors.kbd.type 1
setkeycodes 0x64 1
setkeycodes 0x65 172
setkeycodes 0x66 120
setkeycodes 0x67 116
setkeycodes 0x68 114
setkeycodes 0x69 115
setkeycodes 0x6c 114
setkeycodes 0x6d 115
;;
*tx2*)
setkeycodes 0xb1 138
setkeycodes 0x8a 152
set_property hal.sensors.kbd.type 6
set_property poweroff.doubleclick 0
set_property qemu.hw.mainkeys 1
;;
*MS-N0E1*)
set_property ro.ignore_atkbd 1
set_property poweroff.doubleclick 0
setkeycodes 0xa5 125
setkeycodes 0xa7 1
setkeycodes 0xe3 142
;;
*Aspire1*25*)
modprobe lis3lv02d_i2c
echo -n "enabled" > /sys/class/thermal/thermal_zone0/mode
;;
*ThinkPad*Tablet*)
modprobe hdaps
hal_sensors=hdaps
;;
*i7Stylus*)
set_property hal.sensors.iio.accel.matrix 1,0,0,0,-1,0,0,0,-1
;;
*ST70416-6*)
set_property hal.sensors.iio.accel.matrix 0,-1,0,-1,0,0,0,0,-1
;;
*ONDATablet*)
set_property hal.sensors.iio.accel.matrix 0,1,0,1,0,0,0,0,-1
;;
*)
has_sensors=false
;;
esac

# has iio sensor-hub?
if [ -n "`ls /sys/bus/iio/devices/iio:device* 2> /dev/null`" ]; then
busybox chown -R 1000.1000 /sys/bus/iio/devices/iio:device*/
lsmod | grep -q hid_sensor_accel_3d && hal_sensors=hsb || hal_sensors=iio
elif lsmod | grep -q lis3lv02d_i2c; then
hal_sensors=hdaps
fi

set_property ro.hardware.sensors $hal_sensors
[ "$hal_sensors" != "kbd" ] && has_sensors=true
set_property config.override_forced_orient $has_sensors
}

function create_pointercal()
{
if [ ! -e /data/misc/tscal/pointercal ]; then
mkdir -p /data/misc/tscal
touch /data/misc/tscal/pointercal
chown 1000.1000 /data/misc/tscal /data/misc/tscal/*
chmod 775 /data/misc/tscal
chmod 664 /data/misc/tscal/pointercal
fi
}

function init_tscal()
{
case "$PRODUCT" in
ST70416-6*)
modprobe gslx680_ts_acpi
;&
T91|T101|ET2002|74499FU|945GSE-ITE8712|CF-19[CDYFGKLP]*)
create_pointercal
return
;;
*)
;;
esac

for usbts in $(lsusb | awk '{ print $6 }'); do
case "$usbts" in
0596:0001|0eef:0001)
create_pointercal
return
;;
*)
;;
esac
done
}

function init_ril()
{
case "$(cat $DMIPATH/uevent)" in
*TEGA*|*2010:svnIntel:*|*Lucid-MWE*)
set_property rild.libpath /system/lib/libhuaweigeneric-ril.so
set_property rild.libargs "-d /dev/ttyUSB2 -v /dev/ttyUSB1"
set_property ro.radio.noril no
;;
*)
set_property ro.radio.noril yes
;;
esac
}

function init_cpu_governor()
{
governor=$(getprop cpu.governor)

[ $governor ] && {
for cpu in $(ls -d /sys/devices/system/cpu/cpu?); do
echo $governor > $cpu/cpufreq/scaling_governor || return 1
done
}
}

function do_init()
{
init_misc
init_hal_audio
init_hal_bluetooth
init_hal_camera
init_hal_gps
init_hal_gralloc
init_hal_hwcomposer
init_hal_lights
init_hal_power
init_hal_sensors
init_tscal
init_ril
post_init
}

function do_netconsole()
{
modprobe netconsole netconsole="@/,@$(getprop dhcp.eth0.gateway)/"
}

function do_bootcomplete()
{
init_cpu_governor

[ -z "$(getprop persist.sys.root_access)" ] && setprop persist.sys.root_access 3

lsmod | grep -Ehq "brcmfmac|rtl8723be" && setprop wlan.no-unload-driver 1

case "$PRODUCT" in
1866???|1867???|1869???) # ThinkPad X41 Tablet
start tablet-mode
start wacom-input
setkeycodes 0x6d 115
setkeycodes 0x6e 114
setkeycodes 0x69 28
setkeycodes 0x6b 158
setkeycodes 0x68 172
setkeycodes 0x6c 127
setkeycodes 0x67 217
;;
6363???|6364???|6366???) # ThinkPad X60 Tablet
;&
7762???|7763???|7767???) # ThinkPad X61 Tablet
start tablet-mode
start wacom-input
setkeycodes 0x6d 115
setkeycodes 0x6e 114
setkeycodes 0x69 28
setkeycodes 0x6b 158
setkeycodes 0x68 172
setkeycodes 0x6c 127
setkeycodes 0x67 217
;;
7448???|7449???|7450???|7453???) # ThinkPad X200 Tablet
start tablet-mode
start wacom-input
setkeycodes 0xe012 158
setkeycodes 0x66 172
setkeycodes 0x6b 127
;;
*)
;;
esac

# [ -d /proc/asound/card0 ] || modprobe snd-dummy
for c in $(grep '\[.*\]' /proc/asound/cards | awk '{print $1}'); do
f=/system/etc/alsa/$(cat /proc/asound/card$c/id).state
if [ -e $f ]; then
alsa_ctl -f $f restore $c
else
alsa_ctl init $c
alsa_amixer -c $c set Master on
alsa_amixer -c $c set Master 100%
alsa_amixer -c $c set Headphone on
alsa_amixer -c $c set Headphone 100%
alsa_amixer -c $c set Speaker 100%
alsa_amixer -c $c set Capture 100%
alsa_amixer -c $c set Capture cap
alsa_amixer -c $c set PCM 100 unmute
alsa_amixer -c $c set SPO unmute
alsa_amixer -c $c set IEC958 on
alsa_amixer -c $c set 'Mic Boost' 3
alsa_amixer -c $c set 'Internal Mic Boost' 3
fi
done

post_bootcomplete
}

PATH=/sbin:/system/bin:/system/xbin

DMIPATH=/sys/class/dmi/id
BOARD=$(cat $DMIPATH/board_name)
PRODUCT=$(cat $DMIPATH/product_name)

# import cmdline variables
for c in `cat /proc/cmdline`; do
case $c in
BOOT_IMAGE=*|iso-scan/*|*.*=*)
;;
*=*)
eval $c
if [ -z "$1" ]; then
case $c in
DEBUG=*)
[ -n "$DEBUG" ] && set_property debug.logcat 1
;;
esac
fi
;;
esac
done

[ -n "$DEBUG" ] && set -x || exec &> /dev/null

# import the vendor specific script
hw_sh=/vendor/etc/init.sh
[ -e $hw_sh ] && source $hw_sh

case "$1" in
netconsole)
[ -n "$DEBUG" ] && do_netconsole
;;
bootcomplete)
do_bootcomplete
;;
init|"")
do_init
;;
esac

return 0


I want to know if I could manually tell android to run Bluetooth and turn off Bluetooth from android terminal and I believe that some one said I would have to make a change in "tty" to get Bluetooth to work. What is tty?



--
You received this message because you are subscribed to a topic in the Google Groups "Android-x86" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/android-x86/L8Ga_bpA6BQ/unsubscribe.
To unsubscribe from this group and all its topics, send an email to android-x86+unsubscribe@googlegroups.com.

Chih-Wei Huang

unread,
Jan 25, 2018, 3:19:55 AM1/25/18
to Android-x86
2018-01-25 13:03 GMT+08:00 Nikolai Cassanova <ncassa...@gmail.com>:
>
> I want to know if I could manually tell android to run Bluetooth and turn
> off Bluetooth from android terminal and I believe that some one said I would
> have to make a change in "tty" to get Bluetooth to work. What is tty?

What's your Bluetooth device exactly?

On T100TA it's a serial port Bluetooth on /dev/ttyS1.
We use btattach to attach it to the Bluetooth stack
as a transport interface (hci0).
You could see it via the hciconfig command.
Maybe your port is different. You need to figure it out yourself.
(dmesg is helpful)

Does Bluetooth work in other linux distros like Ubuntu?
Check it by hciconfig.

Jordan Anderson

unread,
Jan 26, 2018, 5:16:44 PM1/26/18
to andro...@googlegroups.com
Why is not there a coordinated image for Intel Atom Cherry Trail
tablets like my RCA Cambio?<div
id="DAB4FAD8-2DD7-40BB-A1B8-4E2AA1F9FDF2"><br />
<table style="border-top: 1px solid #D3D4DE;">
<tr>
<td style="width: 55px; padding-top: 13px;"><a
href="https://www.avast.com/sig-email?utm_medium=email&utm_source=link&utm_campaign=sig-email&utm_content=webmail&utm_term=icon"
target="_blank"><img
src="https://ipmcdn.avast.com/images/icons/icon-envelope-tick-round-orange-animated-no-repeat-v1.gif"
alt="" width="46" height="29" style="width: 46px; height: 29px;"
/></a></td>
<td style="width: 470px; padding-top: 12px; color: #41424e;
font-size: 13px; font-family: Arial, Helvetica, sans-serif;
line-height: 18px;">Virus-free. <a
href="https://www.avast.com/sig-email?utm_medium=email&utm_source=link&utm_campaign=sig-email&utm_content=webmail&utm_term=link"
target="_blank" style="color: #4453ea;">www.avast.com</a>
</td>
</tr>
</table><a href="#DAB4FAD8-2DD7-40BB-A1B8-4E2AA1F9FDF2" width="1"
height="1"></a></div>

> --
> You received this message because you are subscribed to a topic in the
> Google Groups "Android-x86" group.
> To unsubscribe from this topic, visit
> https://groups.google.com/d/topic/android-x86/L8Ga_bpA6BQ/unsubscribe.
> To unsubscribe from this group and all its topics, send an email to
> android-x86...@googlegroups.com.

Nikolai Cassanova

unread,
Jan 27, 2018, 6:59:15 PM1/27/18
to andro...@googlegroups.com
my bluetooth device is: BCM4324b3 and from this launchpad site https://launchpad.net/asust100-ubuntu/+milestone/bluetooth-t100ta : it says i should link it to a bluez tar file but android doesn't use bluez.  I did try to run the btattach /dev/ttyS1 and it said there was no driver located in ttyS1. So i am wondering if its in another ttyS file.  According to the lauchpad website it might be located in ttyS4.

Also my other question is how did you and your team get our devices to be able to run for 9 to 11 hours as i get battery life in android 7.1.2 rc2 than i do with ubuntu 16.04.  So i want to know what your team and you did different because i feel like you guys are getting the Kernel to recognize the full capacity of the battery even without me having access to sleepstate = sleep and resume working properly.  which i think would even give more hours and probably allow me to have a battery life of like 15 hours or more.

youling 257

unread,
Jan 27, 2018, 10:58:44 PM1/27/18
to Android-x86
if you can “echo mem > /sys/power/state” suspend 12 hours on Ubuntu 16.04,battery remain 50%

在 2018年1月28日星期日 UTC+8上午7:59:15,Nikolai Cassanova写道:
To unsubscribe from this group and all its topics, send an email to android-x86...@googlegroups.com.

Chih-Wei Huang

unread,
Jan 28, 2018, 9:41:06 PM1/28/18
to Android-x86
2018-01-28 7:59 GMT+08:00 Nikolai Cassanova <ncassa...@gmail.com>:
> my bluetooth device is: BCM4324b3 and from this launchpad site
> https://launchpad.net/asust100-ubuntu/+milestone/bluetooth-t100ta : it says
> i should link it to a bluez tar file but android doesn't use bluez. I did
> try to run the btattach /dev/ttyS1 and it said there was no driver located

btattach -B /dev/ttyS1 &

or

setprop hal.bluetooth.uart /dev/ttyS1
start btattach

> in ttyS1. So i am wondering if its in another ttyS file. According to the
> lauchpad website it might be located in ttyS4.

Then have you tried?

> Also my other question is how did you and your team get our devices to be
> able to run for 9 to 11 hours as i get battery life in android 7.1.2 rc2
> than i do with ubuntu 16.04. So i want to know what your team and you did
> different because i feel like you guys are getting the Kernel to recognize
> the full capacity of the battery even without me having access to sleepstate
> = sleep and resume working properly. which i think would even give more
> hours and probably allow me to have a battery life of like 15 hours or more.

I didn't get your point exactly.
Did you mean the battery life of android is longer than ubuntu?
If yes, it just lucky.
We don't have any tuning of the battery life
except the standard android power management.

Nikolai Cassanova

unread,
Feb 3, 2018, 10:53:51 PM2/3/18
to andro...@googlegroups.com
yeah thats what i meant, the battery on android last so much longer than compared to when i am signed into ubuntu partition on the asus t100.  I am so amazed and must just repeat thanks for the amazing work because i litterally am getting +9 hours while doing battery saver.

Okay in other news i did try the command: btattach -B /dev/ttyS1 & and i get this result from terminal: 

x86_64:/ $ su
x86_64:/ # btattach -B /dev/ttyS1 &
[1] 9215
x86_64:/ # Attaching Primary controller to /dev/ttyS1
Switched line discipline from 15 to 15
Failed to set flags: Device or resource busy
No controller attached

and the same thing when i try btattach -B /dev/ttyS4 & it gives me the same result above. I also tried: setprop hal.bluetooth.uart /dev/ttyS1 and then: start btattach and the result is nothing.  When i run those two commands i get no change with bluetooth.

So i figured that i should run dmesg /dev/ttyS1 to see if bluetooth was there and this is the result:

x86_64:/ # dmesg /dev/ttyS1
[    0.000000] Linux version 4.9.54-android-x86_64-gfb63269e5ada (cwhuang@android-x86) (gcc version 4.6 20120106 (prerelease) (GCC) ) #1 SMP PREEMPT Tue Oct 10 19:35:35 CST 2017
[    0.000000] Command line: BOOT_IMAGE=/android-7.1-rc2/kernel quiet SDCARD=mmcblk2p1 splash intel_idle.max_cstate=1 root=/dev/ram0 androidboot.selinux=permissive buildvariant=userdebug
[    0.000000] KERNEL supported cpus:
[    0.000000]   Intel GenuineIntel
[    0.000000]   AMD AuthenticAMD
[    0.000000]   Centaur CentaurHauls
[    0.000000] x86/fpu: Legacy x87 FPU detected.
[    0.000000] x86/fpu: Using 'eager' FPU context switches.
[    0.000000] e820: BIOS-provided physical RAM map:
[    0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000008efff] usable
[    0.000000] BIOS-e820: [mem 0x000000000008f000-0x000000000008ffff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x0000000000090000-0x000000000009dfff] usable
[    0.000000] BIOS-e820: [mem 0x000000000009e000-0x000000000009ffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000001fffffff] usable
[    0.000000] BIOS-e820: [mem 0x0000000020000000-0x00000000201fffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000020200000-0x000000007b812fff] usable
[    0.000000] BIOS-e820: [mem 0x000000007b813000-0x000000007b842fff] reserved
[    0.000000] BIOS-e820: [mem 0x000000007b843000-0x000000007b876fff] ACPI data
[    0.000000] BIOS-e820: [mem 0x000000007b877000-0x000000007bf81fff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x000000007bf82000-0x000000007c86bfff] reserved
[    0.000000] BIOS-e820: [mem 0x000000007c86c000-0x000000007c97bfff] type 20
[    0.000000] BIOS-e820: [mem 0x000000007c97c000-0x000000007c983fff] usable
[    0.000000] BIOS-e820: [mem 0x000000007c984000-0x000000007c984fff] reserved
[    0.000000] BIOS-e820: [mem 0x000000007c985000-0x000000007cbfffff] usable
[    0.000000] BIOS-e820: [mem 0x00000000e00f8000-0x00000000e00f8fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fed01000-0x00000000fed01fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fed08000-0x00000000fed08fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000ffb00000-0x00000000ffffffff] reserved
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] efi: EFI v2.31 by American Megatrends
[    0.000000] efi:  ACPI=0x7b876000  ACPI 2.0=0x7b876014  ESRT=0x7c984190  SMBIOS=0x7c984010
[    0.000000] SMBIOS 2.7 present.
[    0.000000] DMI: ASUSTeK COMPUTER INC. T100TAF/T100TAF, BIOS T100TAF.300 07/14/2016
[    0.000000] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[    0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
[    0.000000] e820: last_pfn = 0x7cc00 max_arch_pfn = 0x400000000
[    0.000000] MTRR default type: uncachable
[    0.000000] MTRR fixed ranges enabled:
[    0.000000]   00000-9FFFF write-back
[    0.000000]   A0000-FFFFF write-protect
[    0.000000] MTRR variable ranges enabled:
[    0.000000]   0 base 000000000 mask F80000000 write-back
[    0.000000]   1 base 07E000000 mask FFE000000 uncachable
[    0.000000]   2 base 07D000000 mask FFF000000 uncachable
[    0.000000]   3 base 07CE00000 mask FFFE00000 uncachable
[    0.000000]   4 base 07CE00000 mask FFFE00000 uncachable
[    0.000000]   5 base 07CD00000 mask FFFF00000 uncachable
[    0.000000]   6 disabled
[    0.000000]   7 disabled
[    0.000000] x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WC  UC- WT
[    0.000000] esrt: Reserving ESRT space from 0x000000007c984190 to 0x000000007c9841c8.
[    0.000000] Base memory trampoline at [ffff89d740098000] 98000 size 24576
[    0.000000] BRK [0x39109000, 0x39109fff] PGTABLE
[    0.000000] BRK [0x3910a000, 0x3910afff] PGTABLE
[    0.000000] BRK [0x3910b000, 0x3910bfff] PGTABLE
[    0.000000] BRK [0x3910c000, 0x3910cfff] PGTABLE
[    0.000000] BRK [0x3910d000, 0x3910dfff] PGTABLE
[    0.000000] BRK [0x3910e000, 0x3910efff] PGTABLE
[    0.000000] BRK [0x3910f000, 0x3910ffff] PGTABLE
[    0.000000] RAMDISK: [mem 0x37d57000-0x37ea2fff]
[    0.000000] ACPI: Early table checksum verification disabled
[    0.000000] ACPI: RSDP 0x000000007B876014 000024 (v02 _ASUS_)
[    0.000000] ACPI: XSDT 0x000000007B8750F8 0000D4 (v01 _ASUS_ Notebook 00000003 MSFT 0100000D)
[    0.000000] ACPI: FACP 0x000000007B871000 00010C (v05 _ASUS_ Notebook 00000003 AMI  0100000D)
[    0.000000] ACPI: DSDT 0x000000007B85A000 0125BE (v02 _ASUS_ Notebook 00000003 AMI  0100000D)
[    0.000000] ACPI: TCPA 0x000000007B874000 000032 (v02                 00000000      00000000)
[    0.000000] ACPI: UEFI 0x000000007BF35000 000042 (v01 _ASUS_ Notebook 00000000      00000000)
[    0.000000] ACPI: OEM0 0x000000007B873000 000084 (v05 _ASUS_ BATTERY  00000003 AMI  0100000D)
[    0.000000] ACPI: DBG2 0x000000007B872000 000072 (v00 _ASUS_ INTLDBG2 00000003 AMI  0100000D)
[    0.000000] ACPI: HPET 0x000000007B870000 000038 (v01 _ASUS_ Notebook 00000003 AMI  0100000D)
[    0.000000] ACPI: LPIT 0x000000007B86F000 000104 (v01 _ASUS_ Notebook 00000003 AMI  0100000D)
[    0.000000] ACPI: APIC 0x000000007B86E000 00006C (v03 _ASUS_ Notebook 00000003 AMI  0100000D)
[    0.000000] ACPI: MCFG 0x000000007B86D000 00003C (v01 _ASUS_ Notebook 00000003 AMI  0100000D)
[    0.000000] ACPI: SSDT 0x000000007B859000 000603 (v01 _ASUS_ CpuDptf  00000003 AMI  0100000D)
[    0.000000] ACPI: SSDT 0x000000007B857000 001BE2 (v01 _ASUS_ DptfTab  00000003 AMI  0100000D)
[    0.000000] ACPI: SSDT 0x000000007B856000 000058 (v01 _ASUS_ LowPwrM  00000003 AMI  0100000D)
[    0.000000] ACPI: SSDT 0x000000007B855000 0000FF (v01 _ASUS_ SoCDptf  00000003 AMI  0100000D)
[    0.000000] ACPI: FPDT 0x000000007B854000 000044 (v01 _ASUS_ Notebook 01072009 AMI  00010013)
[    0.000000] ACPI: SSDT 0x000000007B853000 000763 (v01 PmRef  CpuPm    00003000 INTL 20061109)
[    0.000000] ACPI: SSDT 0x000000007B852000 000290 (v01 PmRef  Cpu0Tst  00003000 INTL 20061109)
[    0.000000] ACPI: SSDT 0x000000007B851000 00017A (v01 PmRef  ApTst    00003000 INTL 20061109)
[    0.000000] ACPI: SSDT 0x000000007B850000 000427 (v01 Intel_ Tpm2Tabl 00001000 INTL 20061109)
[    0.000000] ACPI: TPM2 0x000000007B84F000 000034 (v03                 00000000      00000000)
[    0.000000] ACPI: BGRT 0x000000007B84E000 000038 (v01 _ASUS_ Notebook 01072009 AMI  00010013)
[    0.000000] ACPI: CSRT 0x000000007B84D000 00014C (v00 _ASUS_ Notebook 00000005 INTL 20120624)
[    0.000000] ACPI: MSDM 0x000000007B841F90 000055 (v03 _ASUS_ Notebook 00000000 ASUS 00000001)
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] Zone ranges:
[    0.000000]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
[    0.000000]   DMA32    [mem 0x0000000001000000-0x000000007cbfffff]
[    0.000000]   Normal   empty
[    0.000000] Movable zone start for each node
[    0.000000] Early memory node ranges
[    0.000000]   node   0: [mem 0x0000000000001000-0x000000000008efff]
[    0.000000]   node   0: [mem 0x0000000000090000-0x000000000009dfff]
[    0.000000]   node   0: [mem 0x0000000000100000-0x000000001fffffff]
[    0.000000]   node   0: [mem 0x0000000020200000-0x000000007b812fff]
[    0.000000]   node   0: [mem 0x000000007c97c000-0x000000007c983fff]
[    0.000000]   node   0: [mem 0x000000007c985000-0x000000007cbfffff]
[    0.000000] Initmem setup node 0 [mem 0x0000000000001000-0x000000007cbfffff]
[    0.000000] On node 0 totalpages: 505906
[    0.000000]   DMA zone: 56 pages used for memmap
[    0.000000]   DMA zone: 22 pages reserved
[    0.000000]   DMA zone: 3996 pages, LIFO batch:0
[    0.000000]   DMA32 zone: 6930 pages used for memmap
[    0.000000]   DMA32 zone: 501910 pages, LIFO batch:31
[    0.000000] x86/hpet: Will disable the HPET for this platform because it's not reliable
[    0.000000] Reserving Intel graphics memory at 0x000000007cf00000-0x000000007eefffff
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] IOAPIC[0]: apic_id 8, version 32, address 0xfec00000, GSI 0-86
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[    0.000000] Using ACPI (MADT) for SMP configuration information
[    0.000000] ACPI: HPET id: 0x8086a201 base: 0xfed00000
[    0.000000] smpboot: Allowing 4 CPUs, 0 hotplug CPUs
[    0.000000] e820: [mem 0x7ef00000-0xe00f7fff] available for PCI devices
[    0.000000] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1910969940391419 ns
[    0.000000] setup_percpu: NR_CPUS:8 nr_cpumask_bits:8 nr_cpu_ids:4 nr_node_ids:1
[    0.000000] percpu: Embedded 34 pages/cpu @ffff89d7bb400000 s101976 r8192 d29096 u524288
[    0.000000] pcpu-alloc: s101976 r8192 d29096 u524288 alloc=1*2097152
[    0.000000] pcpu-alloc: [0] 0 1 2 3
[    0.000000] Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 498898
[    0.000000] Kernel command line: BOOT_IMAGE=/android-7.1-rc2/kernel quiet SDCARD=mmcblk2p1 splash intel_idle.max_cstate=1 root=/dev/ram0 androidboot.selinux=permissive buildvariant=userdebug
[    0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
[    0.000000] Dentry cache hash table entries: 262144 (order: 9, 2097152 bytes)
[    0.000000] Inode-cache hash table entries: 131072 (order: 8, 1048576 bytes)
[    0.000000] Memory: 1925812K/2023624K available (8344K kernel code, 1090K rwdata, 3568K rodata, 1264K init, 716K bss, 97812K reserved, 0K cma-reserved)
[    0.000000] Preemptible hierarchical RCU implementation.
[    0.000000]  Build-time adjustment of leaf fanout to 64.
[    0.000000]  RCU restricting CPUs from NR_CPUS=8 to nr_cpu_ids=4.
[    0.000000] RCU: Adjusting geometry for rcu_fanout_leaf=64, nr_cpu_ids=4
[    0.000000] NR_IRQS:4352 nr_irqs:1024 0
[    0.000000] Console: colour dummy device 80x25
[    0.000000] console [tty0] enabled
[    0.000000] tsc: Detected 1332.800 MHz processor
[    0.000006] Calibrating delay loop (skipped), value calculated using timer frequency.. 2665.60 BogoMIPS (lpj=1332800)
[    0.000011] pid_max: default: 32768 minimum: 301
[    0.000033] ACPI: Core revision 20160831
[    0.038706] ACPI: 9 ACPI AML tables successfully acquired and loaded
[    0.040027] Security Framework initialized
[    0.040031] SELinux:  Initializing.
[    0.040069] SELinux:  Starting in permissive mode
[    0.040104] Mount-cache hash table entries: 4096 (order: 3, 32768 bytes)
[    0.040109] Mountpoint-cache hash table entries: 4096 (order: 3, 32768 bytes)
[    0.040566] CPU: Physical Processor ID: 0
[    0.040569] CPU: Processor Core ID: 0
[    0.040574] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
[    0.040576] ENERGY_PERF_BIAS: View and update with x86_energy_perf_policy(8)
[    0.040585] mce: CPU supports 6 MCE banks
[    0.040595] CPU0: Thermal monitoring enabled (TM1)
[    0.040603] process: using mwait in idle threads
[    0.040608] Last level iTLB entries: 4KB 48, 2MB 0, 4MB 0
[    0.040611] Last level dTLB entries: 4KB 128, 2MB 16, 4MB 16, 1GB 0
[    0.040862] Freeing SMP alternatives memory: 28K
[    0.043983] ftrace: allocating 30017 entries in 118 pages
[    0.072927] smpboot: Max logical packages: 1
[    0.072979] TSC deadline timer enabled
[    0.072982] smpboot: CPU0: Intel(R) Atom(TM) CPU  Z3735F @ 1.33GHz (family: 0x6, model: 0x37, stepping: 0x8)
[    0.072992] Performance Events: PEBS fmt2+, 8-deep LBR, Silvermont events, 8-deep LBR, full-width counters, Intel PMU driver.
[    0.073014] ... version:                3
[    0.073016] ... bit width:              40
[    0.073017] ... generic registers:      2
[    0.073019] ... value mask:             000000ffffffffff
[    0.073021] ... max period:             0000007fffffffff
[    0.073022] ... fixed-purpose events:   3
[    0.073024] ... event mask:             0000000700000003
[    0.084358] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
[    0.094259] x86: Booting SMP configuration:
[    0.094263] .... node  #0, CPUs:      #1 #2 #3
[    0.290951] Skipped synchronization checks as TSC is reliable.
[    0.291143] x86: Booted up 1 node, 4 CPUs
[    0.291147] smpboot: Total of 4 processors activated (10687.87 BogoMIPS)
[    0.291693] CPU3: update max cpu_capacity 1024
[    0.292416] PM: Registering ACPI NVS region [mem 0x0008f000-0x0008ffff] (4096 bytes)
[    0.292420] PM: Registering ACPI NVS region [mem 0x7b877000-0x7bf81fff] (7385088 bytes)
[    0.292897] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1911260446275000 ns
[    0.292905] futex hash table entries: 1024 (order: 4, 65536 bytes)
[    0.292981] CPU1: update max cpu_capacity 1024
[    0.293034] pinctrl core: initialized pinctrl subsystem
[    0.293320] RTC time:  0:57:59, date: 02/04/18
[    0.293542] NET: Registered protocol family 16
[    0.299035] cpuidle: using governor ladder
[    0.303044] cpuidle: using governor menu
[    0.303191] ACPI: bus type PCI registered
[    0.303193] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    0.303377] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
[    0.303383] PCI: not using MMCONFIG
[    0.303385] PCI: Using configuration type 1 for base access
[    0.316036] ACPI: Added _OSI(Module Device)
[    0.316040] ACPI: Added _OSI(Processor Device)
[    0.316042] ACPI: Added _OSI(3.0 _SCP Extensions)
[    0.316044] ACPI: Added _OSI(Processor Aggregator Device)
[    0.341145] ACPI: Dynamic OEM Table Load:
[    0.341167] ACPI: SSDT 0xFFFF89D7B5C83800 000501 (v01 PmRef  Cpu0Ist  00003000 INTL 20061109)
[    0.341930] ACPI: Dynamic OEM Table Load:
[    0.341948] ACPI: SSDT 0xFFFF89D7B5C83000 000433 (v01 PmRef  Cpu0Cst  00003001 INTL 20061109)
[    0.343445] ACPI: Dynamic OEM Table Load:
[    0.343462] ACPI: SSDT 0xFFFF89D7B8A41400 00015F (v01 PmRef  ApIst    00003000 INTL 20061109)
[    0.344130] ACPI: Dynamic OEM Table Load:
[    0.344145] ACPI: SSDT 0xFFFF89D7B8975600 00008D (v01 PmRef  ApCst    00003000 INTL 20061109)
[    0.348375] ACPI: Interpreter enabled
[    0.348417] ACPI: (supports S0 S5)
[    0.348420] ACPI: Using IOAPIC for interrupt routing
[    0.348520] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
[    0.360637] [Firmware Info]: PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] not reserved in ACPI motherboard resources
[    0.360642] PCI: not using MMCONFIG
[    0.360649] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    0.365971] ACPI: Power Resource [USBC] (on)
[    0.374147] ACPI: Power Resource [PLPE] (on)
[    0.387664] ACPI: Power Resource [CLK0] (on)
[    0.387806] ACPI: Power Resource [CLK1] (on)
[    0.388547] ACPI: Power Resource [P28T] (off)
[    0.388693] ACPI: Power Resource [P18T] (off)
[    0.395579] ACPI: Power Resource [P28X] (off)
[    0.395725] ACPI: Power Resource [P18X] (off)
[    0.395858] ACPI: Power Resource [P28P] (off)
[    0.395992] ACPI: Power Resource [P18P] (off)
[    0.396136] ACPI: Power Resource [P1XT] (off)
[    0.397721] ACPI: [Firmware Bug]: BIOS _OSI(Linux) query ignored
[    0.406784] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
[    0.406798] acpi PNP0A08:00: _OSC: OS supports [ASPM ClockPM Segments MSI]
[    0.406957] acpi PNP0A08:00: _OSC failed (AE_ERROR); disabling ASPM
[    0.406965] acpi PNP0A08:00: fail to add MMCONFIG information, can't access extended PCI configuration space under this bridge.
[    0.407830] PCI host bridge to bus 0000:00
[    0.407837] pci_bus 0000:00: root bus resource [io  0x0070-0x0077]
[    0.407841] pci_bus 0000:00: root bus resource [io  0x0000-0x006f window]
[    0.407845] pci_bus 0000:00: root bus resource [io  0x0078-0x0cf7 window]
[    0.407849] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
[    0.407853] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[    0.407857] pci_bus 0000:00: root bus resource [mem 0x000c0000-0x000dffff window]
[    0.407860] pci_bus 0000:00: root bus resource [mem 0x000e0000-0x000fffff window]
[    0.407864] pci_bus 0000:00: root bus resource [mem 0x90c00000-0x90ffffff window]
[    0.407868] pci_bus 0000:00: root bus resource [mem 0x7cf00001-0x7ef00000 window]
[    0.407872] pci_bus 0000:00: root bus resource [mem 0x80000000-0x908ffffe window]
[    0.407875] pci_bus 0000:00: root bus resource [mem 0xfed40000-0xfed40fff window]
[    0.407880] pci_bus 0000:00: root bus resource [bus 00-ff]
[    0.407897] pci 0000:00:00.0: [8086:0f00] type 00 class 0x060000
[    0.408179] pci 0000:00:02.0: [8086:0f31] type 00 class 0x030000
[    0.408197] pci 0000:00:02.0: reg 0x10: [mem 0x90000000-0x903fffff]
[    0.408213] pci 0000:00:02.0: reg 0x18: [mem 0x80000000-0x8fffffff pref]
[    0.408227] pci 0000:00:02.0: reg 0x20: [io  0x1000-0x1007]
[    0.408519] pci 0000:00:14.0: [8086:0f35] type 00 class 0x0c0330
[    0.408543] pci 0000:00:14.0: reg 0x10: [mem 0x90800000-0x9080ffff 64bit]
[    0.408621] pci 0000:00:14.0: PME# supported from D3hot D3cold
[    0.408891] pci 0000:00:1a.0: [8086:0f18] type 00 class 0x108000
[    0.408915] pci 0000:00:1a.0: reg 0x10: [mem 0x90700000-0x907fffff]
[    0.408929] pci 0000:00:1a.0: reg 0x14: [mem 0x90600000-0x906fffff]
[    0.409028] pci 0000:00:1a.0: PME# supported from D0 D3hot
[    0.409281] pci 0000:00:1f.0: [8086:0f1c] type 00 class 0x060100
[    0.409583] pci_bus 0000:00: on NUMA node 0
[    0.410482] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
[    0.410690] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
[    0.410911] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
[    0.411117] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
[    0.411322] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
[    0.411528] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
[    0.411732] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
[    0.411953] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
[    0.422219] acpi 80860F09:00: Device [PWM1] is in always present list
[    0.433071] vgaarb: setting as boot device: PCI:0000:00:02.0
[    0.433076] vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
[    0.433079] vgaarb: loaded
[    0.433081] vgaarb: bridge control possible 0000:00:02.0
[    0.433272] SCSI subsystem initialized
[    0.433434] libata version 3.00 loaded.
[    0.433448] ACPI: bus type USB registered
[    0.433527] usbcore: registered new interface driver usbfs
[    0.433564] usbcore: registered new interface driver hub
[    0.433625] usbcore: registered new device driver usb
[    0.433695] media: Linux media interface: v0.10
[    0.433726] Linux video capture interface: v2.00
[    0.433918] Registered efivars operations
[    0.444365] PCI: Using ACPI for IRQ routing
[    0.444370] PCI: pci_cache_line_size set to 64 bytes
[    0.444407] Expanded resource reserved due to conflict with PCI Bus 0000:00
[    0.444413] e820: reserve RAM buffer [mem 0x0008f000-0x0008ffff]
[    0.444417] e820: reserve RAM buffer [mem 0x0009e000-0x0009ffff]
[    0.444420] e820: reserve RAM buffer [mem 0x7b813000-0x7bffffff]
[    0.444422] e820: reserve RAM buffer [mem 0x7c984000-0x7fffffff]
[    0.444426] e820: reserve RAM buffer [mem 0x7cc00000-0x7fffffff]
[    0.445086] clocksource: Switched to clocksource refined-jiffies
[    0.458185] VFS: Disk quotas dquot_6.6.0
[    0.458235] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    0.458417] pnp: PnP ACPI init
[    0.458598] pnp 00:00: Plug and Play ACPI device, IDs PNP0b00 (active)
[    0.459134] system 00:01: [io  0x0680-0x069f] has been reserved
[    0.459140] system 00:01: [io  0x0400-0x047f] has been reserved
[    0.459144] system 00:01: [io  0x0500-0x05fe] has been reserved
[    0.459149] system 00:01: [io  0x0600-0x061f] has been reserved
[    0.459154] system 00:01: [io  0x164e-0x164f] has been reserved
[    0.459163] system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.461036] system 00:02: [io  0x0240-0x0259] has been reserved
[    0.461045] system 00:02: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.463315] pnp: PnP ACPI: found 3 devices
[    0.467016] pci_bus 0000:00: resource 4 [io  0x0070-0x0077]
[    0.467023] pci_bus 0000:00: resource 5 [io  0x0000-0x006f window]
[    0.467027] pci_bus 0000:00: resource 6 [io  0x0078-0x0cf7 window]
[    0.467030] pci_bus 0000:00: resource 7 [io  0x0d00-0xffff window]
[    0.467034] pci_bus 0000:00: resource 8 [mem 0x000a0000-0x000bffff window]
[    0.467038] pci_bus 0000:00: resource 9 [mem 0x000c0000-0x000dffff window]
[    0.467042] pci_bus 0000:00: resource 10 [mem 0x000e0000-0x000fffff window]
[    0.467046] pci_bus 0000:00: resource 11 [mem 0x90c00000-0x90ffffff window]
[    0.467049] pci_bus 0000:00: resource 12 [mem 0x7cf00001-0x7ef00000 window]
[    0.467053] pci_bus 0000:00: resource 13 [mem 0x80000000-0x908ffffe window]
[    0.467057] pci_bus 0000:00: resource 14 [mem 0xfed40000-0xfed40fff window]
[    0.467259] NET: Registered protocol family 2
[    0.467603] TCP established hash table entries: 16384 (order: 5, 131072 bytes)
[    0.467693] TCP bind hash table entries: 16384 (order: 6, 262144 bytes)
[    0.467809] TCP: Hash tables configured (established 16384 bind 16384)
[    0.467861] UDP hash table entries: 1024 (order: 3, 32768 bytes)
[    0.467886] UDP-Lite hash table entries: 1024 (order: 3, 32768 bytes)
[    0.467984] NET: Registered protocol family 1
[    0.468020] pci 0000:00:02.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[    0.468445] PCI: CLS 0 bytes, default 64
[    0.468596] Trying to unpack rootfs image as initramfs...
[    0.518993] Freeing initrd memory: 1328K
[    0.519294] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x133626f6b26, max_idle_ns: 440795214178 ns
[    0.519325] clocksource: Switched to clocksource tsc
[    0.520091] in byt_audio_platform_init
[    0.520901] audit: initializing netlink subsys (disabled)
[    0.520941] audit: type=2000 audit(1517705879.442:1): initialized
[    0.521585] workingset: timestamp_bits=62 max_order=19 bucket_order=0
[    0.522116] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[    0.522164] fuse init (API version 7.26)
[    0.522247] SELinux:  Registering netfilter hooks
[    1.687768] NET: Registered protocol family 38
[    1.687786] io scheduler noop registered
[    1.687788] io scheduler deadline registered
[    1.687820] io scheduler cfq registered (default)
[    1.688154] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[    1.688223] efifb: probing for efifb
[    1.688250] efifb: framebuffer at 0x80000000, using 1920k, total 1920k
[    1.688253] efifb: mode is 800x600x32, linelength=3200, pages=1
[    1.688254] efifb: scrolling: redraw
[    1.688258] efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
[    1.692981] Console: switching to colour frame buffer device 100x37
[    1.697460] fb0: EFI VGA frame buffer device
[    1.697492] intel_idle: MWAIT substates: 0x33000020
[    1.697494] intel_idle: v0.4.1 model 0x37
[    1.697501] intel_idle: max_cstate 1 reached
[    1.697679] intel_idle: lapic_timer_reliable_states 0xffffffff
[    1.698047] power_supply ADP1: uevent
[    1.698051] power_supply ADP1: POWER_SUPPLY_NAME=ADP1
[    1.698064] ACPI: AC Adapter [ADP1] (on-line)
[    1.698294] input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input0
[    1.698350] ACPI: Lid Switch [LID]
[    1.698469] input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input1
[    1.698476] ACPI: Sleep Button [SLPB]
[    1.703459] [Firmware Bug]: No valid trip found
[    1.704013] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[    1.708412] power_supply ADP1: power_supply_changed
[    1.708420] power_supply ADP1: power_supply_changed_work
[    1.708559] power_supply ADP1: power_supply_update_gen_leds 1
[    1.708570] power_supply ADP1: uevent
[    1.708573] power_supply ADP1: POWER_SUPPLY_NAME=ADP1
[    1.708684] power_supply ADP1: prop ONLINE=1
[    1.980564] serial8250: ttyS0 at I/O 0x3f8 (irq = 0, base_baud = 115200) is a 16550A
[    1.981288] hpet: number irqs doesn't agree with number of timers
[    1.981391] Linux agpgart interface v0.103
[    1.981550] Unable to detect cache hierarchy from DT for CPU 0
[    1.987891] brd: module loaded
[    1.991050] loop: module loaded
[    1.991360] VMware PVSCSI driver - version 1.0.7.0-k
[    1.991412] hv_vmbus: registering driver hv_storvsc
[    1.992272] tun: Universal TUN/TAP device driver, 1.6
[    1.992275] tun: (C) 1999-2004 Max Krasnyansky <ma...@qualcomm.com>
[    1.992480] Fusion MPT base driver 3.04.20
[    1.992482] Copyright (c) 1999-2008 LSI Corporation
[    1.992493] Fusion MPT SPI Host driver 3.04.20
[    1.992655] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    1.992664] ehci-pci: EHCI PCI platform driver
[    1.992816] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    1.992826] ohci-pci: OHCI PCI platform driver
[    1.992863] uhci_hcd: USB Universal Host Controller Interface driver
[    1.993212] xhci_hcd 0000:00:14.0: xHCI Host Controller
[    1.993309] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 1
[    1.994499] xhci_hcd 0000:00:14.0: hcc params 0x200077c1 hci version 0x100 quirks 0x00009810
[    1.994507] xhci_hcd 0000:00:14.0: cache line size of 64 is not supported
[    1.994717] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
[    1.994722] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.994725] usb usb1: Product: xHCI Host Controller
[    1.994729] usb usb1: Manufacturer: Linux 4.9.54-android-x86_64-gfb63269e5ada xhci-hcd
[    1.994732] usb usb1: SerialNumber: 0000:00:14.0
[    1.995013] hub 1-0:1.0: USB hub found
[    1.995040] hub 1-0:1.0: 6 ports detected
[    1.996149] xhci_hcd 0000:00:14.0: xHCI Host Controller
[    1.996231] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 2
[    1.996367] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003
[    1.996372] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.996375] usb usb2: Product: xHCI Host Controller
[    1.996378] usb usb2: Manufacturer: Linux 4.9.54-android-x86_64-gfb63269e5ada xhci-hcd
[    1.996381] usb usb2: SerialNumber: 0000:00:14.0
[    1.996667] hub 2-0:1.0: USB hub found
[    1.996689] hub 2-0:1.0: 1 port detected
[    1.997138] usbcore: registered new interface driver usb-storage
[    1.997168] usbcore: registered new interface driver ums-alauda
[    1.997194] usbcore: registered new interface driver ums-cypress
[    1.997219] usbcore: registered new interface driver ums-datafab
[    1.997251] usbcore: registered new interface driver ums_eneub6250
[    1.997283] usbcore: registered new interface driver ums-freecom
[    1.997311] usbcore: registered new interface driver ums-isd200
[    1.997356] usbcore: registered new interface driver ums-jumpshot
[    1.997384] usbcore: registered new interface driver ums-onetouch
[    1.997424] usbcore: registered new interface driver ums-realtek
[    1.997452] usbcore: registered new interface driver ums-sddr09
[    1.997478] usbcore: registered new interface driver ums-sddr55
[    1.997506] usbcore: registered new interface driver ums-usbat
[    1.997617] i8042: PNP: No PS/2 controller found. Probing ports directly.
[    3.043427] i8042: No controller found
[    3.043505] hv_vmbus: registering driver hyperv_keyboard
[    3.043632] mousedev: PS/2 mouse device common for all mice
[    3.043988] ACPI Warning: Could not enable fixed event - RealTimeClock (4) (20160831/evxface-654)
[    3.044170] rtc rtc0: rtc_cmos: dev (253:0)
[    3.044180] rtc_cmos 00:00: rtc core: registered rtc_cmos as rtc0
[    3.044222] rtc_cmos 00:00: alarms up to one day, 242 bytes nvram
[    3.044248] IR Sharp protocol handler initialized
[    3.044250] IR XMP protocol handler initialized
[    3.044317] device-mapper: uevent: version 1.0.3
[    3.044413] device-mapper: ioctl: 4.35.0-ioctl (2016-06-23) initialised: dm-d...@redhat.com
[    3.044514] intel_pstate: Intel P-state driver initializing
[    3.044973] sdhci: Secure Digital Host Controller Interface driver
[    3.044978] sdhci: Copyright(c) Pierre Ossman
[    3.052423] mmc0: SDHCI controller on ACPI [INT33BB:00] using ADMA
[    3.070379] mmc1: SDHCI controller on ACPI [80860F14:00] using ADMA
[    3.077502] mmc2: SDHCI controller on ACPI [PNP0FFF:00] using ADMA
[    3.077657] sdhci-pltfm: SDHCI platform and OF driver helper
[    3.078488] hidraw: raw HID events driver (C) Jiri Kosina
[    3.078790] usbcore: registered new interface driver usbhid
[    3.078795] usbhid: USB HID core driver
[    3.078958] ashmem: initialized
[    3.080007] oprofile: using NMI interrupt.
[    3.080066] GACT probability NOT on
[    3.080073] Mirror/redirect action on
[    3.080078] u32 classifier
[    3.080079]     Actions configured
[    3.080083] Netfilter messages via NETLINK v0.30.
[    3.080203] nf_conntrack version 0.5.0 (16384 buckets, 65536 max)
[    3.080328] ctnetlink v0.93: registering with nfnetlink.
[    3.080498] xt_time: kernel timezone is -0000
[    3.080650] ip_tables: (C) 2000-2006 Netfilter Core Team
[    3.080749] arp_tables: arp_tables: (C) 2002 David S. Miller
[    3.080771] Initializing XFRM netlink socket
[    3.080847] NET: Registered protocol family 10
[    3.081448] mip6: Mobile IPv6
[    3.081461] ip6_tables: (C) 2000-2006 Netfilter Core Team
[    3.081574] sit: IPv6, IPv4 and MPLS over IPv4 tunneling driver
[    3.082367] NET: Registered protocol family 17
[    3.082381] NET: Registered protocol family 15
[    3.082393] NET: Registered protocol family 35
[    3.083160] microcode: sig=0x30678, pf=0x2, revision=0x832
[    3.083254] microcode: Microcode Update Driver: v2.01 <tig...@aivazian.fsnet.co.uk>, Peter Oruba
[    3.083285] SSE version of gcm_enc/dec engaged.
[    3.091016] registered taskstats version 1
[    3.091564]   Magic number: 6:712:960
[    3.091569]   hash matches /home/cwhuang/git/android-x86-7.1/kernel/drivers/base/power/main.c:1174
[    3.091758] rtc_cmos 00:00: setting system clock to 2018-02-04 00:58:02 UTC (1517705882)
[    3.096276] Freeing unused kernel memory: 1264K
[    3.096281] Write protecting the kernel read-only data: 14336k
[    3.097957] Freeing unused kernel memory: 1876K
[    3.103900] Freeing unused kernel memory: 528K
[    3.158838] mmc0: queuing unknown CIS tuple 0x80 (2 bytes)
[    3.160353] mmc0: queuing unknown CIS tuple 0x80 (3 bytes)
[    3.161871] mmc0: queuing unknown CIS tuple 0x80 (3 bytes)
[    3.164598] mmc0: queuing unknown CIS tuple 0x80 (7 bytes)
[    3.197684] random: env: uninitialized urandom read (4 bytes read)
[    3.198558] random: setsid: uninitialized urandom read (4 bytes read)
[    3.199356] random: cttyhack: uninitialized urandom read (4 bytes read)
[    3.200244] random: sh: uninitialized urandom read (4 bytes read)
[    3.201477] usb 1-1: new high-speed USB device number 2 using xhci_hcd
[    3.202173] random: dirname: uninitialized urandom read (4 bytes read)
[    3.203562] random: cat: uninitialized urandom read (4 bytes read)
[    3.205746] random: mount: uninitialized urandom read (4 bytes read)
[    3.208233] random: dirname: uninitialized urandom read (4 bytes read)
[    3.210816] random: mountpoint: uninitialized urandom read (4 bytes read)
[    3.212917] random: sleep: uninitialized urandom read (4 bytes read)
[    3.232029] mmc0: new ultra high speed DDR50 SDIO card at address 0001
[    3.233278] random: fast init done
[    3.233716] mmc1: new HS200 MMC card at address 0001
[    3.234769] mmcblk1: mmc1:0001 MBG4GC 29.1 GiB
[    3.235057] mmcblk1boot0: mmc1:0001 MBG4GC partition 1 4.00 MiB
[    3.236675] mmcblk1boot1: mmc1:0001 MBG4GC partition 2 4.00 MiB
[    3.236954] mmcblk1rpmb: mmc1:0001 MBG4GC partition 3 4.00 MiB
[    3.239713]  mmcblk1: p1 p2 p3
[    3.325034] mmc2: new high speed SDHC card at address aaaa
[    3.326700] mmcblk2: mmc2:aaaa SU32G 29.7 GiB
[    3.328116]  mmcblk2: p1
[    3.370784] usb 1-1: New USB device found, idVendor=05e3, idProduct=0610
[    3.370796] usb 1-1: New USB device strings: Mfr=0, Product=1, SerialNumber=0
[    3.370804] usb 1-1: Product: USB2.0 Hub
[    3.371765] hub 1-1:1.0: USB hub found
[    3.372096] hub 1-1:1.0: 4 ports detected
[    3.373458] usb: port power management may be unreliable
[    3.645399] usb 1-1.3: new full-speed USB device number 3 using xhci_hcd
[    3.750054] usb 1-1.3: New USB device found, idVendor=0b05, idProduct=1807
[    3.750065] usb 1-1.3: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    3.750073] usb 1-1.3: Product: ASUS HID Device
[    3.750081] usb 1-1.3: Manufacturer: ASUS Tech Inc.
[    3.759177] input: ASUS Tech Inc. ASUS HID Device  as /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1.3/1-1.3:1.0/0003:0B05:1807.0001/input/input2
[    3.811216] hid-generic 0003:0B05:1807.0001: input,hidraw0: USB HID v1.10 Keyboard [ASUS Tech Inc. ASUS HID Device ] on usb-0000:00:14.0-1.3/input0
[    3.822820] hid-generic 0003:0B05:1807.0002: ignoring exceeding usage max
[    3.824122] input: ASUS Tech Inc. ASUS HID Device  as /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1.3/1-1.3:1.1/0003:0B05:1807.0002/input/input3
[    3.875666] hid-generic 0003:0B05:1807.0002: input,hiddev0,hidraw1: USB HID v1.10 Device [ASUS Tech Inc. ASUS HID Device ] on usb-0000:00:14.0-1.3/input1
[    3.886312] input: ASUS Tech Inc. ASUS HID Device  as /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1.3/1-1.3:1.2/0003:0B05:1807.0003/input/input4
[    3.886795] hid-generic 0003:0B05:1807.0003: input,hiddev0,hidraw2: USB HID v1.10 Mouse [ASUS Tech Inc. ASUS HID Device ] on usb-0000:00:14.0-1.3/input2
[    4.323464] EXT4-fs (mmcblk1p2): couldn't mount as ext3 due to feature incompatibilities
[    4.327524] EXT4-fs (mmcblk1p2): mounted filesystem with ordered data mode. Opts: (null)
[    4.534038] EXT4-fs (mmcblk1p2): re-mounted. Opts: (null)
[    4.561461] EXT4-fs (mmcblk1p2): re-mounted. Opts: (null)
[    4.583388] init: init first stage started!
[    4.587160] SELinux: 2048 avtab hash slots, 6477 rules.
[    4.589912] SELinux: 2048 avtab hash slots, 6477 rules.
[    4.589920] SELinux:  1 users, 2 roles, 640 types, 0 bools, 1 sens, 1024 cats
[    4.589924] SELinux:  63 classes, 6477 rules
[    4.590596] SELinux:  Permission validate_trans in class security not defined in policy.
[    4.590806] SELinux:  Class cap_userns not defined in policy.
[    4.590808] SELinux:  Class cap2_userns not defined in policy.
[    4.590809] SELinux: the above unknown classes and permissions will be denied
[    4.590818] SELinux:  Completing initialization.
[    4.590819] SELinux:  Setting up existing superblocks.
[    4.607507] audit: type=1403 audit(1517705884.014:2): policy loaded auid=4294967295 ses=4294967295
[    4.607842] init: (Initializing SELinux non-enforcing took 0.02s.)
[    4.607886] audit: type=1400 audit(1517705884.014:3): avc:  denied  { open } for  pid=1 comm="init" path="/selinux_version" dev="tmpfs" ino=4029 scontext=u:r:kernel:s0 tcontext=u:object_r:tmpfs:s0 tclass=file permissive=1
[    4.608862] audit: type=1400 audit(1517705884.015:4): avc:  denied  { relabelfrom } for  pid=1 comm="init" name="init" dev="tmpfs" ino=4007 scontext=u:r:kernel:s0 tcontext=u:object_r:tmpfs:s0 tclass=file permissive=1
[    4.610006] init: init second stage started!
[    4.615375] init: Running restorecon...
[    4.615779] audit: type=1400 audit(1517705884.022:5): avc:  denied  { relabelfrom } for  pid=1 comm="init" name="property_contexts" dev="tmpfs" ino=4019 scontext=u:r:init:s0 tcontext=u:object_r:tmpfs:s0 tclass=file permissive=1
[    4.652484] init: waitpid failed: No child processes
[    4.652725] init: (Loading properties from /default.prop took 0.00s.)
[    4.654328] init: (Parsing /init.environ.rc took 0.00s.)
[    4.654688] init: (Parsing /init.usb.rc took 0.00s.)
[    4.655006] init: (Parsing /init.superuser.rc took 0.00s.)
[    4.655020] init: (Parsing /init.android_x86_64.rc took 0.00s.)
[    4.655577] init: (Parsing /init.usb.configfs.rc took 0.00s.)
[    4.655676] init: (Parsing /init.zygote64_32.rc took 0.00s.)
[    4.674849] audit: type=1400 audit(1517705884.081:6): avc:  denied  { create } for  pid=1 comm="init" name="lib" scontext=u:r:init:s0 tcontext=u:object_r:tmpfs:s0 tclass=lnk_file permissive=1
[    4.677230] ueventd: ueventd started!
[    4.677393] audit: type=1400 audit(1517705884.083:7): avc:  denied  { open } for  pid=1227 comm="ueventd" path="/ueventd.rc" dev="tmpfs" ino=4036 scontext=u:r:ueventd:s0 tcontext=u:object_r:tmpfs:s0 tclass=file permissive=1
[    4.705519] audit: type=1400 audit(1517705884.112:8): avc:  denied  { read } for  pid=1227 comm="ueventd" name="modules.alias" dev="mmcblk1p2" ino=1603107 scontext=u:r:ueventd:s0 tcontext=u:object_r:unlabeled:s0 tclass=file permissive=1
[    4.705567] audit: type=1400 audit(1517705884.112:9): avc:  denied  { open } for  pid=1227 comm="ueventd" path="/system/lib/modules/4.9.54-android-x86_64-gfb63269e5ada/modules.alias" dev="mmcblk1p2" ino=1603107 scontext=u:r:ueventd:s0 tcontext=u:object_r:unlabeled:s0 tclass=file permissive=1
[    4.705676] audit: type=1400 audit(1517705884.112:10): avc:  denied  { getattr } for  pid=1227 comm="ueventd" path="/system/lib/modules/4.9.54-android-x86_64-gfb63269e5ada/modules.alias" dev="mmcblk1p2" ino=1603107 scontext=u:r:ueventd:s0 tcontext=u:object_r:unlabeled:s0 tclass=file permissive=1
[    4.770945] [drm] Initialized
[    4.806635] [drm] Memory usable by graphics device = 2048M
[    4.806640] checking generic (80000000 1e0000) vs hw (80000000 10000000)
[    4.806642] fb: switching to inteldrmfb from EFI VGA
[    4.806690] Console: switching to colour dummy device 80x25
[    4.806831] [drm] Replacing VGA console driver
[    4.806968] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
[    4.806970] [drm] Driver supports precise vblank timestamp query.
[    4.807054] [drm:intel_bios_init [i915]] *ERROR* Invalid sequence block (header)
[    4.807816] vgaarb: device changed decodes: PCI:0000:00:02.0,olddecodes=io+mem,decodes=io+mem:owns=io+mem
[    4.810802] modprobe: /sbin/modprobe pwm-lpss-platform
[    4.883494] ACPI: Video Device [GFX0] (multi-head: yes  rom: no  post: no)
[    4.884104] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:00/input/input5
[    4.884262] [drm] HDaudio controller not detected,using LPE audio instead
[    4.884262]
[    4.884384] [drm] Initialized i915 1.6.0 20160919 for 0000:00:02.0 on minor 0
[    4.938077] EDID block is all zeroes
[    4.938090] i915 0000:00:02.0: HDMI-A-2: EDID block 0 invalid.
[    4.942443] fbcon: inteldrmfb (fb0) is primary device
[    5.905771] Console: switching to colour frame buffer device 170x48
[    6.010033] i915 0000:00:02.0: fb0: inteldrmfb frame buffer device
[    6.054750] ueventd: blacklisted module evbug: 1
[    6.064350] audit_printk_skb: 21 callbacks suppressed
[    6.064354] audit: type=1400 audit(1517705885.470:18): avc:  denied  { relabelfrom } for  pid=1227 comm="ueventd" name="fb0" dev="tmpfs" ino=4897 scontext=u:r:ueventd:s0 tcontext=u:object_r:graphics_device:s0 tclass=chr_file permissive=1
[    6.064377] audit: type=1400 audit(1517705885.471:19): avc:  denied  { relabelto } for  pid=1227 comm="ueventd" name="fb0" dev="tmpfs" ino=4897 scontext=u:r:ueventd:s0 tcontext=u:object_r:graphics_device:s0 tclass=chr_file permissive=1
[    6.069468] audit: type=1400 audit(1517705885.476:20): avc:  denied  { relabelfrom } for  pid=1227 comm="ueventd" name="renderD128" dev="tmpfs" ino=4893 scontext=u:r:ueventd:s0 tcontext=u:object_r:device:s0 tclass=chr_file permissive=1
[    6.069489] audit: type=1400 audit(1517705885.476:21): avc:  denied  { relabelto } for  pid=1227 comm="ueventd" name="renderD128" dev="tmpfs" ino=4893 scontext=u:r:ueventd:s0 tcontext=u:object_r:device:s0 tclass=chr_file permissive=1
[    6.095725] ueventd: blacklisted module evbug: 1
[    6.118746] ueventd: blacklisted module evbug: 1
[    6.184735] ueventd: blacklisted module evbug: 1
[    6.255542] 80860F0A:00: ttyS1 at MMIO 0x90947000 (irq = 39, base_baud = 2764800) is a 16550A
[    6.267506] 80860F0A:01: ttyS2 at MMIO 0x9094d000 (irq = 40, base_baud = 2764800) is a 16550A
[    6.281023] audit: type=1400 audit(1517705885.687:22): avc:  denied  { relabelfrom } for  pid=1227 comm="ueventd" name="ttyS2" dev="tmpfs" ino=4917 scontext=u:r:ueventd:s0 tcontext=u:object_r:serial_device:s0 tclass=chr_file permissive=1
[    6.281044] audit: type=1400 audit(1517705885.687:23): avc:  denied  { relabelto } for  pid=1227 comm="ueventd" name="ttyS2" dev="tmpfs" ino=4917 scontext=u:r:ueventd:s0 tcontext=u:object_r:serial_device:s0 tclass=chr_file permissive=1
[    6.379461] power_supply BATC: uevent
[    6.379470] power_supply BATC: POWER_SUPPLY_NAME=BATC
[    6.379517] ACPI: Battery Slot [BATC] (battery present)
[    6.390403] power_supply BATC: power_supply_changed
[    6.390416] power_supply BATC: power_supply_changed_work
[    6.390430] power_supply BATC: power_supply_update_bat_leds 2
[    6.390451] power_supply BATC: uevent
[    6.390458] power_supply BATC: POWER_SUPPLY_NAME=BATC
[    6.390473] power_supply BATC: prop STATUS=Discharging
[    6.390485] power_supply BATC: prop PRESENT=1
[    6.390496] power_supply BATC: prop TECHNOLOGY=Li-ion
[    6.390508] power_supply BATC: prop CYCLE_COUNT=99
[    6.390519] power_supply BATC: prop VOLTAGE_MIN_DESIGN=3750000
[    6.390530] power_supply BATC: prop VOLTAGE_NOW=4207000
[    6.390541] power_supply BATC: prop CURRENT_NOW=1156000
[    6.390551] power_supply BATC: prop CHARGE_FULL_DESIGN=8060000
[    6.390562] power_supply BATC: prop CHARGE_FULL=7462000
[    6.390572] power_supply BATC: prop CHARGE_NOW=7458000
[    6.390583] power_supply BATC: prop CAPACITY=99
[    6.390594] power_supply BATC: prop CAPACITY_LEVEL=Normal
[    6.390604] power_supply BATC: prop MODEL_NAME=SR Real Battery
[    6.390614] power_supply BATC: prop MANUFACTURER=Intel SR 1
[    6.390624] power_supply BATC: prop SERIAL_NUMBER=123456789
[    6.529843] i2c_designware 80860F41:04: I2C bus managed by PUNIT
[    6.547319] [Firmware Bug]: No valid trip found
[    6.655494] inv-mpu6050-i2c i2c-INVN6500:00: mounting matrix not found: using identity...
[    6.787188] i2c i2c-10: Added multiplexed i2c bus 13
[    7.078708] input: SIS0817:00 0457:1071 as /devices/platform/80860F41:03/i2c-11/i2c-SIS0817:00/0018:0457:1071.0004/input/input6
[    7.079179] hid-multitouch 0018:0457:1071.0004: input,hidraw3: I2C HID v1.00 Device [SIS0817:00 0457:1071] on i2c-SIS0817:00
[    7.096198] ueventd: blacklisted module evbug: 1
[    7.125784] EFI Variables Facility v0.08 2004-May-17
[    7.151145] pstore: using zlib compression
[    7.151154] pstore: Registered efi as persistent store backend
[    7.178967] ueventd: blacklisted module soc_button_array: 2
[    7.201940] audit: type=1400 audit(1517705886.608:24): avc:  denied  { relabelfrom } for  pid=1227 comm="ueventd" name="iio:device0" dev="tmpfs" ino=5239 scontext=u:r:ueventd:s0 tcontext=u:object_r:iio_device:s0 tclass=chr_file permissive=1
[    7.201962] audit: type=1400 audit(1517705886.608:25): avc:  denied  { relabelto } for  pid=1227 comm="ueventd" name="iio:device0" dev="tmpfs" ino=5239 scontext=u:r:ueventd:s0 tcontext=u:object_r:iio_device:s0 tclass=chr_file permissive=1
[    7.257394] dw_dmac INTL9C60:00: Missing DT data
[    7.270058] dw_dmac INTL9C60:00: DesignWare DMA Controller, 8 channels
[    7.282401] dw_dmac INTL9C60:01: Missing DT data
[    7.295472] dw_dmac INTL9C60:01: DesignWare DMA Controller, 8 channels
[    7.349155] intel_sst_acpi 80860F28:00: Detected Baytrail-CR platform
[    7.349478] intel_sst_acpi 80860F28:00: LPE base: 0x90a00000 size:0x200000
[    7.349484] intel_sst_acpi 80860F28:00: IRAM base: 0x90ac0000
[    7.349537] intel_sst_acpi 80860F28:00: DRAM base: 0x90b00000
[    7.349553] intel_sst_acpi 80860F28:00: SHIM base: 0x90b40000
[    7.349570] intel_sst_acpi 80860F28:00: Mailbox base: 0x90b44000
[    7.349584] intel_sst_acpi 80860F28:00: DDR base: 0x20000000
[    7.349737] intel_sst_acpi 80860F28:00: Got drv data max stream 25
[    7.352855] audit: type=1400 audit(1517705886.759:26): avc:  denied  { read } for  pid=1007 comm="kworker/2:2" name="fw_sst_0f28.bin" dev="mmcblk1p2" ino=1599561 scontext=u:r:kernel:s0 tcontext=u:object_r:unlabeled:s0 tclass=file permissive=1
[    7.352882] audit: type=1400 audit(1517705886.759:27): avc:  denied  { open } for  pid=1007 comm="kworker/2:2" path="/system/lib/firmware/intel/fw_sst_0f28.bin" dev="mmcblk1p2" ino=1599561 scontext=u:r:kernel:s0 tcontext=u:object_r:unlabeled:s0 tclass=file permissive=1
[    7.373898] bytcr_rt5640 bytcr_rt5640: BIOS Routing: AIF2 connected
[    7.373903] bytcr_rt5640 bytcr_rt5640: quirk IN1_MAP enabled
[    7.373906] bytcr_rt5640 bytcr_rt5640: quirk MONO_SPEAKER enabled
[    7.373908] bytcr_rt5640 bytcr_rt5640: quirk DIFF_MIC enabled
[    7.373911] bytcr_rt5640 bytcr_rt5640: quirk SSP0_AIF2 enabled
[    7.373913] bytcr_rt5640 bytcr_rt5640: quirk MCLK_EN enabled
[    7.381792] bytcr_rt5640 bytcr_rt5640: snd-soc-dummy-dai <-> media-cpu-dai mapping ok
[    7.381885] bytcr_rt5640 bytcr_rt5640: snd-soc-dummy-dai <-> deepbuffer-cpu-dai mapping ok
[    7.381932] compress asoc: snd-soc-dummy-dai <-> compress-cpu-dai mapping ok
[    7.382497] bytcr_rt5640 bytcr_rt5640: rt5640-aif2 <-> ssp0-port mapping ok
[    7.502922] Bluetooth: Core ver 2.22
[    7.502979] NET: Registered protocol family 31
[    7.502982] Bluetooth: HCI device and connection manager initialized
[    7.502991] Bluetooth: HCI socket layer initialized
[    7.502997] Bluetooth: L2CAP socket layer initialized
[    7.503040] Bluetooth: SCO socket layer initialized
[    7.504390] Bluetooth: Generic Bluetooth SDIO driver ver 0.1
[    7.565081] mmc0: queuing unknown CIS tuple 0x80 (2 bytes)
[    7.566694] mmc0: queuing unknown CIS tuple 0x80 (3 bytes)
[    7.568362] mmc0: queuing unknown CIS tuple 0x80 (3 bytes)
[    7.571286] mmc0: queuing unknown CIS tuple 0x80 (7 bytes)
[    7.640382] usbcore: registered new interface driver brcmfmac
[    7.670991] wmi: Mapper loaded
[    7.684814] asus_wmi: ASUS WMI generic driver loaded
[    7.685961] asus_wmi: Initialization: 0x1
[    7.686080] asus_wmi: BIOS WMI version: 7.9
[    7.686174] asus_wmi: SFUN value: 0x37
[    7.689625] input: Asus WMI hotkeys as /devices/platform/asus-nb-wmi/input/input9
[    7.690636] asus_wmi: Number of fans: 1
[    7.705892] ueventd: blacklisted module evbug: 1
[    7.721024] ueventd: Linking partition 'EFI System Partition' as 'EFI_System_Partition'
[    7.761607] Bluetooth: HCI UART driver ver 2.3
[    7.761613] Bluetooth: HCI UART protocol H4 registered
[    7.761616] Bluetooth: HCI UART protocol BCSP registered
[    7.761619] Bluetooth: HCI UART protocol LL registered
[    7.761621] Bluetooth: HCI UART protocol ATH3K registered
[    7.761623] Bluetooth: HCI UART protocol Three-wire (H5) registered
[    7.761761] Bluetooth: HCI UART protocol Intel registered
[    7.773634] hci_bcm BCM2E65:00: BCM irq: 70
[    7.773709] hci_bcm BCM2E65:00: BCM2E65:00 device registered.
[    7.773949] Bluetooth: HCI UART protocol Broadcom registered
[    7.773953] Bluetooth: HCI UART protocol QCA registered
[    7.773956] Bluetooth: HCI UART protocol AG6XX registered
[    7.773958] Bluetooth: HCI UART protocol Marvell registered
[    7.787559] input: Asus Wireless Radio Control as /devices/LNXSYSTM:00/LNXSYBUS:00/ATK4002:00/input/input10
[    7.792372] ueventd: blacklisted module evbug: 1
[    7.848660] input: PC Speaker as /devices/platform/pcspkr/input/input11
[    7.889018] random: crng init done
[    7.924870] modprobe: /sbin/modprobe crypto-cryptd(__ghash-pclmulqdqni)
[    7.971497] modprobe: /sbin/modprobe crypto-cryptd(__ghash-pclmulqdqni)-all
[    8.092988] intel_rapl: Found RAPL domain package
[    8.092998] intel_rapl: Found RAPL domain core
[    8.669084] power_supply BATC: uevent
[    8.669089] power_supply BATC: POWER_SUPPLY_NAME=BATC
[    8.687676] power_supply BATC: prop STATUS=Discharging
[    8.687684] power_supply BATC: prop PRESENT=1
[    8.687690] power_supply BATC: prop TECHNOLOGY=Li-ion
[    8.687696] power_supply BATC: prop CYCLE_COUNT=99
[    8.687701] power_supply BATC: prop VOLTAGE_MIN_DESIGN=3750000
[    8.687706] power_supply BATC: prop VOLTAGE_NOW=4212000
[    8.687711] power_supply BATC: prop CURRENT_NOW=1179000
[    8.687717] power_supply BATC: prop CHARGE_FULL_DESIGN=8060000
[    8.687722] power_supply BATC: prop CHARGE_FULL=7462000
[    8.687727] power_supply BATC: prop CHARGE_NOW=7457000
[    8.687732] power_supply BATC: prop CAPACITY=99
[    8.687737] power_supply BATC: prop CAPACITY_LEVEL=Normal
[    8.687742] power_supply BATC: prop MODEL_NAME=SR Real Battery
[    8.687747] power_supply BATC: prop MANUFACTURER=Intel SR 1
[    8.687751] power_supply BATC: prop SERIAL_NUMBER=123456789
[    8.890178] power_supply ADP1: uevent
[    8.890183] power_supply ADP1: POWER_SUPPLY_NAME=ADP1
[    8.897423] power_supply ADP1: prop ONLINE=0
[    9.263841] input: gpio-keys as /devices/platform/gpio-keys.1.auto/input/input12
[    9.264110] input: gpio-keys as /devices/platform/gpio-keys.2.auto/input/input13
[    9.272107] modprobe: /sbin/modprobe fs-cpuset
[    9.390998] logd.auditd: start
[    9.391029] logd.klogd: 9313684731
[    9.419462] type=1400 audit(1517723888.792:43): avc: denied { read } for pid=1257 comm="logd" scontext=u:r:init:s0 tcontext=u:r:init:s0 tclass=netlink_audit_socket permissive=1
[    9.419651] type=1400 audit(1517723888.800:44): avc: denied { ioctl } for pid=1262 comm="sh" path="/dev/pts/0" dev="devpts" ino=3 ioctlcmd=0x5401 scontext=u:r:init:s0 tcontext=u:object_r:devpts:s0 tclass=chr_file permissive=1
[    9.419934] type=1400 audit(1517723888.820:45): avc: denied { getopt } for pid=1257 comm="logd" scontext=u:r:init:s0 tcontext=u:r:init:s0 tclass=netlink_audit_socket permissive=1
[    9.434590] type=1400 audit(1517723888.836:46): avc: denied { write } for pid=1269 comm="setprop" name="property_service" dev="tmpfs" ino=5222 scontext=u:r:init:s0 tcontext=u:object_r:property_socket:s0 tclass=sock_file permissive=1
[    9.491517] type=1400 audit(1517723888.893:47): avc: denied { execute_no_trans } for pid=1278 comm="sh" path="/init" dev="tmpfs" ino=4007 scontext=u:r:init:s0 tcontext=u:object_r:init_exec:s0 tclass=file permissive=1
[    9.534054] Registering sdcardfs 0.1
[    9.545975] type=1400 audit(1517723888.947:48): avc: denied { write } for pid=1262 comm="sh" name="rfkill0" dev="sysfs" ino=17516 scontext=u:r:init:s0 tcontext=u:object_r:sysfs:s0 tclass=dir permissive=1
[    9.546079] type=1400 audit(1517723888.947:49): avc: denied { add_name } for pid=1262 comm="sh" name="state" scontext=u:r:init:s0 tcontext=u:object_r:sysfs:s0 tclass=dir permissive=1
[    9.546151] type=1400 audit(1517723888.947:50): avc: denied { create } for pid=1262 comm="sh" name="state" scontext=u:r:init:s0 tcontext=u:object_r:sysfs:s0 tclass=file permissive=1
[    9.713598] Bluetooth: hci1: BCM: chip id 82
[    9.713605] Bluetooth: hci1: BCM43341B0 (002.001.014) build 0000
[    9.770446] init: Service 'exec 1 (/system/bin/logwrapper)' (pid 1258) exited with status 0
[    9.788266] init: property_set("ro.product.model", "Generic Android-x86_64") failed
[    9.788380] init: property_set("ro.product.manufacturer", "unknown") failed
[    9.788720] init: (Loading properties from /system/build.prop took 0.02s.)
[    9.788769] init: (Loading properties from /vendor/build.prop took 0.00s.)
[    9.788799] init: (Loading properties from /factory/factory.prop took 0.00s.)
[    9.788922] init: /recovery not specified in fstab
[    9.789286] init: Service debuggerd does not have a SELinux domain defined.
[    9.789297] init: Starting service 'debuggerd'...
[    9.789780] init: Service debuggerd64 does not have a SELinux domain defined.
[    9.822377] brcmfmac: brcmf_c_preinit_dcmds: Firmware version = wl0: Feb 20 2015 12:54:17 version 6.10.190.55 (r536162) FWID 01-6cb01dcc
[    9.839820] brcmfmac: brcmf_cfg80211_reg_notifier: not a ISO3166 code (0x30 0x30)
[   10.021183] ueventd: Linking partition 'EFI System Partition' as 'EFI_System_Partition'
[   10.218671] Bluetooth: hci1: BCM (002.001.014) build 0176
[   10.495251] binder: 1322:1322 transaction failed 29189/-22, size 0-0 line 2939
[   10.521956] capability: warning: `su' uses 32-bit capabilities (legacy support in use)
[   10.737235] modprobe: /sbin/modprobe fs-binfmt_misc
[   11.012302] intel_sst_acpi 80860F28:00: FW Version 01.0c.00.01
[   11.290554] SELinux: 4096 avtab hash slots, 10620 rules.
[   11.294538] SELinux: 4096 avtab hash slots, 10620 rules.
[   11.294548] SELinux:  1 users, 2 roles, 641 types, 0 bools, 1 sens, 1024 cats
[   11.294553] SELinux:  63 classes, 10620 rules
[   11.295259] SELinux:  Permission validate_trans in class security not defined in policy.
[   11.295495] SELinux:  Class cap_userns not defined in policy.
[   11.295497] SELinux:  Class cap2_userns not defined in policy.
[   11.295499] SELinux: the above unknown classes and permissions will be denied
[   11.498057] healthd: BatteryHealthPath not found
[   11.498069] healthd: BatteryTemperaturePath not found
[   11.525242] healthd: battery l=99 v=4204 t=0.0 h=1 st=3 c=1298 fc=7462000 cc=99 chg=
[   11.844327] SELinux: 4096 avtab hash slots, 10620 rules.
[   11.848602] SELinux: 4096 avtab hash slots, 10620 rules.
[   11.848613] SELinux:  1 users, 2 roles, 641 types, 0 bools, 1 sens, 1024 cats
[   11.848619] SELinux:  63 classes, 10620 rules
[   11.849308] SELinux:  Permission validate_trans in class security not defined in policy.
[   11.849543] SELinux:  Class cap_userns not defined in policy.
[   11.849546] SELinux:  Class cap2_userns not defined in policy.
[   11.849547] SELinux: the above unknown classes and permissions will be denied
[   12.217197] audit_log_lost: 47 callbacks suppressed
[   12.217201] audit: audit_lost=62 audit_rate_limit=20 audit_backlog_limit=64
[   12.217203] audit: rate limit exceeded
[   12.368994] SELinux: 4096 avtab hash slots, 10621 rules.
[   12.372954] SELinux: 4096 avtab hash slots, 10621 rules.
[   12.372966] SELinux:  1 users, 2 roles, 641 types, 0 bools, 1 sens, 1024 cats
[   12.372971] SELinux:  63 classes, 10621 rules
[   12.373719] SELinux:  Permission validate_trans in class security not defined in policy.
[   12.373945] SELinux:  Class cap_userns not defined in policy.
[   12.373946] SELinux:  Class cap2_userns not defined in policy.
[   12.373948] SELinux: the above unknown classes and permissions will be denied
[   12.857658] x_tables: ip_tables: owner match: used from hooks INPUT, but only valid from OUTPUT/POSTROUTING
[   12.867399] x_tables: ip6_tables: owner match: used from hooks INPUT, but only valid from OUTPUT/POSTROUTING
[   12.897362] modprobe: /sbin/modprobe netdev-dummy0
[   12.927617] modprobe: /sbin/modprobe dummy0
[   13.299172] audit: audit_lost=84 audit_rate_limit=20 audit_backlog_limit=64
[   13.299177] audit: rate limit exceeded
[   14.477518] type=1400 audit(1517723893.878:186): avc: denied { getattr } for pid=1333 comm="main" path="/sys/kernel/debug/tracing/trace_marker" dev="tracefs" ino=68 scontext=u:r:init:s0 tcontext=u:object_r:debugfs_trace_marker:s0 tclass=file permissive=1
[   14.480446] type=1400 audit(1517723893.881:187): avc: denied { setpcap } for pid=1685 comm="main" capability=8 scontext=u:r:init:s0 tcontext=u:r:init:s0 tclass=capability permissive=1
[   14.481486] type=1400 audit(1517723893.882:188): avc: denied { check_context } for pid=1685 comm="main" scontext=u:r:init:s0 tcontext=u:object_r:kernel:s0 tclass=security permissive=1
[   14.482100] type=1400 audit(1517723893.883:189): avc: denied { dyntransition } for pid=1685 comm="main" scontext=u:r:init:s0 tcontext=u:r:system_server:s0 tclass=process permissive=1
[   14.483860] type=1400 audit(1517723893.885:190): avc: denied { read } for pid=1685 comm="main" path=2F6465762F6173686D656D2F64616C76696B2D6D61696E207370616365202864656C6574656429 dev="tmpfs" ino=12418 scontext=u:r:system_server:s0 tcontext=u:object_r:init_tmpfs:s0 tclass=file permissive=1
[   14.516610] type=1400 audit(1517723893.918:191): avc: denied { sendto } for pid=1685 comm="main" path="/dev/socket/logdw" scontext=u:r:system_server:s0 tcontext=u:r:init:s0 tclass=unix_dgram_socket permissive=1
[   14.529248] type=1400 audit(1517723893.930:192): avc: denied { execute } for pid=1685 comm="system_server" path="/system/framework/oat/x86_64/services.odex" dev="mmcblk1p2" ino=1598872 scontext=u:r:system_server:s0 tcontext=u:object_r:unlabeled:s0 tclass=file permissive=1
[   14.664309] type=1400 audit(1517723894.065:193): avc: denied { call } for pid=1685 comm="system_server" scontext=u:r:system_server:s0 tcontext=u:r:init:s0 tclass=binder permissive=1
[   14.878949] type=1400 audit(1517723894.280:194): avc: denied { transfer } for pid=1685 comm="system_server" scontext=u:r:system_server:s0 tcontext=u:r:init:s0 tclass=binder permissive=1
[   14.879428] type=1400 audit(1517723894.280:195): avc: denied { getattr } for pid=1324 comm="servicemanager" scontext=u:r:init:s0 tcontext=u:r:system_server:s0 tclass=process permissive=1
[   14.889405] input: Android Power Button as /devices/virtual/input/input14
[   14.897572] ueventd: blacklisted module evbug: 1
[   21.504404] type=1400 audit(1517723900.905:207): avc: denied { getattr } for pid=1338 comm="installd" path="/data/data/com.android.cts.priv.ctsshim" dev="mmcblk1p2" ino=1584801 scontext=u:r:init:s0 tcontext=u:object_r:app_data_file:s0:c512,c768 tclass=dir permissive=1
[   21.506587] type=1400 audit(1517723900.908:208): avc: denied { read } for pid=1338 comm="installd" name="com.android.cts.priv.ctsshim" dev="mmcblk1p2" ino=1584801 scontext=u:r:init:s0 tcontext=u:object_r:app_data_file:s0:c512,c768 tclass=dir permissive=1
[   21.531160] type=1400 audit(1517723900.932:209): avc: denied { setattr } for pid=1338 comm="installd" name="com.google.android.googlequicksearchbox" dev="mmcblk1p2" ino=1584843 scontext=u:r:init:s0 tcontext=u:object_r:app_data_file:s0:c512,c768 tclass=dir permissive=1
[   21.531956] type=1400 audit(1517723900.933:210): avc: denied { getattr } for pid=1338 comm="installd" path="/data/data/com.google.android.googlequicksearchbox/lib" dev="mmcblk1p2" ino=1569806 scontext=u:r:init:s0 tcontext=u:object_r:app_data_file:s0 tclass=lnk_file permissive=1
[   21.532091] type=1400 audit(1517723900.933:211): avc: denied { write } for pid=1338 comm="installd" name="com.google.android.googlequicksearchbox" dev="mmcblk1p2" ino=1584843 scontext=u:r:init:s0 tcontext=u:object_r:app_data_file:s0:c512,c768 tclass=dir permissive=1
[   21.532204] type=1400 audit(1517723900.933:212): avc: denied { remove_name } for pid=1338 comm="installd" name="lib" dev="mmcblk1p2" ino=1569806 scontext=u:r:init:s0 tcontext=u:object_r:app_data_file:s0:c512,c768 tclass=dir permissive=1
[   21.532294] type=1400 audit(1517723900.933:213): avc: denied { unlink } for pid=1338 comm="installd" name="lib" dev="mmcblk1p2" ino=1569806 scontext=u:r:init:s0 tcontext=u:object_r:app_data_file:s0 tclass=lnk_file permissive=1
[   21.532398] type=1400 audit(1517723900.933:214): avc: denied { add_name } for pid=1338 comm="installd" name="lib" scontext=u:r:init:s0 tcontext=u:object_r:app_data_file:s0:c512,c768 tclass=dir permissive=1
[   21.532479] type=1400 audit(1517723900.933:215): avc: denied { create } for pid=1338 comm="installd" name="lib" scontext=u:r:init:s0 tcontext=u:object_r:app_data_file:s0 tclass=lnk_file permissive=1
[   22.090677] type=1400 audit(1517723901.492:216): avc: denied { write } for pid=1323 comm="lmkd" name="oom_score_adj" dev="proc" ino=12470 scontext=u:r:init:s0 tcontext=u:r:system_server:s0 tclass=file permissive=1
[   22.124232] healthd: battery l=99 v=4229 t=0.0 h=1 st=3 c=907 fc=7462000 cc=99 chg=
[   22.359320] init: write_file: Unable to open '/proc/sys/vm/extra_free_kbytes': No such file or directory
[   23.596127] sdcardfs version 2.0
[   23.596131] sdcardfs: dev_name -> /data/media
[   23.596133] sdcardfs: options -> fsuid=1023,fsgid=1023,multiuser,mask=6,userid=0,gid=1015
[   23.596135] sdcardfs: mnt -> ffff89d7b4d4b3a0
[   23.596165] sdcardfs: mounted on top of /data/media type ext4
[   23.596298] sdcardfs version 2.0
[   23.596300] sdcardfs: dev_name -> /data/media
[   23.596302] sdcardfs: options -> fsuid=1023,fsgid=1023,multiuser,mask=23,userid=0,gid=9997
[   23.596304] sdcardfs: mnt -> ffff89d776114560
[   23.596321] sdcardfs: mounted on top of /data/media type ext4
[   23.596425] sdcardfs version 2.0
[   23.596427] sdcardfs: dev_name -> /data/media
[   23.596428] sdcardfs: options -> fsuid=1023,fsgid=1023,multiuser,mask=7,userid=0,gid=9997
[   23.596430] sdcardfs: mnt -> ffff89d776115aa0
[   23.596447] sdcardfs: mounted on top of /data/media type ext4
[   23.641684] audit: audit_lost=85 audit_rate_limit=20 audit_backlog_limit=64
[   23.641688] audit: rate limit exceeded
[   23.844280] init: Service wpa_supplicant does not have a SELinux domain defined.
[   23.844294] init: Starting service 'wpa_supplicant'...
[   24.069782] modprobe: /sbin/modprobe netdev-p2p-dev-wlan0
[   25.122733] init: Service 'bootanim' (pid 1444) exited with status 0
[   25.147595] init: Service exec 4 (/system/bin/logwrapper) does not have a SELinux domain defined.
[   25.147622] init: Starting service 'exec 4 (/system/bin/logwrapper)'...
[   25.423128] audit: audit_lost=225 audit_rate_limit=20 audit_backlog_limit=64
[   25.423132] audit: rate limit exceeded
[   25.548206] init: Service 'exec 4 (/system/bin/logwrapper)' (pid 2080) exited with status 0
[   25.548508] init: Service exec 5 (/system/bin/bootstat) does not have a SELinux domain defined.
[   25.548520] init: Starting service 'exec 5 (/system/bin/bootstat)'...
[   25.567008] init: Service 'exec 5 (/system/bin/bootstat)' (pid 2146) exited with status 0
[   25.758854] FAT-fs (mmcblk2p1): Volume was not properly unmounted. Some data may be corrupt. Please run fsck.
[   25.771731] sdcardfs version 2.0
[   25.771735] sdcardfs: dev_name -> /mnt/media_rw/3566-3432
[   25.771737] sdcardfs: options -> fsuid=1023,fsgid=1023,mask=6,userid=0,gid=1015
[   25.771740] sdcardfs: mnt -> ffff89d769251aa0
[   25.771769] sdcardfs: mounted on top of /mnt/media_rw/3566-3432 type vfat
[   25.771952] sdcardfs version 2.0
[   25.771954] sdcardfs: dev_name -> /mnt/media_rw/3566-3432
[   25.771956] sdcardfs: options -> fsuid=1023,fsgid=1023,mask=18,userid=0,gid=9997
[   25.771958] sdcardfs: mnt -> ffff89d76af9e3a0
[   25.771976] sdcardfs: mounted on top of /mnt/media_rw/3566-3432 type vfat
[   25.772080] sdcardfs version 2.0
[   25.772082] sdcardfs: dev_name -> /mnt/media_rw/3566-3432
[   25.772084] sdcardfs: options -> fsuid=1023,fsgid=1023,mask=18,userid=0,gid=9997
[   25.772085] sdcardfs: mnt -> ffff89d76afa3c60
[   25.772103] sdcardfs: mounted on top of /mnt/media_rw/3566-3432 type vfat
[   26.445127] audit: audit_lost=248 audit_rate_limit=20 audit_backlog_limit=64
[   26.445131] audit: rate limit exceeded
[   27.210968] type=1400 audit(1517723906.612:475): avc: denied { wake_alarm } for pid=1685 comm="system_server" capability=35 scontext=u:r:system_server:s0 tcontext=u:r:system_server:s0 tclass=capability2 permissive=1
[   27.211245] type=1400 audit(1517723906.612:476): avc: denied { read } for pid=1257 comm="logd.auditd" scontext=u:r:init:s0 tcontext=u:r:init:s0 tclass=netlink_audit_socket permissive=1
[   27.211328] type=1400 audit(1517723906.612:477): avc: denied { write } for pid=1257 comm="logd.auditd" path="/dev/kmsg" dev="tmpfs" ino=9016 scontext=u:r:init:s0 tcontext=u:object_r:kmsg_device:s0 tclass=chr_file permissive=1
[   27.540826] type=1400 audit(1517723906.942:478): avc: denied { getattr } for pid=2498 comm="gle.android.gms" path="/system" dev="mmcblk1p2" ino=1576381 scontext=u:r:priv_app:s0:c512,c768 tcontext=u:object_r:unlabeled:s0 tclass=dir permissive=1
[   27.586503] type=1400 audit(1517723906.986:479): avc: denied { dyntransition } for pid=2519 comm="main" scontext=u:r:init:s0 tcontext=u:r:untrusted_app:s0:c512,c768 tclass=process permissive=1
[   27.917535] type=1400 audit(1517723907.318:480): avc: denied { connectto } for pid=2139 comm="pool-7-thread-1" path="/dev/socket/dnsproxyd" scontext=u:r:untrusted_app:s0:c512,c768 tcontext=u:r:init:s0 tclass=unix_stream_socket permissive=1
[   29.477520] type=1400 audit(1517723908.878:481): avc: denied { read } for pid=1869 comm="HeapTaskDaemon" path=2F6465762F6173686D656D2F64616C76696B2D6D61696E207370616365202864656C6574656429 dev="tmpfs" ino=12418 scontext=u:r:radio:s0 tcontext=u:object_r:init_tmpfs:s0 tclass=file permissive=1
[   31.150715] type=1400 audit(1517723910.552:482): avc: denied { read } for pid=1685 comm="HeapTaskDaemon" path=2F6465762F6173686D656D2F64616C76696B2D6D61696E207370616365202864656C6574656429 dev="tmpfs" ino=12418 scontext=u:r:system_server:s0 tcontext=u:object_r:init_tmpfs:s0 tclass=file permissive=1
[   31.485159] type=1400 audit(1517723910.886:483): avc: denied { getattr } for pid=1324 comm="servicemanager" scontext=u:r:init:s0 tcontext=u:r:priv_app:s0:c512,c768 tclass=process permissive=1
[   31.701270] type=1400 audit(1517723911.102:484): avc: denied { getattr } for pid=2173 comm="earchbox:search" path="/system/framework/framework-res.apk" dev="mmcblk1p2" ino=1598813 scontext=u:r:priv_app:s0:c512,c768 tcontext=u:object_r:unlabeled:s0 tclass=file permissive=1
[   32.627253] type=1400 audit(1517723912.028:485): avc: denied { getattr } for pid=1800 comm="ndroid.systemui" path="/system/framework/framework-res.apk" dev="mmcblk1p2" ino=1598813 scontext=u:r:platform_app:s0:c512,c768 tcontext=u:object_r:unlabeled:s0 tclass=file permissive=1
[   32.722478] type=1400 audit(1517723912.123:486): avc: denied { getattr } for pid=2647 comm="a.podcastaddict" path="/system/framework/framework-res.apk" dev="mmcblk1p2" ino=1598813 scontext=u:r:untrusted_app:s0:c512,c768 tcontext=u:object_r:unlabeled:s0 tclass=file permissive=1
[   32.903728] type=1400 audit(1517723912.305:487): avc: denied { write } for pid=1323 comm="lmkd" name="oom_score_adj" dev="proc" ino=10859 scontext=u:r:init:s0 tcontext=u:r:platform_app:s0:c512,c768 tclass=file permissive=1
[   32.941985] type=1400 audit(1517723912.343:488): avc: denied { read } for pid=2647 comm="Thread-8" name="com.android.location.provider.odex" dev="mmcblk1p2" ino=1598857 scontext=u:r:untrusted_app:s0:c512,c768 tcontext=u:object_r:unlabeled:s0 tclass=file permissive=1
[   32.942093] type=1400 audit(1517723912.343:489): avc: denied { open } for pid=2647 comm="Thread-8" path="/system/framework/oat/x86_64/com.android.location.provider.odex" dev="mmcblk1p2" ino=1598857 scontext=u:r:untrusted_app:s0:c512,c768 tcontext=u:object_r:unlabeled:s0 tclass=file permissive=1
[   32.942202] type=1400 audit(1517723912.343:490): avc: denied { execute } for pid=2647 comm="Thread-8" path="/system/framework/oat/x86_64/com.android.location.provider.odex" dev="mmcblk1p2" ino=1598857 scontext=u:r:untrusted_app:s0:c512,c768 tcontext=u:object_r:unlabeled:s0 tclass=file permissive=1
[   33.267870] type=1400 audit(1517723912.669:491): avc: denied { dyntransition } for pid=2728 comm="main" scontext=u:r:init:s0 tcontext=u:r:priv_app:s0:c512,c768 tclass=process permissive=1
[   33.273226] type=1400 audit(1517723912.674:492): avc: denied { getattr } for pid=2734 comm="su" path="/system" dev="mmcblk1p2" ino=1576381 scontext=u:r:untrusted_app:s0:c512,c768 tcontext=u:object_r:unlabeled:s0 tclass=dir permissive=1
[   33.304203] type=1400 audit(1517723912.704:493): avc: denied { sys_ptrace } for pid=1377 comm="daemonsu" capability=19 scontext=u:r:init:s0 tcontext=u:r:init:s0 tclass=capability permissive=1
[   33.304552] type=1400 audit(1517723912.704:494): avc: denied { read } for pid=2728 comm=".android.dialer" name="Dialer.odex" dev="mmcblk1p2" ino=10575 scontext=u:r:priv_app:s0:c512,c768 tcontext=u:object_r:unlabeled:s0 tclass=file permissive=1
[   33.528662] audit: audit_lost=276 audit_rate_limit=20 audit_backlog_limit=64
[   33.528666] audit: rate limit exceeded
[   37.871920] type=1400 audit(1517723917.269:551): avc: denied { execute_no_trans } for pid=3548 comm="Binder:3383_3" path="/system/bin/dex2oat" dev="mmcblk1p2" ino=1598092 scontext=u:r:priv_app:s0:c512,c768 tcontext=u:object_r:unlabeled:s0 tclass=file permissive=1
[   38.691434] type=1400 audit(1517723918.092:552): avc: denied { read write } for pid=3552 comm="IntentService[H" name="card0" dev="tmpfs" ino=4894 scontext=u:r:platform_app:s0:c512,c768 tcontext=u:object_r:device:s0 tclass=chr_file permissive=1
[   38.691548] type=1400 audit(1517723918.092:553): avc: denied { open } for pid=3552 comm="IntentService[H" path="/dev/dri/card0" dev="tmpfs" ino=4894 scontext=u:r:platform_app:s0:c512,c768 tcontext=u:object_r:device:s0 tclass=chr_file permissive=1
[   38.691652] type=1400 audit(1517723918.093:554): avc: denied { ioctl } for pid=3552 comm="IntentService[H" path="/dev/dri/card0" dev="tmpfs" ino=4894 ioctlcmd=0x6400 scontext=u:r:platform_app:s0:c512,c768 tcontext=u:object_r:device:s0 tclass=chr_file permissive=1
[   38.691759] type=1400 audit(1517723918.093:555): avc: denied { getattr } for pid=3552 comm="IntentService[H" path="/dev/dri/card0" dev="tmpfs" ino=4894 scontext=u:r:platform_app:s0:c512,c768 tcontext=u:object_r:device:s0 tclass=chr_file permissive=1
[   38.691835] type=1400 audit(1517723918.093:556): avc: denied { read } for pid=3552 comm="IntentService[H" name="dri" dev="tmpfs" ino=4891 scontext=u:r:platform_app:s0:c512,c768 tcontext=u:object_r:device:s0 tclass=dir permissive=1
[   38.691909] type=1400 audit(1517723918.093:557): avc: denied { open } for pid=3552 comm="IntentService[H" path="/dev/dri" dev="tmpfs" ino=4891 scontext=u:r:platform_app:s0:c512,c768 tcontext=u:object_r:device:s0 tclass=dir permissive=1
[   38.697138] type=1400 audit(1517723918.098:558): avc: denied { mounton } for pid=3572 comm="main" path="/proc/cpuinfo" dev="proc" ino=4026531908 scontext=u:r:init:s0 tcontext=u:object_r:proc_cpuinfo:s0 tclass=file permissive=1
[   38.814810] type=1400 audit(1517723918.216:559): avc: denied { read write } for pid=3383 comm="Binder:3383_2" name="card0" dev="tmpfs" ino=4894 scontext=u:r:priv_app:s0:c512,c768 tcontext=u:object_r:device:s0 tclass=chr_file permissive=1
[   38.815711] type=1400 audit(1517723918.217:560): avc: denied { open } for pid=3383 comm="Binder:3383_2" path="/dev/dri/card0" dev="tmpfs" ino=4894 scontext=u:r:priv_app:s0:c512,c768 tcontext=u:object_r:device:s0 tclass=chr_file permissive=1
[   40.106453] Binder:3383_2[3402]: segfault at 14 ip 000078109ebd0705 sp 00007810bb8fb890 error 4 in i965_dri.so[78109eb72000+5e9000]
[   40.127239] binder: send failed reply for transaction 51180 to 2308:2308
[   42.186598] Binder:3705_3[3732]: segfault at 14 ip 000078109ea9c705 sp 00007810bb7fc510 error 4 in i965_dri.so[78109ea3e000+5e9000]
[   43.599417] type=1400 audit(1517723923.000:598): avc: denied { check_context } for pid=4021 comm="main" scontext=u:r:init:s0 tcontext=u:object_r:kernel:s0 tclass=security permissive=1
[   43.636029] type=1400 audit(1517723923.037:599): avc: denied { sendto } for pid=2245 comm="GAThread" path="/dev/socket/logdw" scontext=u:r:platform_app:s0:c512,c768 tcontext=u:r:init:s0 tclass=unix_dgram_socket permissive=1
[   43.653704] type=1400 audit(1517723923.055:600): avc: denied { sendto } for pid=2308 comm=".gms.persistent" path="/dev/socket/logdw" scontext=u:r:priv_app:s0:c512,c768 tcontext=u:r:init:s0 tclass=unix_dgram_socket permissive=1
[   43.732845] type=1400 audit(1517723923.134:601): avc: denied { call } for pid=2498 comm="gle.android.gms" scontext=u:r:priv_app:s0:c512,c768 tcontext=u:r:init:s0 tclass=binder permissive=1
[   43.762700] type=1400 audit(1517723923.163:602): avc: denied { sendto } for pid=1869 comm="m.android.phone" path="/dev/socket/logdw" scontext=u:r:radio:s0 tcontext=u:r:init:s0 tclass=unix_dgram_socket permissive=1
[   43.864453] Binder:3948_3[3962]: segfault at 14 ip 000078109eba8705 sp 00007810bb7fc510 error 4 in i965_dri.so[78109eb4a000+5e9000]
[   43.956272] type=1400 audit(1517723923.357:603): avc: denied { call } for pid=1869 comm="m.android.phone" scontext=u:r:radio:s0 tcontext=u:r:init:s0 tclass=binder permissive=1
[   44.813966] type=1400 audit(1517723924.215:604): avc: denied { transfer } for pid=1324 comm="servicemanager" scontext=u:r:init:s0 tcontext=u:r:priv_app:s0:c512,c768 tclass=binder permissive=1
[   45.031791] type=1400 audit(1517723924.433:605): avc: denied { connectto } for pid=4112 comm="Binder:4112_2" path="/dev/socket/dnsproxyd" scontext=u:r:priv_app:s0:c512,c768 tcontext=u:r:init:s0 tclass=unix_stream_socket permissive=1
[   46.280993] Binder:4112_2[4125]: segfault at 14 ip 000078109ecab705 sp 00007810bb8fb510 error 4 in i965_dri.so[78109ec4d000+5e9000]
[   47.020772] type=1400 audit(1517723926.422:606): avc: denied { write } for pid=1860 comm="wpa_supplicant" name="wpa_ctrl_1685-1" dev="mmcblk1p2" ino=1576664 scontext=u:r:init:s0 tcontext=u:object_r:system_wpa_socket:s0 tclass=sock_file permissive=1
[   47.021930] type=1400 audit(1517723926.422:607): avc: denied { sendto } for pid=1860 comm="wpa_supplicant" path="/data/misc/wifi/sockets/wpa_ctrl_1685-1" scontext=u:r:init:s0 tcontext=u:r:system_server:s0 tclass=unix_dgram_socket permissive=1
[   49.264502] type=1400 audit(1517723928.666:616): avc: denied { read write } for pid=4205 comm="Binder:4205_2" name="card0" dev="tmpfs" ino=4894 scontext=u:r:priv_app:s0:c512,c768 tcontext=u:object_r:device:s0 tclass=chr_file permissive=1
[   49.264614] type=1400 audit(1517723928.666:617): avc: denied { open } for pid=4205 comm="Binder:4205_2" path="/dev/dri/card0" dev="tmpfs" ino=4894 scontext=u:r:priv_app:s0:c512,c768 tcontext=u:object_r:device:s0 tclass=chr_file permissive=1
[   49.264716] type=1400 audit(1517723928.666:618): avc: denied { ioctl } for pid=4205 comm="Binder:4205_2" path="/dev/dri/card0" dev="tmpfs" ino=4894 ioctlcmd=0x6400 scontext=u:r:priv_app:s0:c512,c768 tcontext=u:object_r:device:s0 tclass=chr_file permissive=1
[   49.264790] type=1400 audit(1517723928.666:619): avc: denied { getattr } for pid=4205 comm="Binder:4205_2" path="/dev/dri/card0" dev="tmpfs" ino=4894 scontext=u:r:priv_app:s0:c512,c768 tcontext=u:object_r:device:s0 tclass=chr_file permissive=1
[   49.318650] type=1400 audit(1517723928.720:620): avc: denied { sys_ptrace } for pid=1311 comm="debuggerd64" capability=19 scontext=u:r:init:s0 tcontext=u:r:init:s0 tclass=capability permissive=1
[   49.925307] type=1400 audit(1517723929.326:621): avc: denied { write } for pid=4237 comm="debuggerd64" name="logdr" dev="tmpfs" ino=7280 scontext=u:r:init:s0 tcontext=u:object_r:logdr_socket:s0 tclass=sock_file permissive=1
[   50.352280] Binder:4205_2[4218]: segfault at 14 ip 000078109ecab705 sp 00007810bb8fb510 error 4 in i965_dri.so[78109ec4d000+5e9000]
[   50.385184] type=1400 audit(1517723929.786:622): avc: denied { transfer } for pid=1325 comm="Binder:1325_2" scontext=u:r:init:s0 tcontext=u:r:system_server:s0 tclass=binder permissive=1
[   60.609667] type=1400 audit(1517723940.011:623): avc: denied { read } for pid=1800 comm="ndroid.systemui" scontext=u:r:platform_app:s0:c512,c768 tcontext=u:r:init:s0 tclass=unix_stream_socket permissive=1
[   60.609885] type=1400 audit(1517723940.011:624): avc: denied { call } for pid=1800 comm="ndroid.systemui" scontext=u:r:platform_app:s0:c512,c768 tcontext=u:r:init:s0 tclass=binder permissive=1
[   60.613159] type=1400 audit(1517723940.014:625): avc: denied { ioctl } for pid=1800 comm="RenderThread" path="/dev/dri/card0" dev="tmpfs" ino=4894 ioctlcmd=0x6457 scontext=u:r:platform_app:s0:c512,c768 tcontext=u:object_r:device:s0 tclass=chr_file permissive=1
[   60.614374] type=1400 audit(1517723940.015:626): avc: denied { read } for pid=2282 comm="droid.launcher3" scontext=u:r:untrusted_app:s0:c512,c768 tcontext=u:r:init:s0 tclass=unix_stream_socket permissive=1
[   60.631514] type=1400 audit(1517723940.032:627): avc: denied { ioctl } for pid=2282 comm="RenderThread" path="/dev/dri/card0" dev="tmpfs" ino=4894 ioctlcmd=0x6457 scontext=u:r:untrusted_app:s0:c512,c768 tcontext=u:object_r:device:s0 tclass=chr_file permissive=1
[   60.640616] type=1400 audit(1517723940.042:628): avc: denied { read write } for pid=2282 comm="RenderThread" path="/dev/dri/card0" dev="tmpfs" ino=4894 scontext=u:r:untrusted_app:s0:c512,c768 tcontext=u:object_r:device:s0 tclass=chr_file permissive=1
[   61.626454] type=1400 audit(1517723941.027:629): avc: denied { connectto } for pid=3819 comm="Thread-8" path="/dev/socket/dnsproxyd" scontext=u:r:untrusted_app:s0:c512,c768 tcontext=u:r:init:s0 tclass=unix_stream_socket permissive=1
[   71.198791] type=1400 audit(1517723950.600:630): avc: denied { getattr } for pid=1324 comm="servicemanager" scontext=u:r:init:s0 tcontext=u:r:untrusted_app:s0:c512,c768 tclass=process permissive=1
[   71.495262] binder: 1685:1736 transaction failed 29189/-22, size 348-0 line 2939
[   87.153015] type=1400 audit(1517723966.554:631): avc: denied { read write } for pid=1800 comm="RenderThread" path="/dev/dri/card0" dev="tmpfs" ino=4894 scontext=u:r:platform_app:s0:c512,c768 tcontext=u:object_r:device:s0 tclass=chr_file permissive=1
[   99.556864] healthd: battery l=99 v=4246 t=0.0 h=1 st=3 c=640 fc=7462000 cc=99 chg=
[  121.609957] type=1400 audit(1517724001.011:632): avc: denied { dyntransition } for pid=4364 comm="main" scontext=u:r:init:s0 tcontext=u:r:untrusted_app:s0:c512,c768 tclass=process permissive=1
[  121.610330] type=1400 audit(1517724001.011:633): avc: denied { write } for pid=1257 comm="logd.auditd" path="/dev/kmsg" dev="tmpfs" ino=9016 scontext=u:r:init:s0 tcontext=u:object_r:kmsg_device:s0 tclass=chr_file permissive=1
[  159.614905] healthd: battery l=99 v=4245 t=0.0 h=1 st=3 c=639 fc=7462000 cc=99 chg=
[  183.570528] type=1400 audit(1517724062.971:634): avc: denied { write } for pid=1685 comm="android.display" path=2F64726D206D6D206F626A656374202864656C6574656429 dev="tmpfs" ino=39932 scontext=u:r:system_server:s0 tcontext=u:object_r:init_tmpfs:s0 tclass=file permissive=1
[  183.586983] type=1400 audit(1517724062.988:635): avc: denied { read } for pid=1685 comm="android.ui" scontext=u:r:system_server:s0 tcontext=u:r:init:s0 tclass=unix_stream_socket permissive=1
[  184.675689] type=1400 audit(1517724064.077:636): avc: denied { getattr } for pid=1324 comm="servicemanager" scontext=u:r:init:s0 tcontext=u:r:platform_app:s0:c512,c768 tclass=process permissive=1
[  184.676105] type=1400 audit(1517724064.077:637): avc: denied { transfer } for pid=1324 comm="servicemanager" scontext=u:r:init:s0 tcontext=u:r:platform_app:s0:c512,c768 tclass=binder permissive=1
[  184.830484] type=1400 audit(1517724064.231:638): avc: denied { call } for pid=1335 comm="Binder:1335_2" scontext=u:r:init:s0 tcontext=u:r:init:s0 tclass=binder permissive=1
[  184.831163] type=1400 audit(1517724064.232:639): avc: denied { transfer } for pid=1324 comm="servicemanager" scontext=u:r:init:s0 tcontext=u:r:init:s0 tclass=binder permissive=1
[  184.980533] type=1400 audit(1517724064.381:640): avc: denied { write } for pid=1335 comm="AudioOut_D" name="pcmC0D0p" dev="tmpfs" ino=7263 scontext=u:r:init:s0 tcontext=u:object_r:audio_device:s0 tclass=chr_file permissive=1[  185.061612] intel_sst_acpi 80860F28:00: FW Version 01.0c.00.01
[  185.061896] type=1400 audit(1517724064.463:641): avc: denied { ioctl } for pid=1335 comm="AudioOut_D" path="/dev/snd/pcmC0D0p" dev="tmpfs" ino=7263 ioctlcmd=0x4101 scontext=u:r:init:s0 tcontext=u:object_r:audio_device:s0 tclass=chr_file permissive=1
[  191.736921] type=1400 audit(1517724071.138:642): avc: denied { open } for pid=4396 comm="a.podcastaddict" path="/dev/dri/card0" dev="tmpfs" ino=4894 scontext=u:r:untrusted_app:s0:c512,c768 tcontext=u:object_r:device:s0 tclass=chr_file permissive=1
[  191.737297] type=1400 audit(1517724071.138:643): avc: denied { getattr } for pid=4396 comm="a.podcastaddict" path="/dev/dri/card0" dev="tmpfs" ino=4894 scontext=u:r:untrusted_app:s0:c512,c768 tcontext=u:object_r:device:s0 tclass=chr_file permissive=1
[  191.737617] type=1400 audit(1517724071.138:644): avc: denied { read } for pid=4396 comm="a.podcastaddict" name="dri" dev="tmpfs" ino=4891 scontext=u:r:untrusted_app:s0:c512,c768 tcontext=u:object_r:device:s0 tclass=dir permissive=1
[  191.737860] type=1400 audit(1517724071.138:645): avc: denied { open } for pid=4396 comm="a.podcastaddict" path="/dev/dri" dev="tmpfs" ino=4891 scontext=u:r:untrusted_app:s0:c512,c768 tcontext=u:object_r:device:s0 tclass=dir permissive=1
[  191.797552] type=1400 audit(1517724071.198:646): avc: denied { transfer } for pid=4396 comm="Thread-23" scontext=u:r:untrusted_app:s0:c512,c768 tcontext=u:r:init:s0 tclass=binder permissive=1
[  191.832455] type=1400 audit(1517724071.233:647): avc: denied { write } for pid=1325 comm="Binder:1325_5" path="socket:[41376]" dev="sockfs" ino=41376 scontext=u:r:untrusted_app:s0:c512,c768 tcontext=u:r:init:s0 tclass=unix_stream_socket permissive=1
[  191.905867] type=1400 audit(1517724071.305:648): avc: denied { getattr } for pid=1800 comm="VolumeDialogCon" path="/system/framework/framework-res.apk" dev="mmcblk1p2" ino=1598813 scontext=u:r:platform_app:s0:c512,c768 tcontext=u:object_r:unlabeled:s0 tclass=file permissive=1
[  192.125605] type=1400 audit(1517724071.526:649): avc: denied { getattr } for pid=2498 comm="gle.android.gms" path="/system/framework/framework-res.apk" dev="mmcblk1p2" ino=1598813 scontext=u:r:priv_app:s0:c512,c768 tcontext=u:object_r:unlabeled:s0 tclass=file permissive=1
[  219.701653] healthd: battery l=99 v=4242 t=0.0 h=1 st=3 c=641 fc=7462000 cc=99 chg=
[  226.695621] type=1400 audit(1517724106.097:650): avc: denied { use } for pid=4396 comm="Thread-71" path=2F73746F726167652F656D756C617465642F302F416E64726F69642F646174612F636F6D2E62616D62756E612E706F64636173746164646963742F66696C65732F706F64636173742F50656F706C6520466978696E672074686520576F726C642F50656F706C65466978696E67546865576F726C642D32303138303131362D4B696473566572737573436172735F3238322E6D7033 dev="sdcardfs" ino=8280 scontext=u:r:init:s0 tcontext=u:r:untrusted_app:s0:c512,c768 tclass=fd permissive=1
[  226.695775] type=1400 audit(1517724106.097:651): avc: denied { read } for pid=4396 comm="Thread-71" path=2F73746F726167652F656D756C617465642F302F416E64726F69642F646174612F636F6D2E62616D62756E612E706F64636173746164646963742F66696C65732F706F64636173742F50656F706C6520466978696E672074686520576F726C642F50656F706C65466978696E67546865576F726C642D32303138303131362D4B696473566572737573436172735F3238322E6D7033 dev="sdcardfs" ino=8280 scontext=u:r:init:s0 tcontext=u:object_r:sdcardfs:s0 tclass=file permissive=1
[  226.695889] type=1400 audit(1517724106.097:652): avc: denied { getattr } for pid=1346 comm="Binder:1346_3" path=2F73746F726167652F656D756C617465642F302F416E64726F69642F646174612F636F6D2E62616D62756E612E706F64636173746164646963742F66696C65732F706F64636173742F50656F706C6520466978696E672074686520576F726C642F50656F706C65466978696E67546865576F726C642D32303138303131362D4B696473566572737573436172735F3238322E6D7033 dev="sdcardfs" ino=8280 scontext=u:r:init:s0 tcontext=u:object_r:sdcardfs:s0 tclass=file permissive=1
[  226.703089] intel_sst_acpi 80860F28:00: FW Version 01.0c.00.01
[  226.876746] type=1400 audit(1517724106.278:653): avc: denied { call } for pid=1335 comm="ApmOutput" scontext=u:r:init:s0 tcontext=u:r:platform_app:s0:c512,c768 tclass=binder permissive=1
[  226.883203] type=1400 audit(1517724106.283:654): avc: denied { read } for pid=1800 comm="ndroid.systemui" path="/system/framework/framework-res.apk" dev="mmcblk1p2" ino=1598813 scontext=u:r:platform_app:s0:c512,c768 tcontext=u:object_r:unlabeled:s0 tclass=file permissive=1
[  227.165046] type=1400 audit(1517724106.566:655): avc: denied { getattr } for pid=1324 comm="servicemanager" scontext=u:r:init:s0 tcontext=u:r:priv_app:s0:c512,c768 tclass=process permissive=1
[  247.000214] type=1400 audit(1517724126.401:656): avc: denied { transfer } for pid=1800 comm="RenderThread" scontext=u:r:platform_app:s0:c512,c768 tcontext=u:r:init:s0 tclass=binder permissive=1
[  249.680712] type=1400 audit(1517724129.081:657): avc: denied { read } for pid=1347 comm="netd" scontext=u:r:init:s0 tcontext=u:r:init:s0 tclass=netlink_kobject_uevent_socket permissive=1
[  249.686677] type=1400 audit(1517724129.088:658): avc: denied { getattr } for pid=1324 comm="servicemanager" scontext=u:r:init:s0 tcontext=u:r:system_server:s0 tclass=process permissive=1
[  286.398879] intel_sst_acpi 80860F28:00: FW Version 01.0c.00.01
[  309.765132] healthd: battery l=99 v=4240 t=0.0 h=1 st=3 c=687 fc=7462000 cc=99 chg=
[  322.758393] type=1400 audit(1517724202.159:659): avc: denied { getpgid } for pid=1333 comm="main" scontext=u:r:init:s0 tcontext=u:r:system_server:s0 tclass=process permissive=1
[  322.758872] type=1400 audit(1517724202.160:660): avc: denied { dyntransition } for pid=4628 comm="main" scontext=u:r:init:s0 tcontext=u:r:system_app:s0 tclass=process permissive=1
[  322.760539] type=1400 audit(1517724202.161:661): avc: denied { sendto } for pid=4628 comm="system:ui" path="/dev/socket/logdw" scontext=u:r:system_app:s0 tcontext=u:r:init:s0 tclass=unix_dgram_socket permissive=1
[  322.778002] type=1400 audit(1517724202.179:662): avc: denied { call } for pid=4628 comm="re-initialized>" scontext=u:r:system_app:s0 tcontext=u:r:init:s0 tclass=binder permissive=1
[  322.779495] type=1400 audit(1517724202.179:663): avc: denied { getattr } for pid=1324 comm="servicemanager" scontext=u:r:init:s0 tcontext=u:r:system_app:s0 tclass=process permissive=1
[  322.779628] type=1400 audit(1517724202.179:664): avc: denied { transfer } for pid=1324 comm="servicemanager" scontext=u:r:init:s0 tcontext=u:r:system_app:s0 tclass=binder permissive=1
[  322.780937] type=1400 audit(1517724202.182:665): avc: denied { write } for pid=1323 comm="lmkd" name="oom_score_adj" dev="proc" ino=44182 scontext=u:r:init:s0 tcontext=u:r:system_app:s0 tclass=file permissive=1
[  322.791815] type=1400 audit(1517724202.193:666): avc: denied { getattr } for pid=4628 comm="system:ui" path="/system/framework/framework-res.apk" dev="mmcblk1p2" ino=1598813 scontext=u:r:system_app:s0 tcontext=u:object_r:unlabeled:s0 tclass=file permissive=1
[  322.818484] intel_sst_acpi 80860F28:00: FW Version 01.0c.00.01
[  322.819640] type=1400 audit(1517724202.221:667): avc: denied { read } for pid=4628 comm="system:ui" name="Eleven.apk" dev="mmcblk1p2" ino=1577997 scontext=u:r:system_app:s0 tcontext=u:object_r:unlabeled:s0 tclass=file permissive=1
[  322.819752] type=1400 audit(1517724202.221:668): avc: denied { open } for pid=4628 comm="system:ui" path="/system/app/Eleven/Eleven.apk" dev="mmcblk1p2" ino=1577997 scontext=u:r:system_app:s0 tcontext=u:object_r:unlabeled:s0 tclass=file permissive=1
[  327.923984] type=1400 audit(1517724207.325:680): avc: denied { read } for pid=1860 comm="wpa_supplicant" scontext=u:r:init:s0 tcontext=u:r:init:s0 tclass=netlink_route_socket permissive=1
[  327.924208] type=1400 audit(1517724207.325:681): avc: denied { read } for pid=1347 comm="netd" scontext=u:r:init:s0 tcontext=u:r:init:s0 tclass=netlink_route_socket permissive=1
[  327.926444] type=1400 audit(1517724207.326:682): avc: denied { write } for pid=1860 comm="wpa_supplicant" scontext=u:r:init:s0 tcontext=u:r:init:s0 tclass=netlink_route_socket permissive=1
[  327.926713] type=1400 audit(1517724207.326:683): avc: denied { nlmsg_write } for pid=1860 comm="wpa_supplicant" scontext=u:r:init:s0 tcontext=u:r:init:s0 tclass=netlink_route_socket permissive=1
[  330.762761] type=1400 audit(1517724210.164:684): avc: denied { read } for pid=4628 comm="HeapTaskDaemon" path=2F6465762F6173686D656D2F64616C76696B2D6D61696E2073706163652031202864656C6574656429 dev="tmpfs" ino=12419 scontext=u:r:system_app:s0 tcontext=u:object_r:init_tmpfs:s0 tclass=file permissive=1
[  331.600010] type=1400 audit(1517724211.001:685): avc: denied { setattr } for pid=1347 comm="netd" name="UDPv6" dev="sockfs" ino=43717 scontext=u:r:init:s0 tcontext=u:r:init:s0 tclass=udp_socket permissive=1
[  331.600155] type=1400 audit(1517724211.001:686): avc: denied { connect } for pid=1347 comm="netd" scontext=u:r:init:s0 tcontext=u:r:init:s0 tclass=udp_socket permissive=1
[  331.980762] type=1400 audit(1517724211.382:687): avc: denied { ioctl } for pid=1685 comm="InputDispatcher" path="/dev/dri/card0" dev="tmpfs" ino=4894 ioctlcmd=0x640b scontext=u:r:system_server:s0 tcontext=u:object_r:device:s0 tclass=chr_file permissive=1
[  334.631786] type=1400 audit(1517724214.033:688): avc: denied { setopt } for pid=1347 comm="netd" scontext=u:r:init:s0 tcontext=u:r:init:s0 tclass=udp_socket permissive=1
[  408.755164] healthd: battery l=98 v=4238 t=0.0 h=1 st=3 c=638 fc=7462000 cc=99 chg=
[  419.796587] usb 1-1: USB disconnect, device number 2
[  419.796603] usb 1-1.3: USB disconnect, device number 3
[  419.816271] asus_wmi: Unknown key 75 pressed
[  419.973719] type=1400 audit(1517724299.375:689): avc: denied { dyntransition } for pid=4703 comm="main" scontext=u:r:init:s0 tcontext=u:r:priv_app:s0:c512,c768 tclass=process permissive=1
[  419.994381] type=1400 audit(1517724299.395:690): avc: denied { read } for pid=4703 comm="com.android.mtp" name="MtpDocumentsProvider.odex" dev="mmcblk1p2" ino=10680 scontext=u:r:priv_app:s0:c512,c768 tcontext=u:object_r:unlabeled:s0 tclass=file permissive=1
[  419.994535] type=1400 audit(1517724299.395:691): avc: denied { open } for pid=4703 comm="com.android.mtp" path="/system/priv-app/MtpDocumentsProvider/oat/x86_64/MtpDocumentsProvider.odex" dev="mmcblk1p2" ino=10680 scontext=u:r:priv_app:s0:c512,c768 tcontext=u:object_r:unlabeled:s0 tclass=file permissive=1
[  419.994670] type=1400 audit(1517724299.396:692): avc: denied { execute } for pid=4703 comm="com.android.mtp" path="/system/priv-app/MtpDocumentsProvider/oat/x86_64/MtpDocumentsProvider.odex" dev="mmcblk1p2" ino=10680 scontext=u:r:priv_app:s0:c512,c768 tcontext=u:object_r:unlabeled:s0 tclass=file permissive=1
[  420.039256] type=1400 audit(1517724299.440:693): avc: denied { read } for pid=4703 comm="com.android.mtp" name="libappfuse_jni.so" dev="mmcblk1p2" ino=10677 scontext=u:r:priv_app:s0:c512,c768 tcontext=u:object_r:unlabeled:s0 tclass=lnk_file permissive=1
[  420.051811] type=1400 audit(1517724299.453:694): avc: denied { write } for pid=1312 comm="vold" name="fuse" dev="tmpfs" ino=9037 scontext=u:r:init:s0 tcontext=u:object_r:fuse_device:s0 tclass=chr_file permissive=1
[  420.052589] type=1400 audit(1517724299.454:695): avc: denied { sys_chroot } for pid=4718 comm="vold" capability=18 scontext=u:r:init:s0 tcontext=u:r:init:s0 tclass=capability permissive=1
[  480.128178] healthd: battery l=98 v=4243 t=0.0 h=1 st=3 c=559 fc=7462000 cc=99 chg=
[  540.192991] healthd: battery l=98 v=4242 t=0.0 h=1 st=3 c=550 fc=7462000 cc=99 chg=
[  600.282075] healthd: battery l=98 v=4235 t=0.0 h=1 st=3 c=558 fc=7462000 cc=99 chg=
[  611.553129] healthd: battery l=98 v=4234 t=0.0 h=1 st=3 c=570 fc=7462000 cc=99 chg=
[  671.589827] healthd: battery l=98 v=4235 t=0.0 h=1 st=3 c=544 fc=7462000 cc=99 chg=
[  731.670996] healthd: battery l=98 v=4237 t=0.0 h=1 st=3 c=560 fc=7462000 cc=99 chg=
[  742.265865] type=1400 audit(1517724621.666:696): avc: denied { read } for pid=1869 comm="m.android.phone" path=2F6465762F6173686D656D2F64616C76696B2D6D61696E207370616365202864656C6574656429 dev="tmpfs" ino=12418 scontext=u:r:radio:s0 tcontext=u:object_r:init_tmpfs:s0 tclass=file permissive=1
[  791.746866] healthd: battery l=98 v=4233 t=0.0 h=1 st=3 c=557 fc=7462000 cc=99 chg=
[  851.778771] healthd: battery l=97 v=4234 t=0.0 h=1 st=3 c=584 fc=7462000 cc=99 chg=
[  911.865807] healthd: battery l=97 v=4233 t=0.0 h=1 st=3 c=565 fc=7462000 cc=99 chg=
[  971.903758] healthd: battery l=97 v=4233 t=0.0 h=1 st=3 c=570 fc=7462000 cc=99 chg=
[ 1031.938843] healthd: battery l=97 v=4232 t=0.0 h=1 st=3 c=564 fc=7462000 cc=99 chg=
[ 1091.970268] healthd: battery l=97 v=4230 t=0.0 h=1 st=3 c=555 fc=7462000 cc=99 chg=
[ 1152.023173] healthd: battery l=97 v=4229 t=0.0 h=1 st=3 c=565 fc=7462000 cc=99 chg=
[ 1211.554284] healthd: battery l=97 v=4227 t=0.0 h=1 st=3 c=566 fc=7462000 cc=99 chg=
[ 1271.643942] healthd: battery l=96 v=4223 t=0.0 h=1 st=3 c=571 fc=7462000 cc=99 chg=
[ 1331.682931] healthd: battery l=96 v=4225 t=0.0 h=1 st=3 c=551 fc=7462000 cc=99 chg=
[ 1391.729564] healthd: battery l=96 v=4223 t=0.0 h=1 st=3 c=547 fc=7462000 cc=99 chg=
[ 1451.810115] healthd: battery l=96 v=4222 t=0.0 h=1 st=3 c=543 fc=7462000 cc=99 chg=
[ 1511.879013] healthd: battery l=96 v=4217 t=0.0 h=1 st=3 c=547 fc=7462000 cc=99 chg=
[ 1571.943460] healthd: battery l=96 v=4213 t=0.0 h=1 st=3 c=553 fc=7462000 cc=99 chg=
[ 1631.973145] healthd: battery l=96 v=4210 t=0.0 h=1 st=3 c=558 fc=7462000 cc=99 chg=
[ 1692.062264] healthd: battery l=96 v=4210 t=0.0 h=1 st=3 c=559 fc=7462000 cc=99 chg=
[ 1752.151123] healthd: battery l=95 v=4215 t=0.0 h=1 st=3 c=538 fc=7462000 cc=99 chg=
[ 1772.426852] power_supply BATC: power_supply_changed
[ 1772.426875] power_supply BATC: power_supply_changed_work
[ 1772.426892] power_supply BATC: power_supply_update_bat_leds 2
[ 1772.426921] power_supply BATC: uevent
[ 1772.426929] power_supply BATC: POWER_SUPPLY_NAME=BATC
[ 1772.426948] power_supply BATC: prop STATUS=Discharging
[ 1772.426963] power_supply BATC: prop PRESENT=1
[ 1772.426977] power_supply BATC: prop TECHNOLOGY=Li-ion
[ 1772.426991] power_supply BATC: prop CYCLE_COUNT=99
[ 1772.427005] power_supply BATC: prop VOLTAGE_MIN_DESIGN=3750000
[ 1772.427018] power_supply BATC: prop VOLTAGE_NOW=4216000
[ 1772.427030] power_supply BATC: prop CURRENT_NOW=524000
[ 1772.427043] power_supply BATC: prop CHARGE_FULL_DESIGN=8060000
[ 1772.427056] power_supply BATC: prop CHARGE_FULL=7462000
[ 1772.427068] power_supply BATC: prop CHARGE_NOW=7155000
[ 1772.427081] power_supply BATC: prop CAPACITY=95
[ 1772.427094] power_supply BATC: prop CAPACITY_LEVEL=Normal
[ 1772.427106] power_supply BATC: prop MODEL_NAME=SR Real Battery
[ 1772.427118] power_supply BATC: prop MANUFACTURER=Intel SR 1
[ 1772.427130] power_supply BATC: prop SERIAL_NUMBER=123456789
[ 1772.442575] healthd: battery l=95 v=4216 t=0.0 h=1 st=3 c=524 fc=7462000 cc=99 chg=
[ 1772.449559] power_supply BATC: power_supply_changed
[ 1772.449576] power_supply BATC: power_supply_changed_work
[ 1772.449588] power_supply BATC: power_supply_update_bat_leds 2
[ 1772.449608] power_supply BATC: uevent
[ 1772.449614] power_supply BATC: POWER_SUPPLY_NAME=BATC
[ 1772.449636] power_supply BATC: prop STATUS=Discharging
[ 1772.449646] power_supply BATC: prop PRESENT=1
[ 1772.449655] power_supply BATC: prop TECHNOLOGY=Li-ion
[ 1772.449664] power_supply BATC: prop CYCLE_COUNT=99
[ 1772.449674] power_supply BATC: prop VOLTAGE_MIN_DESIGN=3750000
[ 1772.449682] power_supply BATC: prop VOLTAGE_NOW=4216000
[ 1772.449691] power_supply BATC: prop CURRENT_NOW=524000
[ 1772.449699] power_supply BATC: prop CHARGE_FULL_DESIGN=8060000
[ 1772.449708] power_supply BATC: prop CHARGE_FULL=7462000
[ 1772.449716] power_supply BATC: prop CHARGE_NOW=7155000
[ 1772.449725] power_supply BATC: prop CAPACITY=95
[ 1772.449733] power_supply BATC: prop CAPACITY_LEVEL=Normal
[ 1772.449741] power_supply BATC: prop MODEL_NAME=SR Real Battery
[ 1772.449749] power_supply BATC: prop MANUFACTURER=Intel SR 1
[ 1772.449757] power_supply BATC: prop SERIAL_NUMBER=123456789
[ 1772.458103] healthd: battery l=95 v=4216 t=0.0 h=1 st=3 c=524 fc=7462000 cc=99 chg=
[ 1811.555702] healthd: battery l=95 v=4215 t=0.0 h=1 st=3 c=524 fc=7462000 cc=99 chg=
[ 1827.636784] type=1400 audit(1517725707.038:697): avc: denied { getattr } for pid=5038 comm="sh" path="/system" dev="mmcblk1p2" ino=1576381 scontext=u:r:untrusted_app:s0:c512,c768 tcontext=u:object_r:unlabeled:s0 tclass=dir permissive=1
[ 1827.655600] type=1400 audit(1517725707.057:698): avc: denied { read } for pid=5038 comm="am" name="app_process" dev="mmcblk1p2" ino=1598041 scontext=u:r:untrusted_app:s0:c512,c768 tcontext=u:object_r:unlabeled:s0 tclass=lnk_file permissive=1
[ 1828.551105] type=1400 audit(1517725707.952:699): avc: denied { mounton } for pid=5038 comm="main" path="/proc/cpuinfo" dev="proc" ino=4026531908 scontext=u:r:untrusted_app:s0:c512,c768 tcontext=u:object_r:proc_cpuinfo:s0 tclass=file permissive=1
[ 1871.638647] healthd: battery l=95 v=4214 t=0.0 h=1 st=3 c=523 fc=7462000 cc=99 chg=
[ 1895.389301] intel_sst_acpi 80860F28:00: FW Version 01.0c.00.01
[ 1901.824891] type=1400 audit(1517725781.226:700): avc: denied { write } for pid=4628 comm="system:ui" path=2F64726D206D6D206F626A656374202864656C6574656429 dev="tmpfs" ino=48935 scontext=u:r:system_app:s0 tcontext=u:object_r:init_tmpfs:s0 tclass=file permissive=1
[ 1931.699176] healthd: battery l=95 v=4210 t=0.0 h=1 st=3 c=583 fc=7462000 cc=99 chg=
[ 1991.782345] healthd: battery l=95 v=4211 t=0.0 h=1 st=3 c=557 fc=7462000 cc=99 chg=
[ 2051.852940] healthd: battery l=95 v=4202 t=0.0 h=1 st=3 c=547 fc=7462000 cc=99 chg=
[ 2111.937818] healthd: battery l=95 v=4207 t=0.0 h=1 st=3 c=564 fc=7462000 cc=99 chg=
[ 2172.020886] healthd: battery l=95 v=4206 t=0.0 h=1 st=3 c=564 fc=7462000 cc=99 chg=
[ 2232.109893] healthd: battery l=94 v=4203 t=0.0 h=1 st=3 c=564 fc=7462000 cc=99 chg=
[ 2292.166906] healthd: battery l=94 v=4201 t=0.0 h=1 st=3 c=559 fc=7462000 cc=99 chg=
[ 2352.255406] healthd: battery l=94 v=4203 t=0.0 h=1 st=3 c=557 fc=7462000 cc=99 chg=
[ 2411.554997] healthd: battery l=94 v=4200 t=0.0 h=1 st=3 c=560 fc=7462000 cc=99 chg=
[ 2471.639840] healthd: battery l=94 v=4200 t=0.0 h=1 st=3 c=544 fc=7462000 cc=99 chg=
[ 2531.704891] healthd: battery l=94 v=4199 t=0.0 h=1 st=3 c=552 fc=7462000 cc=99 chg=
[ 2591.741608] healthd: battery l=94 v=4196 t=0.0 h=1 st=3 c=547 fc=7462000 cc=99 chg=
[ 2651.829500] healthd: battery l=94 v=4189 t=0.0 h=1 st=3 c=541 fc=7462000 cc=99 chg=
[ 2711.879539] healthd: battery l=93 v=4195 t=0.0 h=1 st=3 c=553 fc=7462000 cc=99 chg=
[ 2771.957880] healthd: battery l=93 v=4191 t=0.0 h=1 st=3 c=559 fc=7462000 cc=99 chg=
[ 2831.988294] healthd: battery l=93 v=4192 t=0.0 h=1 st=3 c=549 fc=7462000 cc=99 chg=
[ 2892.073874] healthd: battery l=93 v=4189 t=0.0 h=1 st=3 c=551 fc=7462000 cc=99 chg=
[ 2952.160008] healthd: battery l=93 v=4187 t=0.0 h=1 st=3 c=551 fc=7462000 cc=99 chg=
[ 3011.552808] healthd: battery l=93 v=4183 t=0.0 h=1 st=3 c=558 fc=7462000 cc=99 chg=
[ 3071.640254] healthd: battery l=93 v=4186 t=0.0 h=1 st=3 c=584 fc=7462000 cc=99 chg=
[ 3131.680859] healthd: battery l=92 v=4178 t=0.0 h=1 st=3 c=584 fc=7462000 cc=99 chg=
[ 3191.712865] healthd: battery l=92 v=4183 t=0.0 h=1 st=3 c=573 fc=7462000 cc=99 chg=
[ 3251.512456] usb 1-1: new high-speed USB device number 4 using xhci_hcd
[ 3251.681984] usb 1-1: New USB device found, idVendor=05e3, idProduct=0610
[ 3251.681999] usb 1-1: New USB device strings: Mfr=0, Product=1, SerialNumber=0
[ 3251.682009] usb 1-1: Product: USB2.0 Hub
[ 3251.683623] hub 1-1:1.0: USB hub found
[ 3251.683957] hub 1-1:1.0: 4 ports detected
[ 3252.165464] usb 1-1.3: new full-speed USB device number 5 using xhci_hcd
[ 3252.271656] asus_wmi: Unknown key 75 pressed
[ 3252.431468] usb 1-1.3: New USB device found, idVendor=0b05, idProduct=1807
[ 3252.431485] usb 1-1.3: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 3252.431494] usb 1-1.3: Product: ASUS HID Device
[ 3252.431503] usb 1-1.3: Manufacturer: ASUS Tech Inc.
[ 3252.443308] input: ASUS Tech Inc. ASUS HID Device  as /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1.3/1-1.3:1.0/0003:0B05:1807.0005/input/input15
[ 3252.452551] type=1400 audit(1517727131.854:701): avc: denied { read } for pid=1227 comm="ueventd" name="modules.dep" dev="mmcblk1p2" ino=1603111 scontext=u:r:ueventd:s0 tcontext=u:object_r:unlabeled:s0 tclass=file permissive=1
[ 3252.452696] type=1400 audit(1517727131.854:702): avc: denied { open } for pid=1227 comm="ueventd" path="/system/lib/modules/4.9.54-android-x86_64-gfb63269e5ada/modules.dep" dev="mmcblk1p2" ino=1603111 scontext=u:r:ueventd:s0 tcontext=u:object_r:unlabeled:s0 tclass=file permissive=1
[ 3252.453287] type=1400 audit(1517727131.854:703): avc: denied { sys_module } for pid=1227 comm="ueventd" capability=16 scontext=u:r:ueventd:s0 tcontext=u:r:ueventd:s0 tclass=capability permissive=1
[ 3252.453371] type=1400 audit(1517727131.854:704): avc: denied { module_load } for pid=1227 comm="ueventd" path="/system/lib/modules/4.9.54-android-x86_64-gfb63269e5ada/kernel/drivers/macintosh/mac_hid.ko" dev="mmcblk1p2" ino=1601463 scontext=u:r:ueventd:s0 tcontext=u:object_r:unlabeled:s0 tclass=system permissive=1
[ 3252.460243] ueventd: blacklisted module evbug: 1
[ 3252.497630] hid-generic 0003:0B05:1807.0005: input,hidraw0: USB HID v1.10 Keyboard [ASUS Tech Inc. ASUS HID Device ] on usb-0000:00:14.0-1.3/input0
[ 3252.509993] hid-generic 0003:0B05:1807.0006: ignoring exceeding usage max
[ 3252.526336] input: ASUS Tech Inc. ASUS HID Device  as /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1.3/1-1.3:1.1/0003:0B05:1807.0006/input/input16
[ 3252.578702] hid-generic 0003:0B05:1807.0006: input,hiddev0,hidraw1: USB HID v1.10 Device [ASUS Tech Inc. ASUS HID Device ] on usb-0000:00:14.0-1.3/input1
[ 3252.580981] ueventd: blacklisted module evbug: 1
[ 3252.589548] input: ASUS Tech Inc. ASUS HID Device  as /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1.3/1-1.3:1.2/0003:0B05:1807.0007/input/input17
[ 3252.589933] hid-generic 0003:0B05:1807.0007: input,hiddev0,hidraw2: USB HID v1.10 Mouse [ASUS Tech Inc. ASUS HID Device ] on usb-0000:00:14.0-1.3/input2
[ 3252.616883] ueventd: blacklisted module evbug: 1
[ 3252.743564] type=1400 audit(1517727132.145:705): avc: denied { write } for pid=1325 comm="Binder:1325_2" path="socket:[54984]" dev="sockfs" ino=54984 scontext=u:r:system_server:s0 tcontext=u:r:init:s0 tclass=unix_stream_socket permissive=1
[ 3262.226272] type=1400 audit(1517727141.627:706): avc: denied { setpgid } for pid=1333 comm="main" scontext=u:r:init:s0 tcontext=u:r:untrusted_app:s0:c512,c768 tclass=process permissive=1
[ 3262.285694] type=1400 audit(1517727141.687:707): avc: denied { read } for pid=5380 comm="ogle.android.gm" path=2F6465762F6173686D656D2F64616C76696B2D6E6F6E206D6F76696E67207370616365202864656C6574656429 dev="tmpfs" ino=13460 scontext=u:r:untrusted_app:s0:c512,c768 tcontext=u:object_r:init_tmpfs:s0 tclass=file permissive=1
[ 3262.834266] type=1400 audit(1517727142.234:708): avc: denied { read } for pid=5380 comm="RenderThread" name="uevent" dev="sysfs" ino=3454 scontext=u:r:untrusted_app:s0:c512,c768 tcontext=u:object_r:sysfs:s0 tclass=file permissive=1
[ 3262.834399] type=1400 audit(1517727142.234:709): avc: denied { open } for pid=5380 comm="RenderThread" path="/sys/devices/pci0000:00/0000:00:02.0/uevent" dev="sysfs" ino=3454 scontext=u:r:untrusted_app:s0:c512,c768 tcontext=u:object_r:sysfs:s0 tclass=file permissive=1
[ 3262.834482] type=1400 audit(1517727142.234:710): avc: denied { getattr } for pid=5380 comm="RenderThread" path="/sys/devices/pci0000:00/0000:00:02.0/uevent" dev="sysfs" ino=3454 scontext=u:r:untrusted_app:s0:c512,c768 tcontext=u:object_r:sysfs:s0 tclass=file permissive=1
[ 3263.328425] type=1400 audit(1517727142.729:711): avc: denied { ioctl } for pid=1335 comm="FastMixer" path="/dev/snd/pcmC0D0p" dev="tmpfs" ino=7263 ioctlcmd=0x4123 scontext=u:r:init:s0 tcontext=u:object_r:audio_device:s0 tclass=chr_file permissive=1
[ 3263.404663] type=1400 audit(1517727142.806:712): avc: denied { sendto } for pid=1685 comm="Binder:1685_5" path="/dev/socket/logdw" scontext=u:r:system_server:s0 tcontext=u:r:init:s0 tclass=unix_dgram_socket permissive=1
[ 3263.853155] binder: 5380:5389 DecRefs 0 refcount change on invalid ref 51 ret -22
[ 3263.863235] type=1400 audit(1517727143.264:713): avc: denied { call } for pid=1685 comm="Binder:1685_F" scontext=u:r:system_server:s0 tcontext=u:r:init:s0 tclass=binder permissive=1
[ 3263.863357] type=1400 audit(1517727143.264:714): avc: denied { transfer } for pid=1685 comm="Binder:1685_F" scontext=u:r:system_server:s0 tcontext=u:r:init:s0 tclass=binder permissive=1
[ 3264.004684] binder: 5380:5483 IncRefs 0 refcount change on invalid ref 51 ret -22
[ 3264.004689] binder: 5380:5483 Acquire 1 refcount change on invalid ref 51 ret -22
[ 3264.004694] binder: transaction release 288282 bad handle 51, ret = -22
[ 3264.037903] binder: 5380:5389 DecRefs 0 refcount change on invalid ref 27 ret -22
[ 3264.041200] binder: 5380:5483 IncRefs 0 refcount change on invalid ref 27 ret -22
[ 3264.041206] binder: 5380:5483 Acquire 1 refcount change on invalid ref 27 ret -22
[ 3264.041210] binder: transaction release 288843 bad handle 27, ret = -22
[ 3264.763819] binder: 5380:5389 DecRefs 0 refcount change on invalid ref 62 ret -22
[ 3264.764332] binder: 5380:5549 IncRefs 0 refcount change on invalid ref 62 ret -22
[ 3264.764338] binder: 5380:5549 Acquire 1 refcount change on invalid ref 62 ret -22
[ 3264.764343] binder: transaction release 290045 bad handle 62, ret = -22
[ 3285.803872] type=1400 audit(1517727165.205:715): avc: denied { write } for pid=1860 comm="wpa_supplicant" name="wpa_ctrl_1685-1" dev="mmcblk1p2" ino=1576664 scontext=u:r:init:s0 tcontext=u:object_r:system_wpa_socket:s0 tclass=sock_file permissive=1
[ 3312.627919] healthd: battery l=92 v=4158 t=0.0 h=1 st=3 c=696 fc=7462000 cc=99 chg=
[ 3372.712902] healthd: battery l=92 v=4130 t=0.0 h=1 st=3 c=841 fc=7462000 cc=99 chg=
[ 3432.765915] healthd: battery l=92 v=4166 t=0.0 h=1 st=3 c=651 fc=7462000 cc=99 chg=
[ 3479.646270] type=1400 audit(1517727359.047:716): avc: denied { open } for pid=1800 comm="ndroid.systemui" path="/system/app/AndroidTerm/AndroidTerm.apk" dev="mmcblk1p2" ino=1576386 scontext=u:r:platform_app:s0:c512,c768 tcontext=u:object_r:unlabeled:s0 tclass=file permissive=1
[ 3479.759371] type=1400 audit(1517727359.160:717): avc: denied { read } for pid=5895 comm="sh" name="getprop" dev="mmcblk1p2" ino=1598137 scontext=u:r:untrusted_app:s0:c512,c768 tcontext=u:object_r:unlabeled:s0 tclass=lnk_file permissive=1
[ 3481.466706] type=1400 audit(1517727360.867:718): avc: denied { search } for pid=5905 comm="daemonsu" name="eu.chainfire.supersu" dev="mmcblk1p2" ino=9306 scontext=u:r:init:s0 tcontext=u:object_r:app_data_file:s0:c512,c768 tclass=dir permissive=1
[ 3481.467013] type=1400 audit(1517727360.867:719): avc: denied { getattr } for pid=5905 comm="daemonsu" path="/data/user_de/0/eu.chainfire.supersu/files/supersu.cfg" dev="mmcblk1p2" ino=7681 scontext=u:r:init:s0 tcontext=u:object_r:app_data_file:s0:c512,c768 tclass=file permissive=1
[ 3481.467095] type=1400 audit(1517727360.867:720): avc: denied { read } for pid=5905 comm="daemonsu" name="supersu.cfg" dev="mmcblk1p2" ino=7681 scontext=u:r:init:s0 tcontext=u:object_r:app_data_file:s0:c512,c768 tclass=file permissive=1
[ 3481.467171] type=1400 audit(1517727360.867:721): avc: denied { open } for pid=5905 comm="daemonsu" path="/data/user_de/0/eu.chainfire.supersu/files/supersu.cfg" dev="mmcblk1p2" ino=7681 scontext=u:r:init:s0 tcontext=u:object_r:app_data_file:s0:c512,c768 tclass=file permissive=1
[ 3481.467245] type=1400 audit(1517727360.867:722): avc: denied { execute } for pid=5905 comm="daemonsu" name="toybox" dev="mmcblk1p2" ino=1598342 scontext=u:r:init:s0 tcontext=u:object_r:unlabeled:s0 tclass=file permissive=1
[ 3481.573823] type=1400 audit(1517727360.975:723): avc: denied { read write } for pid=5905 comm="daemonsu" name="1" dev="devpts" ino=4 scontext=u:r:init:s0 tcontext=u:object_r:untrusted_app_devpts:s0:c512,c768 tclass=chr_file permissive=1
[ 3481.573991] type=1400 audit(1517727360.975:724): avc: denied { open } for pid=5905 comm="daemonsu" path="/dev/pts/1" dev="devpts" ino=4 scontext=u:r:init:s0 tcontext=u:object_r:untrusted_app_devpts:s0:c512,c768 tclass=chr_file permissive=1
[ 3481.574130] type=1400 audit(1517727360.975:725): avc: denied { ioctl } for pid=5905 comm="daemonsu" path="/dev/pts/1" dev="devpts" ino=4 ioctlcmd=0x540e scontext=u:r:init:s0 tcontext=u:object_r:untrusted_app_devpts:s0:c512,c768 tclass=chr_file permissive=1
[ 3482.787286] init: Untracked pid 5911 exited with status 74
[ 3482.823197] init: Untracked pid 5914 exited with status 0
[ 3492.848649] healthd: battery l=92 v=4163 t=0.0 h=1 st=3 c=651 fc=7462000 cc=99 chg=
[ 3526.410622] type=1400 audit(1517727405.812:748): avc: denied { create } for pid=5971 comm="hcitool" scontext=u:r:init:s0 tcontext=u:r:init:s0 tclass=socket permissive=1
[ 3526.411241] type=1400 audit(1517727405.812:749): avc: denied { ioctl } for pid=5971 comm="hcitool" path="socket:[64554]" dev="sockfs" ino=64554 ioctlcmd=0x48d2 scontext=u:r:init:s0 tcontext=u:r:init:s0 tclass=socket permissive=1
[ 3552.883043] healthd: battery l=91 v=4163 t=0.0 h=1 st=3 c=636 fc=7462000 cc=99 chg=
x86_64:/ #

so i see that bluetooth is their in dmesg but i don't get why it keeps saying device is busy and doesn't attach it?

Chih-Wei Huang

unread,
Feb 4, 2018, 3:29:47 AM2/4/18
to Android-x86
It seems you already have the hci interface.
It's not hci0 but hci1.

[ 9.713598] Bluetooth: hci1: BCM: chip id 82
[ 9.713605] Bluetooth: hci1: BCM43341B0 (002.001.014) build 0000
...
[ 10.218671] Bluetooth: hci1: BCM (002.001.014) build 0176


Check hciconfig hci1 if it shows the interface.
If yes, you can set the property bluetooth.interface=1
and restart the Bluetooth service.
If not, you may need a firmware.
See https://wiki.archlinux.org/index.php/ASUS_x205ta#Bluetooth

Chih-Wei Huang

unread,
Feb 4, 2018, 3:36:15 AM2/4/18
to Android-x86
2018-02-04 11:53 GMT+08:00 Nikolai Cassanova <ncassa...@gmail.com>:
> x86_64:/ # dmesg /dev/ttyS1
> [ 0.000000] Linux version 4.9.54-android-x86_64-gfb63269e5ada
> (cwhuang@android-x86) (gcc version 4.6 20120106 (prerelease) (GCC) ) #1 SMP
> PREEMPT Tue Oct 10 19:35:35 CST 2017
> [ 0.000000] Command line: BOOT_IMAGE=/android-7.1-rc2/kernel quiet
> SDCARD=mmcblk2p1 splash intel_idle.max_cstate=1 root=/dev/ram0
> androidboot.selinux=permissive buildvariant=userdebug

About the sdcard support, please show me the
result of the command:

ls -l /sys/block/mmcblk2/device/driver/

Nikolai Cassanova

unread,
Feb 5, 2018, 11:26:51 PM2/5/18
to andro...@googlegroups.com
hey here is the read out of: 

x86_64:/ # ls -l /sys/block/mmcblk2/device/driver/
total 0
--w------- 1 root root 4096 2018-02-05 05:10 bind
lrwxrwxrwx 1 root root    0 2018-02-05 05:10 mmc1:0001 -> ../../../../devices/platform/80860F14:00/mmc_host/mmc1/mmc1:0001
lrwxrwxrwx 1 root root    0 2018-02-05 05:10 mmc2:aaaa -> ../../../../devices/platform/PNP0FFF:00/mmc_host/mmc2/mmc2:aaaa
--w------- 1 root root 4096 2018-02-05 05:10 uevent
--w------- 1 root root 4096 2018-02-05 05:10 unbind
x86_64:/ #

so i have my micro sd card located at mmcblk2p1 and i can play stuff off of it but the weird thing is that i can't write to it but in ubuntu 16.04 i can.  I don't know for some reason while in android i am not allowed to copy and paste to the micro sd card even though i can play stuff off it from like es file explorer.  so please let me know what you see from this code that i can learn.

Chih-Wei Huang

unread,
Feb 6, 2018, 10:36:49 AM2/6/18
to Android-x86
2018-02-06 12:26 GMT+08:00 Nikolai Cassanova <ncassa...@gmail.com>:
> hey here is the read out of:
>
> x86_64:/ # ls -l /sys/block/mmcblk2/device/driver/
> total 0
> --w------- 1 root root 4096 2018-02-05 05:10 bind
> lrwxrwxrwx 1 root root 0 2018-02-05 05:10 mmc1:0001 ->
> ../../../../devices/platform/80860F14:00/mmc_host/mmc1/mmc1:0001
> lrwxrwxrwx 1 root root 0 2018-02-05 05:10 mmc2:aaaa ->
> ../../../../devices/platform/PNP0FFF:00/mmc_host/mmc2/mmc2:aaaa
> --w------- 1 root root 4096 2018-02-05 05:10 uevent
> --w------- 1 root root 4096 2018-02-05 05:10 unbind

I've add PNP0FFF:00 to fstab so
you can try if it works without SDCARD= option.
It's included in 7.1-r1.

> so i have my micro sd card located at mmcblk2p1 and i can play stuff off of
> it but the weird thing is that i can't write to it but in ubuntu 16.04 i
> can. I don't know for some reason while in android i am not allowed to copy
> and paste to the micro sd card even though i can play stuff off it from like
> es file explorer. so please let me know what you see from this code that i
> can learn.

No idea.
Anyway, test 7.1-r1 to see if it works.

Nikolai Cassanova

unread,
Feb 8, 2018, 12:35:54 AM2/8/18
to andro...@googlegroups.com
Hey bro,

I can't try the 7.1.1 rc1 because i am away overseas at school and won't be back home with better internet  (i don't have great connection where i am to be able to download 7.1.1 rc1) for a long time.  Can I try it in the 7.1.2 rc2 since i always thought everything from 7.1.1 rc1 is automatically uploaded to 7.1.2 rc2 with new features that are changes from 7.1.1 rc1.  Do you want me to try to go in grub at boot and input that: SDCARD=option and see how the system in 7.1.2 rc2 will respond. I can run the same command and get the results to see if PNP0FFF:00 to fstab.

Also so i have been like doing some research to back track my steps to get bluetooth working in this asus t100ta that has both android 7.1.2 rc2 and ubuntu 16.04 working and i realized that the my real bluetooth driver should be BCM4324B3.hcd which i have already located in /lib/firmware/brcm, the reason why i say this is based off of the launchpad site that showed me how to set up bluetooth for ubuntu 16.04 where it works and i have been able to connect to my bluetooth speaker. here is the site: https://launchpad.net/asust100-ubuntu/+milestone/bluetooth-t100ta

so in a nutshell i think thats why i haven't been able to get it working.  let me know what you think about me trying the SDCARD=option from grub at boot?

Chih-Wei Huang

unread,
Feb 8, 2018, 2:45:26 AM2/8/18
to Android-x86
2018-02-08 13:35 GMT+08:00 Nikolai Cassanova <ncassa...@gmail.com>:
>
> I can't try the 7.1.1 rc1 because i am away overseas at school and won't be
> back home with better internet (i don't have great connection where i am to
> be able to download 7.1.1 rc1) for a long time. Can I try it in the 7.1.2
> rc2 since i always thought everything from 7.1.1 rc1 is automatically
> uploaded to 7.1.2 rc2 with new features that are changes from 7.1.1 rc1. Do
> you want me to try to go in grub at boot and input that: SDCARD=option and
> see how the system in 7.1.2 rc2 will respond. I can run the same command and
> get the results to see if PNP0FFF:00 to fstab.

I said 7.1-r1 which is just released, not -rc1.
http://www.android-x86.org/releases/releasenote-7-1-r1

> Also so i have been like doing some research to back track my steps to get
> bluetooth working in this asus t100ta that has both android 7.1.2 rc2 and
> ubuntu 16.04 working and i realized that the my real bluetooth driver should
> be BCM4324B3.hcd which i have already located in /lib/firmware/brcm, the
> reason why i say this is based off of the launchpad site that showed me how
> to set up bluetooth for ubuntu 16.04 where it works and i have been able to
> connect to my bluetooth speaker. here is the site:
> https://launchpad.net/asust100-ubuntu/+milestone/bluetooth-t100ta

I'm confused what your device is exactly.
Anyway, just try yourself.

> so in a nutshell i think thats why i haven't been able to get it working.
> let me know what you think about me trying the SDCARD=option from grub at
> boot?

7.1-r1 added your sdcard path to fstab
(hopefully if I didn't make mistakes)
so you don't need SDCARD=option.
I hope you can test it.

Nikolai Cassanova

unread,
Feb 8, 2018, 9:48:18 AM2/8/18
to andro...@googlegroups.com
you and your team on android x86 is on a whole other level. i didn't know you guys got a new release. thanks for telling me but with a size of 690 mb which is small for people in countries that have internet but where i am it would take a lifetime because internet is spotty here and at times can just be shut off even when at an hotel using internet which has the best speeds for the whole island.  So unless one of my friends is going back home where they can download it for me on a usb stick, i am out of luck. which sucks because i really like android x86 and want to try the new stable release of nougat.

I will keep working on the bluetooth for this asus t100ta (which is called a transformer book) and let you know how it goes.  the other question is i thought all android x86 shipped with alsa mixer controls by default? like how regular android for our cell phones does.  Or is it not by default because of the different types of machines that can run android x86.

Nikolai Cassanova

unread,
Aug 15, 2018, 9:51:35 PM8/15/18
to andro...@googlegroups.com
Hey sorry Dr. Chih-Wei Huang, I never got back to let you know that, yeah the added micro SD card works perfectly in my Asus t100 system. I tried the 8.1 Oreo version the other day and my micro SD card was recognized by default. So I am sure it will work for all those, with the Asus t100 series of 2 in 1 tablet PC. Thanks again for the all the great work.

--
You received this message because you are subscribed to a topic in the Google Groups "Android-x86" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/android-x86/L8Ga_bpA6BQ/unsubscribe.
To unsubscribe from this group and all its topics, send an email to android-x86...@googlegroups.com.
Reply all
Reply to author
Forward
0 new messages