can anyone with asus t100taf post their init.sh need to compare it with my own in order to try and fix bluetooth

437 views
Skip to first unread message

Nikolai Cassanova

unread,
Jun 29, 2018, 6:49:34 AM6/29/18
to Android-x86
Hi i wanted to see if anyone with asus t100taf could post a copy of their init.sh file so i can compare it with my own, so i can try and fix bluetooth as i just can't get it work.  I have a feeling that my bluetooth code might be wrong in init.sh file.  Also would like to ask anyone to give their feedback to see how they got bluetooth to work with any of  the asus t100 models and android x86.

Jackson G

unread,
Jul 3, 2018, 3:06:40 PM7/3/18
to Android-x86
I have an Asus m89ta running android 8.1, the Bluetooth section of init.sh has our devices listed together. My Bluetooth worked fine after install. Here is the Bluetooth section of init.sh

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|M80TA|HP*Omni*)
BTUART_PORT=/dev/ttyS1
set_property hal.bluetooth.uart.proto bcm
;;
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
}

Jackson G

unread,
Jul 3, 2018, 3:08:02 PM7/3/18
to Android-x86
My device is m80ta not m89ta, excuse my typo.

Nikolai Cassanova

unread,
Jul 4, 2018, 10:42:59 PM7/4/18
to Android-x86
hey thanks for the post. i edited the one difference that i noticed on my init.sh file while using yours as a reference and still no luck. I don't understand why bluetooth wont come to work. maybe it might just be the fact that i am using android x86 7.1 rc2. i don't know. 

Chih-Wei Huang

unread,
Jul 4, 2018, 10:55:23 PM7/4/18
to Android-x86
2018-07-05 10:42 GMT+08:00 Nikolai Cassanova <ncassa...@gmail.com>:
> hey thanks for the post. i edited the one difference that i noticed on my
> init.sh file while using yours as a reference and still no luck. I don't
> understand why bluetooth wont come to work. maybe it might just be the fact
> that i am using android x86 7.1 rc2. i don't know.

Could you post your dmesg?


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

Nikolai Cassanova

unread,
Jul 4, 2018, 11:50:08 PM7/4/18
to Android-x86

Hey Dr. Chih-Wei here is the dmesg result from terminal. i notice at the end that their is an error with the init.sh as dmesg shows its. so i will post also attached my init.sh file also.

let me know if you wanted me to post it in the actually response because i can also. i thought the attachment would be better.

dmesg txt file for android x86.txt
init.sh file for android x86.txt

Chih-Wei Huang

unread,
Jul 5, 2018, 2:15:19 AM7/5/18
to Android-x86
Seems you have hci1 interface?
What's hciconfig say?

2018-07-05 11:50 GMT+08:00 Nikolai Cassanova <ncassa...@gmail.com>:
> On Wednesday, July 4, 2018 at 10:55:23 PM UTC-4, Chih-Wei Huang wrote:
>> 2018-07-05 10:42 GMT+08:00 Nikolai Cassanova <ncassa...@gmail.com>:
>> > hey thanks for the post. i edited the one difference that i noticed on my
>> > init.sh file while using yours as a reference and still no luck. I don't
>> > understand why bluetooth wont come to work. maybe it might just be the fact
>> > that i am using android x86 7.1 rc2. i don't know.



Nikolai Cassanova

unread,
Jul 5, 2018, 11:10:17 AM7/5/18
to Android-x86

Yeah i don't understand it, because everything seems to correct in the right places. so i can't understand why it isn't working. here is the result of hciconfig:

x86_64:/ $ su
x86_64:/ # hciconfig
hci1: Type: Primary Bus: UART
BD Address: 43:34:1B:00:1F:AC ACL MTU: 1021:8 SCO MTU: 64:1
DOWN
RX bytes:2299 acl:0 sco:0 events:264 errors:0
TX bytes:42037 acl:0 sco:0 commands:264 errors:0

hci0: Type: Primary Bus: SDIO
BD Address: 00:00:00:00:00:00 ACL MTU: 0:0 SCO MTU: 0:0
DOWN
RX bytes:0 acl:0 sco:0 events:0 errors:0
TX bytes:0 acl:0 sco:0 commands:0 errors:0

x86_64:/ #

my other question is there a file similar to the init.sh file in Ubuntu? because maybe i can look at my ubuntu partition, since i have a dual boot system in this asus t100taf consisting of android x86 version 7.1 rc2 and ubuntu 16.04. Thats my other idea i am thinking because bluetooth works in ubuntu but not in android x86. and i know from other users in the android x86 group who might have an asus tablet with similar if not the same specs as my 2 in 1 machine, that have bluetooth working, so i just don't get it. I don't know what i might be missing to get it correct.

Nikolai Cassanova

unread,
Jul 5, 2018, 11:12:05 AM7/5/18
to Android-x86
On Thursday, July 5, 2018 at 2:15:19 AM UTC-4, Chih-Wei Huang wrote:

when you say seems i have hci1 interface? do you think the interface might show hci1 but not actually use it. because hciconfig show hci1 is being used.

Chih-Wei Huang

unread,
Jul 5, 2018, 11:19:33 PM7/5/18
to Android-x86
2018-07-05 23:12 GMT+08:00 Nikolai Cassanova <ncassa...@gmail.com>:
>
> when you say seems i have hci1 interface? do you think the interface might show hci1 but not actually use it. because hciconfig show hci1 is being used.

Exactly. Seems hci1 has the correct BT address
but the Bluetooth stack only uses hci0 by default.
You can override it by the property:

setprop bluetooth.interface hci1

Then check the log to see if it has the message:

Using interface hci1.

You may need to restart Bluetooth service
to make it take effect.

Nikolai Cassanova

unread,
Jul 6, 2018, 1:56:37 AM7/6/18
to Android-x86

Hey i have great news. it was exactly as you said. the bluetooth stack is using hci0 as default even though bluetooth on my device is correctly attached to hci1. Now i have bluetooth. here are the steps i did:

x86_64:/ $ su
x86_64:/ # setprop bluetooth.interface hc1
x86_64:/ # setprop bluetooth.interface hci1


x86_64:/ # hciconfig
hci1: Type: Primary Bus: UART
BD Address: 43:34:1B:00:1F:AC ACL MTU: 1021:8 SCO MTU: 64:1
DOWN
RX bytes:2299 acl:0 sco:0 events:264 errors:0
TX bytes:42037 acl:0 sco:0 commands:264 errors:0

hci0: Type: Primary Bus: SDIO
BD Address: 00:00:00:00:00:00 ACL MTU: 0:0 SCO MTU: 0:0
DOWN
RX bytes:0 acl:0 sco:0 events:0 errors:0
TX bytes:0 acl:0 sco:0 commands:0 errors:0

x86_64:/ # hcitool dev
Devices:
x86_64:/ # service call bluetooth_manager 8
Result: Parcel(00000000 00000001 '........')
x86_64:/ # hcitool dev
Devices:
x86_64:/ # service call bluetooth_manager 6
Result: Parcel(00000000 00000001 '........')
x86_64:/ # hcitool dev
Devices:
hci1 43:34:1B:00:1F:AC
x86_64:/ #

and i attached the screen shot of my bluetooth device coming on for the first time in android x86 partition version 7.1 rc2. in the top right corner you see it next to the wifi symbol.

Thank you and all others who helped me achieve this goal. Now i just want to ask how can we make it by default that the bluetooth stack recognizes that it should by default always use hci1 instead of hci0? Is there something i can change in the bluetooth stack? Because if not i would have to do the same thing via terminal to get my bluetooth working everytime, while i am booted into my android x86 partition.

Screenshot_20180706-014851.png

Chih-Wei Huang

unread,
Jul 6, 2018, 7:01:19 AM7/6/18
to Android-x86
Good news. You can add that to init.sh.

Please provide the output of these commands:

cat /sys/class/dmi/id/board_name
cat /sys/class/dmi/id/uevent

I'll add it.

Nikolai Cassanova

unread,
Jul 6, 2018, 9:38:04 PM7/6/18
to Android-x86

Okay so i added it to the init.sh in the bluetooth section and restarted and now my bluetooth comes on at boot in android x86 version 7.1 rc2. Also here is the results of the following commands that you asked for:

x86_64:/ $ su
x86_64:/ # cat /sys/class/dmi/id/board_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:/ #

I want to say thanks for the help and i am glad that from now on, anyone with a asus t100 model, when they install andriod x86 will have bluetooth running by default.

menum...@gmail.com

unread,
Aug 6, 2018, 3:58:17 PM8/6/18
to Android-x86
Hey tried those steps in terminal but noting happens for the bluetooth in my Asus T100TAS model. What should i do?

Nikolai Cassanova

unread,
Aug 6, 2018, 10:39:27 PM8/6/18
to andro...@googlegroups.com, menum...@gmail.com
well if you have the same model as me it should work. did you run the command in terminal app?  So this is exactly what i did. Boot your asus t100 into android x86.  Then open up the terminal app that comes by default with all versions of android x86.  Then do this in this order by typing the commands below in that order and pressing enter after:

1st step: su 
2nd step: setprop bluetooth.interface hci1
3rd step: service call bluetooth_manager 8 (this step will turn off the bluetooth via terminal because we need to restart bluetooth since we told your machine to switch use to interface hci1)

4th step: service call bluetooth_manager 6 (this step will turn bluetooth back on via terminal and when it does, your asus machine will then turn it back on using interface hci1)

5th step: hcitool dev (this step is just a check to see if it will tell you that the device is now being used by hci 1 and after this you should see the bluetooth dongle symbol up top working. after that you should be able to search and connect to other bluetooth enabled devices. 

Hope this helps. and let me know if it works.  It took me a long time to get bluetooth working but i am very gratefull that i figured it out thanks to all the people who work on android x86 project. because without their help i would have never gotten bluetooth working.

--
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/cv1CFNeNUe4/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.

menum...@gmail.com

unread,
Aug 7, 2018, 12:45:17 PM8/7/18
to Android-x86
No it didn't worked. I tried with hci0 as well. I see only one hciconfig setting of hci0.

Nikolai Cassanova

unread,
Aug 7, 2018, 4:13:20 PM8/7/18
to andro...@googlegroups.com
What do you get when you put hcitool dev in the terminal app?

On Tue, Aug 7, 2018, 12:45 <menum...@gmail.com> wrote:
No it didn't worked. I tried with hci0 as well. I see only one hciconfig setting of hci0.

menum...@gmail.com

unread,
Aug 7, 2018, 4:46:06 PM8/7/18
to Android-x86
Devices:

Nikolai Cassanova

unread,
Aug 7, 2018, 4:50:37 PM8/7/18
to andro...@googlegroups.com
And what does hciconfig say? 

On Tue, Aug 7, 2018, 16:46 <menum...@gmail.com> wrote:
Devices:

menum...@gmail.com

unread,
Aug 8, 2018, 5:11:09 AM8/8/18
to Android-x86
x86_64:/ # hciconfig
hci0: Type: Primary Bus: UART
BD Address: 78:24:AF:E3:CC:32 ACL MTU: 1021:8 SCO MTU: 64:1
DOWN
RX bytes:1479 acl:0 sco:0 events:148 errors:0
TX bytes:17931 acl:0 sco:0 commands:148 errors:0


Only hci0 no hci1 like yours!

Nikolai Cassanova

unread,
Aug 8, 2018, 8:08:13 AM8/8/18
to andro...@googlegroups.com
Yeah your correct it only says hci0 and gives the Bluetooth address for it also. What does your init.sh file say? Also for your Bluetooth symbol up top, when you select it doesn't do anything, correct? Just slides to on position but doesn't actually come on, correct? 

menum...@gmail.com

unread,
Aug 8, 2018, 8:12:46 AM8/8/18
to Android-x86
Yes it doesn't do anything. On or off.

Nikolai Cassanova

unread,
Aug 8, 2018, 8:19:42 AM8/8/18
to andro...@googlegroups.com
Okay cool. Yeah copy and paste your init.sh file which is located in the file system. So you can find it in the etc folder. You can use any of the file explorer apps like es file explorer or fx file explorer. But es file explorer has ads and also for fx file explorer you would need to download the root add on so you can get root access to your file system.

On Wed, Aug 8, 2018, 08:12 <menum...@gmail.com> wrote:
Yes it doesn't do anything. On or off.

Nikolai Cassanova

unread,
Aug 8, 2018, 8:23:14 AM8/8/18
to andro...@googlegroups.com
Also when I run hciconfig I get two results one that says hci1 with the Bluetooth address and another one that says hci0 and is just filled with zeros but says it's with SDIO. You don't get that. Like does your's say hci0 with Bluetooth address and then hci1 SDIO?

menum...@gmail.com

unread,
Aug 8, 2018, 10:06:03 AM8/8/18
to Android-x86
Here is the file.

Also my wifi goes unusable after some time, when in use or sometimes when in sleep mode.


#
# Copyright (C) 2013-2018 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 set_prop_if_empty()
{
[ -z "$(getprop $1)" ] && set_property "$1" "$2"
}

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*|M80TA|HP*Omni*)

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
set_prop_if_empty sleep.state none
;;
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
HP*Omni*|OEMB|Surface*3|T10*TA*)
set_prop_if_empty sleep.state none
;;
*)
;;
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*|*M80TA*)
set_property ro.iio.accel.x.opt_scale -1
;;
*ONDATablet*)
set_property ro.iio.accel.order 102
set_property ro.iio.accel.x.opt_scale -1
set_property ro.iio.accel.y.opt_scale -1
;;
*ST70416-6*)
set_property ro.iio.accel.order 102
;;
*T10*TA*|*pnEZpad*)
set_property ro.iio.accel.y.opt_scale -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*/
[ -n "`ls /sys/bus/iio/devices/iio:device*/in_accel_x_raw 2> /dev/null`" ] && has_sensors=true
hal_sensors=iio
elif lsmod | grep -q lis3lv02d_i2c; then
hal_sensors=hdaps
has_sensors=true
elif [ "$hal_sensors" != "kbd" ]; then
has_sensors=true
fi

set_property ro.hardware.sensors $hal_sensors
set_property config.override_forced_orient ${HAS_SENSORS:-$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()
{
hciconfig | grep -q hci || pm disable com.android.bluetooth

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
;;
VMware*)
pm disable com.android.bluetooth
;;
*)
;;
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 80%
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' 1
alsa_amixer -c $c set 'Internal Mic Boost' 1
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

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

return 0

Nikolai Cassanova

unread,
Aug 8, 2018, 10:56:39 PM8/8/18
to andro...@googlegroups.com
hey sorry, i am just getting back to you.  first difference between mines and yours is you have |M80TA, so erase that. but before you do that make a backup of your init.sh file so basically do a save as and then change the file name to like init.sh original. After that, then you can go into which ever file explorer you use with root permission and edit the inti.sh file. by doing a back up we make sure that, if we break anything we can always just go back to the original which we renamed and saved some where else.  Also can you show what dmesg looks like.

--
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/cv1CFNeNUe4/unsubscribe.
To unsubscribe from this group and all its topics, send an email to android-x86+unsubscribe@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 Gauntlet Cassanova

M.D. Candidate, Class of 2020

The Latin American School of Medicine

Bachelors of Science in Biology 2010 from SUNY Albany

USA Email: NCassa...@gmail.com

Cubacell Email: NCassa...@nauta.cu

Phone: 347-948-4317

menum...@gmail.com

unread,
Aug 9, 2018, 4:03:34 AM8/9/18
to Android-x86
Overwritten init file . Below is dmesg.


x86_64:/ $ su
x86_64:/ # dmesg
[ 0.000000] Linux version 4.9.109-android-x86_64-g45b3cc90fff5 (cwhuang@android-x86) (gcc version 4.6 20120106 (prerelease) (GCC) ) #1 SMP PREEMPT Mon Jun 18 05:07:40 CST 2018
[ 0.000000] Command line: BOOT_IMAGE=/android-8.1-rc1/kernel root=/dev/ram0 androidboot.selinux=permissive quiet
[ 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] 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-0x00000000200fffff] reserved
[ 0.000000] BIOS-e820: [mem 0x0000000020100000-0x0000000078cf3fff] usable
[ 0.000000] BIOS-e820: [mem 0x0000000078cf4000-0x0000000078d23fff] reserved
[ 0.000000] BIOS-e820: [mem 0x0000000078d24000-0x0000000078d53fff] ACPI data
[ 0.000000] BIOS-e820: [mem 0x0000000078d54000-0x000000007933efff] ACPI NVS
[ 0.000000] BIOS-e820: [mem 0x000000007933f000-0x0000000079b5cfff] reserved
[ 0.000000] BIOS-e820: [mem 0x0000000079b5d000-0x0000000079badfff] type 20
[ 0.000000] BIOS-e820: [mem 0x0000000079bae000-0x0000000079bc8fff] usable
[ 0.000000] BIOS-e820: [mem 0x0000000079bc9000-0x0000000079bc9fff] reserved
[ 0.000000] BIOS-e820: [mem 0x0000000079bca000-0x0000000079bcafff] usable
[ 0.000000] BIOS-e820: [mem 0x0000000079bcb000-0x0000000079bcbfff] reserved
[ 0.000000] BIOS-e820: [mem 0x0000000079bcc000-0x0000000079d40fff] usable
[ 0.000000] BIOS-e820: [mem 0x0000000079d41000-0x0000000079ff8fff] ACPI NVS
[ 0.000000] BIOS-e820: [mem 0x0000000079ff9000-0x0000000079ffffff] usable
[ 0.000000] BIOS-e820: [mem 0x00000000e00f8000-0x00000000e00f8fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fed01000-0x00000000fed01fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000ffc00000-0x00000000ffffffff] reserved
[ 0.000000] NX (Execute Disable) protection: active
[ 0.000000] efi: EFI v2.31 by American Megatrends
[ 0.000000] efi: ACPI=0x78d53000 ACPI 2.0=0x78d53014 ESRT=0x78d23000 SMBIOS=0x79bcb390
[ 0.000000] SMBIOS 2.7 present.
[ 0.000000] DMI: ASUSTeK COMPUTER INC. T100TAS/T100TAS, BIOS T100TAS.214 08/12/2015
[ 0.000000] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[ 0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
[ 0.000000] e820: last_pfn = 0x7a000 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 FC0000000 write-back
[ 0.000000] 1 base 040000000 mask FE0000000 write-back
[ 0.000000] 2 base 060000000 mask FF0000000 write-back
[ 0.000000] 3 base 070000000 mask FF8000000 write-back
[ 0.000000] 4 base 070000000 mask FF8000000 write-back
[ 0.000000] 5 base 078000000 mask FFC000000 write-back
[ 0.000000] 6 base 07B000000 mask FFF000000 uncachable
[ 0.000000] 7 base 07AE00000 mask FFFE00000 uncachable
[ 0.000000] x86/PAT: Configuration [0-7]: WB WC UC- UC WB WC UC- WT
[ 0.000000] esrt: ESRT header is not in the memory map.
[ 0.000000] Base memory trampoline at [ffff9a82c0098000] 98000 size 24576
[ 0.000000] BRK [0x45120000, 0x45120fff] PGTABLE
[ 0.000000] BRK [0x45121000, 0x45121fff] PGTABLE
[ 0.000000] BRK [0x45122000, 0x45122fff] PGTABLE
[ 0.000000] BRK [0x45123000, 0x45123fff] PGTABLE
[ 0.000000] BRK [0x45124000, 0x45124fff] PGTABLE
[ 0.000000] BRK [0x45125000, 0x45125fff] PGTABLE
[ 0.000000] BRK [0x45126000, 0x45126fff] PGTABLE
[ 0.000000] BRK [0x45127000, 0x45127fff] PGTABLE
[ 0.000000] BRK [0x45128000, 0x45128fff] PGTABLE
[ 0.000000] BRK [0x45129000, 0x45129fff] PGTABLE
[ 0.000000] RAMDISK: [mem 0x37d57000-0x37ea2fff]
[ 0.000000] ACPI: Early table checksum verification disabled
[ 0.000000] ACPI: RSDP 0x0000000078D53014 000024 (v02 _ASUS_)
[ 0.000000] ACPI: XSDT 0x0000000078D520E8 0000CC (v01 _ASUS_ A M I 00000003 MSFT 0100000D)
[ 0.000000] ACPI: FACP 0x0000000078D4F000 00010C (v05 _ASUS_ A M I 00000003 AMI 0100000D)
[ 0.000000] ACPI: DSDT 0x0000000078D35000 0101DC (v02 _ASUS_ Notebook 00000003 AMI 0100000D)
[ 0.000000] ACPI: TCPA 0x0000000078D51000 000032 (v02 00000000 00000000)
[ 0.000000] ACPI: UEFI 0x00000000792D8000 000042 (v01 00000000 00000000)
[ 0.000000] ACPI: DBG2 0x0000000078D50000 000072 (v00 _ASUS_ INTLDBG2 00000003 AMI 0100000D)
[ 0.000000] ACPI: HPET 0x0000000078D4E000 000038 (v01 _ASUS_ A M I 00000003 AMI 0100000D)
[ 0.000000] ACPI: LPIT 0x0000000078D4D000 000104 (v01 _ASUS_ 00000003 AMI 0100000D)
[ 0.000000] ACPI: APIC 0x0000000078D4C000 00006C (v03 _ASUS_ 00000003 AMI 0100000D)
[ 0.000000] ACPI: MCFG 0x0000000078D4B000 00003C (v01 _ASUS_ 00000003 AMI 0100000D)
[ 0.000000] ACPI: SSDT 0x0000000078D4A000 0005FB (v01 _ASUS_ CpuDptf 00000003 AMI 0100000D)
[ 0.000000] ACPI: SSDT 0x0000000078D48000 001A07 (v01 _ASUS_ DptfTab 00000003 AMI 0100000D)
[ 0.000000] ACPI: SSDT 0x0000000078D47000 000058 (v01 _ASUS_ LowPwrM 00000003 AMI 0100000D)
[ 0.000000] ACPI: SSDT 0x0000000078D46000 0000FF (v01 _ASUS_ SoCDptf 00000003 AMI 0100000D)
[ 0.000000] ACPI: FPDT 0x0000000078D34000 000044 (v01 A M I ALASKA 01072009 AMI 00010013)
[ 0.000000] ACPI: SSDT 0x0000000078D33000 000763 (v01 PmRef CpuPm 00003000 INTL 20061109)
[ 0.000000] ACPI: SSDT 0x0000000078D32000 000290 (v01 PmRef Cpu0Tst 00003000 INTL 20061109)
[ 0.000000] ACPI: SSDT 0x0000000078D31000 00017A (v01 PmRef ApTst 00003000 INTL 20061109)
[ 0.000000] ACPI: SSDT 0x0000000078D30000 000427 (v01 Intel_ Tpm2Tabl 00001000 INTL 20061109)
[ 0.000000] ACPI: TPM2 0x0000000078D2F000 000034 (v03 00000000 00000000)
[ 0.000000] ACPI: BGRT 0x0000000078D2E000 000038 (v00 _ASUS_ Notebook 01072009 AMI 00010013)
[ 0.000000] ACPI: CSRT 0x0000000078D2D000 00014C (v00 ALASKA A M I 00000005 MSFT 0100000D)
[ 0.000000] ACPI: MSDM 0x0000000078D22F90 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-0x0000000079ffffff]
[ 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 0x0000000020100000-0x0000000078cf3fff]
[ 0.000000] node 0: [mem 0x0000000079bae000-0x0000000079bc8fff]
[ 0.000000] node 0: [mem 0x0000000079bca000-0x0000000079bcafff]
[ 0.000000] node 0: [mem 0x0000000079bcc000-0x0000000079d40fff]
[ 0.000000] node 0: [mem 0x0000000079ff9000-0x0000000079ffffff]
[ 0.000000] Initmem setup node 0 [mem 0x0000000000001000-0x0000000079ffffff]
[ 0.000000] On node 0 totalpages: 494888
[ 0.000000] DMA zone: 64 pages used for memmap
[ 0.000000] DMA zone: 22 pages reserved
[ 0.000000] DMA zone: 3996 pages, LIFO batch:0
[ 0.000000] DMA32 zone: 7744 pages used for memmap
[ 0.000000] DMA32 zone: 490892 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 0x000000007af00000-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 35 pages/cpu @ffff9a8338800000 s103896 r8192 d31272 u524288
[ 0.000000] pcpu-alloc: s103896 r8192 d31272 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: 487058
[ 0.000000] Kernel command line: BOOT_IMAGE=/android-8.1-rc1/kernel root=/dev/ram0 androidboot.selinux=permissive quiet
[ 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: 1878864K/1979552K available (8481K kernel code, 1126K rwdata, 3628K rodata, 1300K init, 736K bss, 100688K reserved, 0K cma-reserved)
[ 0.000000] Kernel/User page tables isolation: enabled
[ 0.000000] Preemptible hierarchical RCU implementation.
[ 0.000000] \x09Build-time adjustment of leaf fanout to 64.
[ 0.000000] \x09RCU 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 1466.300 MHz processor
[ 0.000006] Calibrating delay loop (skipped), value calculated using timer frequency.. 2932.60 BogoMIPS (lpj=1466300)
[ 0.000012] pid_max: default: 32768 minimum: 301
[ 0.000047] ACPI: Core revision 20160831
[ 0.033445] ACPI: 9 ACPI AML tables successfully acquired and loaded
[ 0.034103] Security Framework initialized
[ 0.034108] SELinux: Initializing.
[ 0.034130] SELinux: Starting in permissive mode
[ 0.034164] Mount-cache hash table entries: 4096 (order: 3, 32768 bytes)
[ 0.034168] Mountpoint-cache hash table entries: 4096 (order: 3, 32768 bytes)
[ 0.034651] CPU: Physical Processor ID: 0
[ 0.034654] CPU: Processor Core ID: 0
[ 0.034659] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
[ 0.034660] ENERGY_PERF_BIAS: View and update with x86_energy_perf_policy(8)
[ 0.034671] mce: CPU supports 6 MCE banks
[ 0.034681] CPU0: Thermal monitoring enabled (TM1)
[ 0.034689] process: using mwait in idle threads
[ 0.034695] Last level iTLB entries: 4KB 48, 2MB 0, 4MB 0
[ 0.034697] Last level dTLB entries: 4KB 128, 2MB 16, 4MB 16, 1GB 0
[ 0.034701] Spectre V2 : Vulnerable: Minimal generic ASM retpoline
[ 0.035018] Freeing SMP alternatives memory: 28K
[ 0.039003] ftrace: allocating 30531 entries in 120 pages
[ 0.066737] smpboot: Max logical packages: 1
[ 0.066790] TSC deadline timer enabled
[ 0.066793] smpboot: CPU0: Intel(R) Atom(TM) CPU Z3775 @ 1.46GHz (family: 0x6, model: 0x37, stepping: 0x8)
[ 0.066803] Performance Events: PEBS fmt2+, 8-deep LBR, Silvermont events, 8-deep LBR, full-width counters, Intel PMU driver.
[ 0.066824] ... version: 3
[ 0.066826] ... bit width: 40
[ 0.066828] ... generic registers: 2
[ 0.066830] ... value mask: 000000ffffffffff
[ 0.066831] ... max period: 0000007fffffffff
[ 0.066832] ... fixed-purpose events: 3
[ 0.066834] ... event mask: 0000000700000003
[ 0.078203] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
[ 0.088058] x86: Booting SMP configuration:
[ 0.088062] .... node #0, CPUs: #1 #2 #3
[ 0.104301] Skipped synchronization checks as TSC is reliable.
[ 0.104426] x86: Booted up 1 node, 4 CPUs
[ 0.104431] smpboot: Total of 4 processors activated (11730.40 BogoMIPS)
[ 0.105016] CPU3: update max cpu_capacity 1024
[ 0.105687] PM: Registering ACPI NVS region [mem 0x0008f000-0x0008ffff] (4096 bytes)
[ 0.105691] PM: Registering ACPI NVS region [mem 0x78d54000-0x7933efff] (6205440 bytes)
[ 0.105942] PM: Registering ACPI NVS region [mem 0x79d41000-0x79ff8fff] (2850816 bytes)
[ 0.106183] CPU3: update max cpu_capacity 1024
[ 0.106254] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1911260446275000 ns
[ 0.106263] futex hash table entries: 1024 (order: 4, 65536 bytes)
[ 0.106388] pinctrl core: initialized pinctrl subsystem
[ 0.106667] RTC time: 13:26:08, date: 08/09/18
[ 0.106878] NET: Registered protocol family 16
[ 0.106963] schedtune: init normalization constants...
[ 0.106965] schedtune: no energy model data
[ 0.106966] schedtune: disabled!
[ 0.111232] cpuidle: using governor ladder
[ 0.115245] cpuidle: using governor menu
[ 0.115348] ACPI: bus type PCI registered
[ 0.115351] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[ 0.115578] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
[ 0.115583] PCI: not using MMCONFIG
[ 0.115585] PCI: Using configuration type 1 for base access
[ 0.127285] ACPI: Added _OSI(Module Device)
[ 0.127289] ACPI: Added _OSI(Processor Device)
[ 0.127291] ACPI: Added _OSI(3.0 _SCP Extensions)
[ 0.127293] ACPI: Added _OSI(Processor Aggregator Device)
[ 0.146952] ACPI: Dynamic OEM Table Load:
[ 0.146971] ACPI: SSDT 0xFFFF9A8335C39000 000395 (v01 PmRef Cpu0Ist 00003000 INTL 20061109)
[ 0.147635] ACPI: Dynamic OEM Table Load:
[ 0.147651] ACPI: SSDT 0xFFFF9A8335C2C000 000442 (v01 PmRef Cpu0Cst 00003001 INTL 20061109)
[ 0.148984] ACPI: Dynamic OEM Table Load:
[ 0.148999] ACPI: SSDT 0xFFFF9A8335EB0600 00015F (v01 PmRef ApIst 00003000 INTL 20061109)
[ 0.149587] ACPI: Dynamic OEM Table Load:
[ 0.149600] ACPI: SSDT 0xFFFF9A8335C2D540 00008D (v01 PmRef ApCst 00003000 INTL 20061109)
[ 0.153285] ACPI: Interpreter enabled
[ 0.153324] ACPI: (supports S0)
[ 0.153327] ACPI: Using IOAPIC for interrupt routing
[ 0.153427] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
[ 0.163811] [Firmware Info]: PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] not reserved in ACPI motherboard resources
[ 0.163816] PCI: not using MMCONFIG
[ 0.163823] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[ 0.168722] ACPI: Power Resource [USBC] (on)
[ 0.175996] ACPI: Power Resource [PLPE] (on)
[ 0.181025] (null): Device [PWM1] is in always present list
[ 0.187069] ACPI: Power Resource [CLK0] (off)
[ 0.187208] ACPI: Power Resource [CLK1] (on)
[ 0.187510] ACPI: Power Resource [P28X] (off)
[ 0.187630] ACPI: Power Resource [P18X] (off)
[ 0.189405] ACPI: Power Resource [TCPR] (off)
[ 0.193308] ACPI: [Firmware Bug]: BIOS _OSI(Linux) query ignored
[ 0.200977] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
[ 0.200991] acpi PNP0A08:00: _OSC: OS supports [ASPM ClockPM Segments MSI]
[ 0.201120] acpi PNP0A08:00: _OSC failed (AE_ERROR); disabling ASPM
[ 0.201129] acpi PNP0A08:00: fail to add MMCONFIG information, can't access extended PCI configuration space under this bridge.
[ 0.201922] PCI host bridge to bus 0000:00
[ 0.201929] pci_bus 0000:00: root bus resource [io 0x0070-0x0077]
[ 0.201933] pci_bus 0000:00: root bus resource [io 0x0000-0x006f window]
[ 0.201937] pci_bus 0000:00: root bus resource [io 0x0078-0x0cf7 window]
[ 0.201940] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff window]
[ 0.201944] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[ 0.201958] pci_bus 0000:00: root bus resource [mem 0x000c0000-0x000dffff window]
[ 0.201962] pci_bus 0000:00: root bus resource [mem 0x000e0000-0x000fffff window]
[ 0.201965] pci_bus 0000:00: root bus resource [mem 0x90c00000-0x90ffffff window]
[ 0.201969] pci_bus 0000:00: root bus resource [mem 0x7af00001-0x7ef00000 window]
[ 0.201972] pci_bus 0000:00: root bus resource [mem 0x80000000-0x908ffffe window]
[ 0.201975] pci_bus 0000:00: root bus resource [mem 0xfed40000-0xfed40fff window]
[ 0.201980] pci_bus 0000:00: root bus resource [bus 00-ff]
[ 0.201997] pci 0000:00:00.0: [8086:0f00] type 00 class 0x060000
[ 0.202272] pci 0000:00:02.0: [8086:0f31] type 00 class 0x030000
[ 0.202290] pci 0000:00:02.0: reg 0x10: [mem 0x90000000-0x903fffff]
[ 0.202306] pci 0000:00:02.0: reg 0x18: [mem 0x80000000-0x8fffffff pref]
[ 0.202320] pci 0000:00:02.0: reg 0x20: [io 0x1000-0x1007]
[ 0.202597] pci 0000:00:14.0: [8086:0f35] type 00 class 0x0c0330
[ 0.202622] pci 0000:00:14.0: reg 0x10: [mem 0x90800000-0x9080ffff 64bit]
[ 0.202700] pci 0000:00:14.0: PME# supported from D3hot D3cold
[ 0.202942] pci 0000:00:1a.0: [8086:0f18] type 00 class 0x108000
[ 0.202976] pci 0000:00:1a.0: reg 0x10: [mem 0x90700000-0x907fffff]
[ 0.202990] pci 0000:00:1a.0: reg 0x14: [mem 0x90600000-0x906fffff]
[ 0.203090] pci 0000:00:1a.0: PME# supported from D0 D3hot
[ 0.203324] pci 0000:00:1f.0: [8086:0f1c] type 00 class 0x060100
[ 0.203616] pci_bus 0000:00: on NUMA node 0
[ 0.204417] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
[ 0.204606] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
[ 0.204793] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
[ 0.204992] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
[ 0.205180] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
[ 0.205368] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
[ 0.205558] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
[ 0.205744] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
[ 0.224728] vgaarb: setting as boot device: PCI:0000:00:02.0
[ 0.224733] vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
[ 0.224736] vgaarb: loaded
[ 0.224738] vgaarb: bridge control possible 0000:00:02.0
[ 0.224935] SCSI subsystem initialized
[ 0.226111] libata version 3.00 loaded.
[ 0.226124] ACPI: bus type USB registered
[ 0.226193] usbcore: registered new interface driver usbfs
[ 0.226223] usbcore: registered new interface driver hub
[ 0.226280] usbcore: registered new device driver usb
[ 0.314452] random: fast init done
[ 0.465639] media: Linux media interface: v0.10
[ 0.465674] Linux video capture interface: v2.00
[ 0.465834] Registered efivars operations
[ 0.484954] PCI: Using ACPI for IRQ routing
[ 0.484960] PCI: pci_cache_line_size set to 64 bytes
[ 0.484986] Expanded resource reserved due to conflict with PCI Bus 0000:00
[ 0.484991] e820: reserve RAM buffer [mem 0x0008f000-0x0008ffff]
[ 0.484994] e820: reserve RAM buffer [mem 0x0009e000-0x0009ffff]
[ 0.484997] e820: reserve RAM buffer [mem 0x78cf4000-0x7bffffff]
[ 0.485000] e820: reserve RAM buffer [mem 0x79bc9000-0x7bffffff]
[ 0.485003] e820: reserve RAM buffer [mem 0x79bcb000-0x7bffffff]
[ 0.485006] e820: reserve RAM buffer [mem 0x79d41000-0x7bffffff]
[ 0.485008] e820: reserve RAM buffer [mem 0x7a000000-0x7bffffff]
[ 0.485607] clocksource: Switched to clocksource refined-jiffies
[ 0.498289] VFS: Disk quotas dquot_6.6.0
[ 0.498340] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[ 0.498534] pnp: PnP ACPI init
[ 0.498695] pnp 00:00: Plug and Play ACPI device, IDs PNP0b00 (active)
[ 0.499189] system 00:01: [io 0x0680-0x069f] has been reserved
[ 0.499194] system 00:01: [io 0x0400-0x047f] has been reserved
[ 0.499198] system 00:01: [io 0x0500-0x05fe] has been reserved
[ 0.499202] system 00:01: [io 0x0600-0x061f] has been reserved
[ 0.499206] system 00:01: [io 0x164e-0x164f] has been reserved
[ 0.499215] system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active)
[ 0.500696] system 00:02: [io 0x0240-0x0259] has been reserved
[ 0.500705] system 00:02: Plug and Play ACPI device, IDs PNP0c02 (active)
[ 0.509688] pnp: PnP ACPI: found 3 devices
[ 0.514296] pci_bus 0000:00: resource 4 [io 0x0070-0x0077]
[ 0.514302] pci_bus 0000:00: resource 5 [io 0x0000-0x006f window]
[ 0.514306] pci_bus 0000:00: resource 6 [io 0x0078-0x0cf7 window]
[ 0.514309] pci_bus 0000:00: resource 7 [io 0x0d00-0xffff window]
[ 0.514313] pci_bus 0000:00: resource 8 [mem 0x000a0000-0x000bffff window]
[ 0.514317] pci_bus 0000:00: resource 9 [mem 0x000c0000-0x000dffff window]
[ 0.514320] pci_bus 0000:00: resource 10 [mem 0x000e0000-0x000fffff window]
[ 0.514324] pci_bus 0000:00: resource 11 [mem 0x90c00000-0x90ffffff window]
[ 0.514327] pci_bus 0000:00: resource 12 [mem 0x7af00001-0x7ef00000 window]
[ 0.514330] pci_bus 0000:00: resource 13 [mem 0x80000000-0x908ffffe window]
[ 0.514334] pci_bus 0000:00: resource 14 [mem 0xfed40000-0xfed40fff window]
[ 0.514538] NET: Registered protocol family 2
[ 0.514881] TCP established hash table entries: 16384 (order: 5, 131072 bytes)
[ 0.514946] TCP bind hash table entries: 16384 (order: 6, 262144 bytes)
[ 0.515051] TCP: Hash tables configured (established 16384 bind 16384)
[ 0.515132] UDP hash table entries: 1024 (order: 3, 32768 bytes)
[ 0.515154] UDP-Lite hash table entries: 1024 (order: 3, 32768 bytes)
[ 0.515293] NET: Registered protocol family 1
[ 0.515330] pci 0000:00:02.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[ 0.515751] PCI: CLS 0 bytes, default 64
[ 0.515899] Trying to unpack rootfs image as initramfs...
[ 0.561777] Freeing initrd memory: 1328K
[ 0.562070] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x1522c79555f, max_idle_ns: 440795265300 ns
[ 0.562098] clocksource: Switched to clocksource tsc
[ 0.562880] in byt_audio_platform_init
[ 0.563792] audit: initializing netlink subsys (disabled)
[ 0.563834] audit: type=2000 audit(1533821168.491:1): initialized
[ 0.564640] workingset: timestamp_bits=46 max_order=19 bucket_order=0
[ 0.565207] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[ 0.565253] fuse init (API version 7.26)
[ 0.565340] SELinux: Registering netfilter hooks
[ 1.626508] NET: Registered protocol family 38
[ 1.626526] io scheduler noop registered
[ 1.626528] io scheduler deadline registered
[ 1.626561] io scheduler cfq registered (default)
[ 1.626907] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[ 1.626968] efifb: probing for efifb
[ 1.627001] efifb: framebuffer at 0x80000000, using 4160k, total 4160k
[ 1.627004] efifb: mode is 1366x768x32, linelength=5504, pages=1
[ 1.627005] efifb: scrolling: redraw
[ 1.627008] efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
[ 1.636257] Console: switching to colour frame buffer device 170x48
[ 1.645115] fb0: EFI VGA frame buffer device
[ 1.645147] intel_idle: MWAIT substates: 0x33000020
[ 1.645150] intel_idle: v0.4.1 model 0x37
[ 1.645157] intel_idle: state C6N-BYT is disabled
[ 1.645159] intel_idle: state C6S-BYT is disabled
[ 1.645443] intel_idle: lapic_timer_reliable_states 0xffffffff
[ 1.652933] power_supply ADP1: uevent
[ 1.652937] power_supply ADP1: POWER_SUPPLY_NAME=ADP1
[ 1.652952] ACPI: AC Adapter [ADP1] (off-line)
[ 1.653838] input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input0
[ 1.654401] ACPI: Lid Switch [LID]
[ 1.654515] input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input1
[ 1.654522] ACPI: Sleep Button [SLPB]
[ 1.658909] [Firmware Bug]: No valid trip found
[ 1.659591] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[ 1.680003] power_supply ADP1: power_supply_changed
[ 1.680010] power_supply ADP1: power_supply_changed_work
[ 1.690608] power_supply ADP1: power_supply_update_gen_leds 0
[ 1.690618] power_supply ADP1: uevent
[ 1.690621] power_supply ADP1: POWER_SUPPLY_NAME=ADP1
[ 1.705137] power_supply ADP1: prop ONLINE=0
[ 1.705227] i2c i2c-0: i2c read failed
[ 1.723729] power_supply BATC: uevent
[ 1.723733] power_supply BATC: POWER_SUPPLY_NAME=BATC
[ 1.723754] ACPI: Battery Slot [BATC] (battery present)
[ 1.734120] power_supply BATC: power_supply_changed
[ 1.734125] power_supply BATC: power_supply_changed_work
[ 1.734131] power_supply BATC: power_supply_update_bat_leds 2
[ 1.734139] power_supply BATC: uevent
[ 1.734142] power_supply BATC: POWER_SUPPLY_NAME=BATC
[ 1.734148] power_supply BATC: prop STATUS=Discharging
[ 1.734153] power_supply BATC: prop PRESENT=1
[ 1.734158] power_supply BATC: prop TECHNOLOGY=Li-ion
[ 1.734162] power_supply BATC: prop CYCLE_COUNT=26
[ 1.734167] power_supply BATC: prop VOLTAGE_MIN_DESIGN=3750000
[ 1.734171] power_supply BATC: prop VOLTAGE_NOW=3959000
[ 1.734175] power_supply BATC: prop CURRENT_NOW=1108000
[ 1.734179] power_supply BATC: prop CHARGE_FULL_DESIGN=8060000
[ 1.734184] power_supply BATC: prop CHARGE_FULL=6579000
[ 1.734188] power_supply BATC: prop CHARGE_NOW=6291000
[ 1.734192] power_supply BATC: prop CAPACITY=95
[ 1.734196] power_supply BATC: prop CAPACITY_LEVEL=Normal
[ 1.734200] power_supply BATC: prop MODEL_NAME=SR Real Battery
[ 1.734205] power_supply BATC: prop MANUFACTURER=Intel SR 1
[ 1.734209] power_supply BATC: prop SERIAL_NUMBER=123456789
[ 1.982774] serial8250: ttyS0 at I/O 0x3f8 (irq = 0, base_baud = 115200) is a 16550A
[ 1.983501] hpet: number irqs doesn't agree with number of timers
[ 1.983597] Linux agpgart interface v0.103
[ 1.998793] brd: module loaded
[ 2.001795] loop: module loaded
[ 2.016434] [Firmware Bug]: No valid trip found
[ 2.019521] VMware PVSCSI driver - version 1.0.7.0-k
[ 2.019602] hv_vmbus: registering driver hv_storvsc
[ 2.020572] tun: Universal TUN/TAP device driver, 1.6
[ 2.020576] tun: (C) 1999-2004 Max Krasnyansky <ma...@qualcomm.com>
[ 2.020644] Fusion MPT base driver 3.04.20
[ 2.020645] Copyright (c) 1999-2008 LSI Corporation
[ 2.020659] Fusion MPT SPI Host driver 3.04.20
[ 2.020817] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[ 2.020825] ehci-pci: EHCI PCI platform driver
[ 2.020962] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[ 2.020970] ohci-pci: OHCI PCI platform driver
[ 2.021003] uhci_hcd: USB Universal Host Controller Interface driver
[ 2.021387] xhci_hcd 0000:00:14.0: xHCI Host Controller
[ 2.021475] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 1
[ 2.022593] xhci_hcd 0000:00:14.0: hcc params 0x200077c1 hci version 0x100 quirks 0x00009810
[ 2.022601] xhci_hcd 0000:00:14.0: cache line size of 64 is not supported
[ 2.022806] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
[ 2.022810] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 2.022814] usb usb1: Product: xHCI Host Controller
[ 2.022817] usb usb1: Manufacturer: Linux 4.9.109-android-x86_64-g45b3cc90fff5 xhci-hcd
[ 2.022819] usb usb1: SerialNumber: 0000:00:14.0
[ 2.023078] hub 1-0:1.0: USB hub found
[ 2.023114] hub 1-0:1.0: 6 ports detected
[ 2.024200] xhci_hcd 0000:00:14.0: xHCI Host Controller
[ 2.024275] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 2
[ 2.024389] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003
[ 2.024393] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 2.024396] usb usb2: Product: xHCI Host Controller
[ 2.024399] usb usb2: Manufacturer: Linux 4.9.109-android-x86_64-g45b3cc90fff5 xhci-hcd
[ 2.024401] usb usb2: SerialNumber: 0000:00:14.0
[ 2.024648] hub 2-0:1.0: USB hub found
[ 2.024668] hub 2-0:1.0: 1 port detected
[ 2.025085] usbcore: registered new interface driver usb-storage
[ 2.025152] usbcore: registered new interface driver ums-alauda
[ 2.025239] usbcore: registered new interface driver ums-cypress
[ 2.025306] usbcore: registered new interface driver ums-datafab
[ 2.025338] usbcore: registered new interface driver ums_eneub6250
[ 2.025363] usbcore: registered new interface driver ums-freecom
[ 2.025388] usbcore: registered new interface driver ums-isd200
[ 2.025412] usbcore: registered new interface driver ums-jumpshot
[ 2.025447] usbcore: registered new interface driver ums-onetouch
[ 2.025484] usbcore: registered new interface driver ums-realtek
[ 2.025551] usbcore: registered new interface driver ums-sddr09
[ 2.025584] usbcore: registered new interface driver ums-sddr55
[ 2.025610] usbcore: registered new interface driver ums-usbat
[ 2.025848] i8042: PNP: No PS/2 controller found. Probing ports directly.
[ 3.069717] i8042: No controller found
[ 3.069791] hv_vmbus: registering driver hyperv_keyboard
[ 3.069916] mousedev: PS/2 mouse device common for all mice
[ 3.070482] rtc rtc0: rtc_cmos: dev (253:0)
[ 3.070493] rtc_cmos 00:00: rtc core: registered rtc_cmos as rtc0
[ 3.070505] rtc_cmos 00:00: no alarms, 242 bytes nvram
[ 3.070532] IR Sharp protocol handler initialized
[ 3.070534] IR XMP protocol handler initialized
[ 3.070608] device-mapper: uevent: version 1.0.3
[ 3.070689] device-mapper: ioctl: 4.35.0-ioctl (2016-06-23) initialised: dm-d...@redhat.com
[ 3.070796] intel_pstate: Intel P-state driver initializing
[ 3.071443] sdhci: Secure Digital Host Controller Interface driver
[ 3.071448] sdhci: Copyright(c) Pierre Ossman
[ 3.091458] mmc0: SDHCI controller on ACPI [80860F14:01] using ADMA
[ 3.098129] mmc1: SDHCI controller on ACPI [INT33BB:00] using ADMA
[ 3.116142] mmc2: SDHCI controller on ACPI [80860F14:00] using ADMA
[ 3.116277] sdhci-pltfm: SDHCI platform and OF driver helper
[ 3.116865] hidraw: raw HID events driver (C) Jiri Kosina
[ 3.117151] usbcore: registered new interface driver usbhid
[ 3.117154] usbhid: USB HID core driver
[ 3.117272] vlv2_plat_clk vlv2_plat_clk: vlv2_plat_clk initialized
[ 3.117382] ashmem: initialized
[ 3.118130] oprofile: using NMI interrupt.
[ 3.118204] GACT probability NOT on
[ 3.118213] Mirror/redirect action on
[ 3.118219] u32 classifier
[ 3.118221] Actions configured
[ 3.118225] Netfilter messages via NETLINK v0.30.
[ 3.118363] nf_conntrack version 0.5.0 (16384 buckets, 65536 max)
[ 3.118483] ctnetlink v0.93: registering with nfnetlink.
[ 3.118745] xt_time: kernel timezone is -0000
[ 3.118831] IPv4 over IPsec tunneling driver
[ 3.119211] ip_tables: (C) 2000-2006 Netfilter Core Team
[ 3.119401] arp_tables: arp_tables: (C) 2002 David S. Miller
[ 3.119425] Initializing XFRM netlink socket
[ 3.119517] NET: Registered protocol family 10
[ 3.120079] mip6: Mobile IPv6
[ 3.120093] ip6_tables: (C) 2000-2006 Netfilter Core Team
[ 3.120619] sit: IPv6, IPv4 and MPLS over IPv4 tunneling driver
[ 3.121328] NET: Registered protocol family 17
[ 3.121343] NET: Registered protocol family 15
[ 3.121356] NET: Registered protocol family 35
[ 3.122059] microcode: sig=0x30678, pf=0x2, revision=0x80a
[ 3.122176] microcode: Microcode Update Driver: v2.01 <tig...@aivazian.fsnet.co.uk>, Peter Oruba
[ 3.122202] SSE version of gcm_enc/dec engaged.
[ 3.127869] registered taskstats version 1
[ 3.128258] Magic number: 14:440:432
[ 3.128474] rtc_cmos 00:00: setting system clock to 2018-08-09 13:26:12 UTC (1533821172)
[ 3.130890] Freeing unused kernel memory: 1300K
[ 3.130894] Write protecting the kernel read-only data: 14336k
[ 3.132264] Freeing unused kernel memory: 1740K
[ 3.136794] Freeing unused kernel memory: 468K
[ 3.199558] mmc1: queuing unknown CIS tuple 0x80 (2 bytes)
[ 3.201128] mmc1: queuing unknown CIS tuple 0x80 (3 bytes)
[ 3.202688] mmc1: queuing unknown CIS tuple 0x80 (3 bytes)
[ 3.205512] mmc1: queuing unknown CIS tuple 0x80 (7 bytes)
[ 3.215670] random: env: uninitialized urandom read (4 bytes read)
[ 3.218818] random: setsid: uninitialized urandom read (4 bytes read)
[ 3.221766] random: cttyhack: uninitialized urandom read (4 bytes read)
[ 3.254237] mmc2: new HS200 MMC card at address 0001
[ 3.254727] mmcblk2: mmc2:0001 SEM32G 29.1 GiB
[ 3.255986] mmcblk2boot0: mmc2:0001 SEM32G partition 1 4.00 MiB
[ 3.257276] mmcblk2boot1: mmc2:0001 SEM32G partition 2 4.00 MiB
[ 3.257601] mmcblk2rpmb: mmc2:0001 SEM32G partition 3 4.00 MiB
[ 3.262751] mmcblk2: p1 p2 p3 p4
[ 3.277479] mmc1: new ultra high speed DDR50 SDIO card at address 0001
[ 3.293070] mmc0: new high speed SDHC card at address aaaa
[ 3.293739] mmcblk0: mmc0:aaaa SL32G 29.7 GiB
[ 3.302698] mmcblk0: p1
[ 4.470181] VFS: could not find a valid V7 on mmcblk2p3.
[ 4.488909] EXT4-fs (mmcblk2p4): couldn't mount as ext3 due to feature incompatibilities
[ 4.489965] EXT4-fs (mmcblk2p4): INFO: recovery required on readonly filesystem
[ 4.489968] EXT4-fs (mmcblk2p4): write access will be enabled during recovery
[ 5.287207] EXT4-fs (mmcblk2p4): recovery complete
[ 5.289179] EXT4-fs (mmcblk2p4): mounted filesystem with ordered data mode. Opts: (null)
[ 5.377295] EXT4-fs (mmcblk2p4): warning: maximal mount count reached, running e2fsck is recommended
[ 5.378213] EXT4-fs (mmcblk2p4): re-mounted. Opts: (null)
[ 5.390294] EXT4-fs (loop0): couldn't mount as ext3 due to feature incompatibilities
[ 5.423943] EXT4-fs (loop0): warning: maximal mount count reached, running e2fsck is recommended
[ 5.428955] EXT4-fs (loop0): recovery complete
[ 5.432961] EXT4-fs (loop0): mounted filesystem with ordered data mode. Opts: (null)
[ 5.463930] EXT4-fs (mmcblk2p4): re-mounted. Opts: (null)
[ 5.484526] init: init first stage started!
[ 5.484602] init: Using Android DT directory /proc/device-tree/firmware/android/
[ 5.484631] init: First stage mount skipped (missing/incompatible fstab in device tree)
[ 5.484648] init: Skipped setting INIT_AVB_VERSION (not in recovery mode)
[ 5.484663] init: Loading SELinux policy
[ 5.488255] SELinux: 4096 avtab hash slots, 12491 rules.
[ 5.492134] SELinux: 4096 avtab hash slots, 12491 rules.
[ 5.492141] SELinux: 1 users, 4 roles, 1034 types, 0 bools, 1 sens, 1024 cats
[ 5.492144] SELinux: 92 classes, 12491 rules
[ 5.493216] SELinux: Class bpf not defined in policy.
[ 5.493218] SELinux: the above unknown classes and permissions will be denied
[ 5.493226] SELinux: Completing initialization.
[ 5.493227] SELinux: Setting up existing superblocks.
[ 5.515346] audit: type=1403 audit(1533821174.885:2): policy loaded auid=4294967295 ses=4294967295
[ 5.515468] selinux: SELinux: Loaded policy from /sepolicy\x0a
[ 5.515850] audit: type=1400 audit(1533821174.885:3): avc: denied { getattr } for pid=1 comm="init" path="/plat_file_contexts" dev="tmpfs" ino=6572 scontext=u:r:kernel:s0 tcontext=u:object_r:tmpfs:s0 tclass=file permissive=1
[ 5.515887] audit: type=1400 audit(1533821174.885:4): avc: denied { read } for pid=1 comm="init" name="plat_file_contexts" dev="tmpfs" ino=6572 scontext=u:r:kernel:s0 tcontext=u:object_r:tmpfs:s0 tclass=file permissive=1
[ 5.515905] audit: type=1400 audit(1533821174.885:5): avc: denied { open } for pid=1 comm="init" path="/plat_file_contexts" dev="tmpfs" ino=6572 scontext=u:r:kernel:s0 tcontext=u:object_r:tmpfs:s0 tclass=file permissive=1
[ 5.517842] selinux: SELinux: Loaded file_contexts\x0a
[ 5.518142] audit: type=1400 audit(1533821174.888:6): avc: denied { relabelfrom } for pid=1 comm="init" name="init" dev="tmpfs" ino=6556 scontext=u:r:kernel:s0 tcontext=u:object_r:tmpfs:s0 tclass=file permissive=1
[ 5.519556] init: init second stage started!
[ 5.519728] audit: type=1400 audit(1533821174.889:7): avc: denied { getattr } for pid=1 comm="init" path="/plat_property_contexts" dev="tmpfs" ino=6574 scontext=u:r:init:s0 tcontext=u:object_r:tmpfs:s0 tclass=file permissive=1
[ 5.523501] init: Using Android DT directory /proc/device-tree/firmware/android/
[ 5.525306] selinux: SELinux: Loaded file_contexts\x0a
[ 5.525630] selinux: SELinux: Loaded property_contexts from /plat_property_contexts & /nonplat_property_contexts.\x0a
[ 5.525641] init: Running restorecon...
[ 5.527012] audit: type=1400 audit(1533821174.896:8): avc: denied { relabelfrom } for pid=1 comm="init" name="plat_file_contexts" dev="tmpfs" ino=6572 scontext=u:r:init:s0 tcontext=u:object_r:tmpfs:s0 tclass=file permissive=1
[ 5.527515] selinux: SELinux: Could not stat /dev/block: No such file or directory.\x0a
[ 5.527642] init: waitid failed: No child processes
[ 5.527687] init: Couldn't load property file: Unable to open '/system/etc/prop.default': No such file or directory: No such file or directory
[ 5.527708] init: Couldn't load property file: Unable to open '/prop.default': No such file or directory: No such file or directory
[ 5.527935] init: Couldn't load property file: Unable to open '/odm/default.prop': No such file or directory: No such file or directory
[ 5.547281] cgroup: init (1) created nested cgroup for controller "memory" which has incomplete hierarchy support. Nested cgroups may change behavior in the future.
[ 5.547284] cgroup: "memory" requires setting use_hierarchy to 1 on the root
[ 5.547494] audit: type=1400 audit(1533821174.917:9): avc: denied { create } for pid=1 comm="init" name="cgroup.procs" scontext=u:r:init:s0 tcontext=u:object_r:cgroup:s0 tclass=file permissive=1
[ 5.552766] ueventd: ueventd started!
[ 5.552954] audit: type=1400 audit(1533821174.922:10): avc: denied { getattr } for pid=1237 comm="ueventd" path="/ueventd.rc" dev="tmpfs" ino=4792 scontext=u:r:ueventd:s0 tcontext=u:object_r:tmpfs:s0 tclass=file permissive=1
[ 5.553005] ueventd: Parsing file /ueventd.rc...
[ 5.555682] ueventd: Parsing file /vendor/ueventd.rc...
[ 5.555769] ueventd: Unable to open '/vendor/ueventd.rc': No such file or directory
[ 5.555837] ueventd: Parsing file /odm/ueventd.rc...
[ 5.555920] ueventd: Unable to open '/odm/ueventd.rc': No such file or directory
[ 5.556154] ueventd: Parsing file /ueventd.android_x86_64.rc...
[ 5.559066] selinux: SELinux: Loaded file_contexts\x0a
[ 5.560677] ueventd: Parsing file /system/etc/modules.blacklist...
[ 5.573310] ueventd: Parsing file /system/lib/modules/4.9.109-android-x86_64-g45b3cc90fff5/modules.alias...
[ 5.646540] audit_printk_skb: 9 callbacks suppressed
[ 5.646543] audit: type=1400 audit(1533821175.016:14): avc: denied { sys_module } for pid=1237 comm="ueventd" capability=16 scontext=u:r:ueventd:s0 tcontext=u:r:ueventd:s0 tclass=capability permissive=1
[ 5.646576] audit: type=1400 audit(1533821175.016:15): avc: denied { module_load } for pid=1237 comm="ueventd" path="/system/lib/modules/4.9.109-android-x86_64-g45b3cc90fff5/kernel/drivers/misc/mei/mei.ko" dev="loop0" ino=4613 scontext=u:r:ueventd:s0 tcontext=u:object_r:system_file:s0 tclass=system permissive=1
[ 5.654139] mei_txe 0000:00:1a.0: can't derive routing for PCI INT A
[ 5.654145] mei_txe 0000:00:1a.0: PCI INT A: not connected
[ 5.748453] [drm] Initialized
[ 5.793631] [drm] Memory usable by graphics device = 2048M
[ 5.793636] checking generic (80000000 410000) vs hw (80000000 10000000)
[ 5.793637] fb: switching to inteldrmfb from EFI VGA
[ 5.793676] Console: switching to colour dummy device 80x25
[ 5.793789] [drm] Replacing VGA console driver
[ 5.793902] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
[ 5.793904] [drm] Driver supports precise vblank timestamp query.
[ 5.794484] vgaarb: device changed decodes: PCI:0000:00:02.0,olddecodes=io+mem,decodes=io+mem:owns=io+mem
[ 5.827830] ACPI: Video Device [GFX0] (multi-head: yes rom: no post: no)
[ 5.828414] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:00/input/input2
[ 5.828533] [drm] HDaudio controller not detected,using LPE audio instead\x0a
[ 5.828623] [drm] Initialized i915 1.6.0 20160919 for 0000:00:02.0 on minor 0
[ 5.851517] fbcon: inteldrmfb (fb0) is primary device
[ 6.800874] Console: switching to colour frame buffer device 170x48
[ 6.861426] i915 0000:00:02.0: fb0: inteldrmfb frame buffer device
[ 6.935735] iTCO_vendor_support: vendor-support=0
[ 6.936527] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.11
[ 6.936641] iTCO_wdt: Found a Bay Trail SoC TCO device (Version=3, TCOBASE=0x0460)
[ 6.936773] iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
[ 7.035297] inv-mpu6050-i2c i2c-INVN6500:00: mounting matrix not found: using identity...
[ 7.166698] i2c i2c-4: Added multiplexed i2c bus 14
[ 7.195881] ak8975 14-000c: mounting matrix not found: using identity...
[ 7.195893] 14-000c supply vdd not found, using dummy regulator
[ 7.195965] 14-000c supply vid not found, using dummy regulator
[ 7.282204] EFI Variables Facility v0.08 2004-May-17
[ 7.323783] pstore: using zlib compression
[ 7.323792] pstore: Registered efi as persistent store backend
[ 7.365170] dw_dmac INTL9C60:00: Missing DT data
[ 7.377759] dw_dmac INTL9C60:00: DesignWare DMA Controller, 8 channels
[ 7.390170] dw_dmac INTL9C60:01: Missing DT data
[ 7.403773] dw_dmac INTL9C60:01: DesignWare DMA Controller, 8 channels
[ 7.483745] intel_sst_acpi 80860F28:00: BYT-CR not detected
[ 7.483989] intel_sst_acpi 80860F28:00: LPE base: 0x90a00000 size:0x200000
[ 7.483994] intel_sst_acpi 80860F28:00: IRAM base: 0x90ac0000
[ 7.484044] intel_sst_acpi 80860F28:00: DRAM base: 0x90b00000
[ 7.484059] intel_sst_acpi 80860F28:00: SHIM base: 0x90b40000
[ 7.484073] intel_sst_acpi 80860F28:00: Mailbox base: 0x90b44000
[ 7.484088] intel_sst_acpi 80860F28:00: DDR base: 0x20000000
[ 7.484259] intel_sst_acpi 80860F28:00: Got drv data max stream 25
[ 7.484482] audit: type=1400 audit(1533821176.854:16): avc: denied { read } for pid=371 comm="kworker/1:1" name="lib" dev="tmpfs" ino=6649 scontext=u:r:kernel:s0 tcontext=u:object_r:tmpfs:s0 tclass=lnk_file permissive=1
[ 7.534224] bytcr_rt5640 bytcr_rt5640: quirk DMIC1_MAP enabled
[ 7.534229] bytcr_rt5640 bytcr_rt5640: quirk DMIC enabled
[ 7.534233] bytcr_rt5640 bytcr_rt5640: quirk MCLK_EN enabled
[ 7.539708] bytcr_rt5640 bytcr_rt5640: snd-soc-dummy-dai <-> media-cpu-dai mapping ok
[ 7.539796] bytcr_rt5640 bytcr_rt5640: snd-soc-dummy-dai <-> deepbuffer-cpu-dai mapping ok
[ 7.539838] compress asoc: snd-soc-dummy-dai <-> compress-cpu-dai mapping ok
[ 7.540375] bytcr_rt5640 bytcr_rt5640: rt5640-aif1 <-> ssp2-port mapping ok
[ 7.668555] wmi: Mapper loaded
[ 7.684927] asus_wmi: ASUS WMI generic driver loaded
[ 7.686960] asus_wmi: Initialization: 0x1
[ 7.687043] asus_wmi: BIOS WMI version: 7.9
[ 7.687127] asus_wmi: SFUN value: 0x37
[ 7.689804] input: Asus WMI hotkeys as /devices/platform/asus-nb-wmi/input/input3
[ 7.691431] asus_wmi: Number of fans: 1
[ 7.725829] mmc1: queuing unknown CIS tuple 0x80 (2 bytes)
[ 7.727490] mmc1: queuing unknown CIS tuple 0x80 (3 bytes)
[ 7.728303] 80860F0A:00: ttyS1 at MMIO 0x9094d000 (irq = 39, base_baud = 2764800) is a 16550A
[ 7.729146] mmc1: queuing unknown CIS tuple 0x80 (3 bytes)
[ 7.732146] mmc1: queuing unknown CIS tuple 0x80 (7 bytes)
[ 7.754206] Bluetooth: Core ver 2.22
[ 7.754263] NET: Registered protocol family 31
[ 7.754266] Bluetooth: HCI device and connection manager initialized
[ 7.754275] Bluetooth: HCI socket layer initialized
[ 7.754281] Bluetooth: L2CAP socket layer initialized
[ 7.754331] Bluetooth: SCO socket layer initialized
[ 7.764825] Bluetooth: HCI UART driver ver 2.3
[ 7.764829] Bluetooth: HCI UART protocol H4 registered
[ 7.764831] Bluetooth: HCI UART protocol BCSP registered
[ 7.764832] Bluetooth: HCI UART protocol LL registered
[ 7.764833] Bluetooth: HCI UART protocol ATH3K registered
[ 7.764835] Bluetooth: HCI UART protocol Three-wire (H5) registered
[ 7.764953] Bluetooth: HCI UART protocol Intel registered
[ 7.776426] hci_bcm BCM2E39:00: BCM irq: 70
[ 7.776504] hci_bcm BCM2E39:00: BCM2E39:00 device registered.
[ 7.776718] Bluetooth: HCI UART protocol Broadcom registered
[ 7.776722] Bluetooth: HCI UART protocol QCA registered
[ 7.776724] Bluetooth: HCI UART protocol AG6XX registered
[ 7.776726] Bluetooth: HCI UART protocol Marvell registered
[ 7.812441] usbcore: registered new interface driver brcmfmac
[ 7.963943] brcmfmac: brcmf_c_preinit_dcmds: Firmware version = wl0: Oct 25 2013 14:06:19 version 6.10.197.104 (r432142) FWID 01-f7200fce
[ 7.970807] brcmfmac: brcmf_cfg80211_reg_notifier: not a ISO3166 code (0x30 0x30)
[ 8.071457] input: SIS0817:00 0457:1070 as /devices/platform/80860F41:05/i2c-5/i2c-SIS0817:00/0018:0457:1070.0001/input/input4
[ 8.071646] hid-multitouch 0018:0457:1070.0001: input,hidraw0: I2C HID v1.00 Device [SIS0817:00 0457:1070] on i2c-SIS0817:00
[ 8.135737] mt9m114: module is from the staging directory, the quality is unknown, you have been warned.
[ 8.248348] mt9m114 i2c-INT33F0:00: gmin: initializing atomisp module subdev data.PMIC ID 1
[ 8.248559] acpi INT33F0:00: Failed to find gmin variable INT33F0:00_CamClk
[ 8.248712] acpi INT33F0:00: Failed to find gmin variable INT33F0:00_ClkSrc
[ 8.248864] acpi INT33F0:00: Failed to find gmin variable INT33F0:00_CsiPort
[ 8.249015] acpi INT33F0:00: Failed to find gmin variable INT33F0:00_CsiLanes
[ 8.249340] i2c-INT33F0:00 supply V1P8SX not found, using dummy regulator
[ 8.249449] i2c-INT33F0:00 supply V2P8SX not found, using dummy regulator
[ 8.249541] i2c-INT33F0:00 supply V1P2A not found, using dummy regulator
[ 8.249624] i2c-INT33F0:00 supply VPROG4B not found, using dummy regulator
[ 8.363708] mt9m114 i2c-INT33F0:00: camera pdata: port: 0 lanes: 1 order: 00000000
[ 8.409588] mt9m114 i2c-INT33F0:00: register atomisp i2c module type 1
[ 8.457678] input: PC Speaker as /devices/platform/pcspkr/input/input7
[ 8.508786] input: Asus Wireless Radio Control as /devices/LNXSYSTM:00/LNXSYBUS:00/ATK4001:00/input/input8
[ 8.571343] audit: type=1400 audit(1533821177.941:17): avc: denied { module_request } for pid=1253 comm="cryptomgr_test" kmod="crypto-cryptd(__ghash-pclmulqdqni)" scontext=u:r:kernel:s0 tcontext=u:r:kernel:s0 tclass=system permissive=1
[ 8.575227] modprobe: crypto-cryptd(__ghash-pclmulqdqni)
[ 8.633923] modprobe: crypto-cryptd(__ghash-pclmulqdqni)-all
[ 8.731281] intel_rapl: Found RAPL domain package
[ 8.731286] intel_rapl: Found RAPL domain core
[ 9.104822] power_supply BATC: uevent
[ 9.104826] power_supply BATC: POWER_SUPPLY_NAME=BATC
[ 9.123482] power_supply BATC: prop STATUS=Discharging
[ 9.123491] power_supply BATC: prop PRESENT=1
[ 9.123497] power_supply BATC: prop TECHNOLOGY=Li-ion
[ 9.123503] power_supply BATC: prop CYCLE_COUNT=26
[ 9.123509] power_supply BATC: prop VOLTAGE_MIN_DESIGN=3750000
[ 9.123515] power_supply BATC: prop VOLTAGE_NOW=3963000
[ 9.123520] power_supply BATC: prop CURRENT_NOW=1136000
[ 9.123525] power_supply BATC: prop CHARGE_FULL_DESIGN=8060000
[ 9.123531] power_supply BATC: prop CHARGE_FULL=6579000
[ 9.123536] power_supply BATC: prop CHARGE_NOW=6289000
[ 9.123541] power_supply BATC: prop CAPACITY=95
[ 9.123547] power_supply BATC: prop CAPACITY_LEVEL=Normal
[ 9.123552] power_supply BATC: prop MODEL_NAME=SR Real Battery
[ 9.123557] power_supply BATC: prop MANUFACTURER=Intel SR 1
[ 9.123562] power_supply BATC: prop SERIAL_NUMBER=123456789
[ 9.276115] mt9m114: module is from the staging directory, the quality is unknown, you have been warned.
[ 9.286843] power_supply ADP1: uevent
[ 9.286847] power_supply ADP1: POWER_SUPPLY_NAME=ADP1
[ 9.294069] power_supply ADP1: prop ONLINE=0
[ 9.585489] Coldboot: took 4.026000 seconds
[ 9.594472] input: gpio-keys as /devices/platform/gpio-keys.1.auto/input/input9
[ 9.595757] input: gpio-keys as /devices/platform/gpio-keys.2.auto/input/input10
[ 9.681196] audit: type=1400 audit(1533801379.043:18): avc: denied { execute_no_trans } for pid=1270 comm="init" path="/system/bin/logwrapper" dev="loop0" ino=431 scontext=u:r:init:s0 tcontext=u:object_r:system_file:s0 tclass=file permissive=1
[ 9.707825] audit: type=1400 audit(1533801379.069:19): avc: denied { getattr } for pid=1266 comm="logd" path="/vendor" dev="tmpfs" ino=4793 scontext=u:r:logd:s0 tcontext=u:object_r:tmpfs:s0 tclass=lnk_file permissive=1
[ 9.707876] audit: type=1400 audit(1533801379.069:20): avc: denied { read } for pid=1266 comm="logd" name="vendor" dev="tmpfs" ino=4793 scontext=u:r:logd:s0 tcontext=u:object_r:tmpfs:s0 tclass=lnk_file permissive=1
[ 9.708338] audit: type=1400 audit(1533801379.070:21): avc: denied { getattr } for pid=1268 comm="hwservicemanage" path="/vendor" dev="tmpfs" ino=4793 scontext=u:r:hwservicemanager:s0 tcontext=u:object_r:tmpfs:s0 tclass=lnk_file permissive=1
[ 9.708356] audit: type=1400 audit(1533801379.070:22): avc: denied { getattr } for pid=1267 comm="servicemanager" path="/vendor" dev="tmpfs" ino=4793 scontext=u:r:servicemanager:s0 tcontext=u:object_r:tmpfs:s0 tclass=lnk_file permissive=1
[ 9.708389] audit: type=1400 audit(1533801379.070:23): avc: denied { read } for pid=1268 comm="hwservicemanage" name="vendor" dev="tmpfs" ino=4793 scontext=u:r:hwservicemanager:s0 tcontext=u:object_r:tmpfs:s0 tclass=lnk_file permissive=1
[ 9.858103] logd.auditd: start
[ 9.858139] logd.klogd: 9787025747
[ 9.882382] type=1400 audit(1533801379.229:28): avc: denied { ioctl } for pid=1272 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.882665] type=1400 audit(1533801379.229:28): avc: denied { ioctl } for pid=1272 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.882671] type=1400 audit(1533801379.239:29): avc: denied { write } for pid=1278 comm="cat" path="pipe:[8835]" dev="pipefs" ino=8835 scontext=u:r:toolbox:s0 tcontext=u:r:init:s0 tclass=fifo_file permissive=1
[ 9.882893] type=1400 audit(1533801379.239:29): avc: denied { write } for pid=1278 comm="cat" path="pipe:[8835]" dev="pipefs" ino=8835 scontext=u:r:toolbox:s0 tcontext=u:r:init:s0 tclass=fifo_file permissive=1
[ 9.882899] type=1400 audit(1533801379.244:30): avc: denied { getattr } for pid=1278 comm="cat" path="/vendor" dev="tmpfs" ino=4793 scontext=u:r:toolbox:s0 tcontext=u:object_r:tmpfs:s0 tclass=lnk_file permissive=1
[ 9.882953] type=1400 audit(1533801379.244:30): avc: denied { getattr } for pid=1278 comm="cat" path="/vendor" dev="tmpfs" ino=4793 scontext=u:r:toolbox:s0 tcontext=u:object_r:tmpfs:s0 tclass=lnk_file permissive=1
[ 9.882959] type=1400 audit(1533801379.244:31): avc: denied { read } for pid=1278 comm="cat" name="vendor" dev="tmpfs" ino=4793 scontext=u:r:toolbox:s0 tcontext=u:object_r:tmpfs:s0 tclass=lnk_file permissive=1
[ 9.894811] type=1400 audit(1533801379.244:31): avc: denied { read } for pid=1278 comm="cat" name="vendor" dev="tmpfs" ino=4793 scontext=u:r:toolbox:s0 tcontext=u:object_r:tmpfs:s0 tclass=lnk_file permissive=1
[ 9.899205] binder: 1268:1268 ioctl 620a 0 returned -22
[ 9.974369] modprobe: sdcardfs
[ 10.043937] Registering sdcardfs 0.1
[ 10.232268] Bluetooth: hci0: BCM: chip id 84
[ 10.232286] Bluetooth: hci0: BCM4324B3 (002.004.006) build 0000
[ 10.352262] random: crng init done
[ 10.352266] random: 7 urandom warning(s) missed due to ratelimiting
[ 10.637881] init: Command 'load_persist_props' action=load_persist_props_action (/init.rc:266) returned 0 took 120ms.
[ 10.638498] init: starting service 'logd-reinit'...
[ 10.640008] init: processing action (load_persist_props_action) from (/system/etc/init/logcatd.rc:31)
[ 10.640159] init: processing action (firmware_mounts_complete) from (/init.rc:271)
[ 10.640275] init: processing action (early-boot) from (/system/etc/init/installd.rc:5)
[ 10.649616] Bluetooth: hci0: BCM (002.004.006) build 0161
[ 10.652275] init: processing action (boot) from (/init.rc:559)
[ 10.652694] init: Unable to open '/proc/sys/vm/min_free_order_shift': No such file or directory
[ 10.661899] init: starting service 'hidl_memory'...
[ 10.669045] init: starting service 'audio-hal-2-0'...
[ 10.670369] init: starting service 'btlinux-1.0'...
[ 11.058405] x_tables: ip_tables: owner match: used from hooks INPUT, but only valid from OUTPUT/POSTROUTING
[ 11.059432] x_tables: ip6_tables: owner match: used from hooks INPUT, but only valid from OUTPUT/POSTROUTING
[ 11.063793] modprobe: netdev-dummy0
[ 11.097812] healthd: BatteryHealthPath not found
[ 11.097836] healthd: BatteryTemperaturePath not found
[ 11.125478] healthd: battery l=95 v=4006 t=0.0 h=1 st=3 c=1110 fc=6579000 cc=26 chg=
[ 11.128376] modprobe: dummy0
[ 11.237016] audit_log_lost: 14 callbacks suppressed
[ 11.237018] audit: audit_lost=140 audit_rate_limit=20 audit_backlog_limit=64
[ 11.237021] audit: rate limit exceeded
[ 12.359302] intel_sst_acpi 80860F28:00: FW Version 01.0c.00.01
[ 12.649048] audit: audit_lost=145 audit_rate_limit=20 audit_backlog_limit=64
[ 12.649052] audit: rate limit exceeded
[ 15.019913] type=1400 audit(1533801383.225:261): avc: denied { read } for pid=1333 comm="main" name="etc" dev="tmpfs" ino=6554 scontext=u:r:zygote:s0 tcontext=u:object_r:tmpfs:s0 tclass=lnk_file permissive=1
[ 15.019924] type=1400 audit(1533801384.381:262): avc: denied { mounton } for pid=1334 comm="main" path="/" dev="tmpfs" ino=1257 scontext=u:r:zygote:s0 tcontext=u:object_r:tmpfs:s0 tclass=dir permissive=1
[ 15.919830] capability: warning: `main' uses 32-bit capabilities (legacy support in use)
[ 15.930688] type=1400 audit(1533801384.381:262): avc: denied { mounton } for pid=1334 comm="main" path="/" dev="tmpfs" ino=1257 scontext=u:r:zygote:s0 tcontext=u:object_r:tmpfs:s0 tclass=dir permissive=1
[ 15.930697] type=1400 audit(1533801385.292:263): avc: denied { getattr } for pid=1462 comm="idmap" path="/vendor" dev="tmpfs" ino=4793 scontext=u:r:zygote:s0 tcontext=u:object_r:tmpfs:s0 tclass=lnk_file permissive=1
[ 16.033909] healthd: battery l=95 v=3976 t=0.0 h=1 st=3 c=1130 fc=6579000 cc=26 chg=
[ 16.449365] type=1400 audit(1533801385.292:263): avc: denied { getattr } for pid=1462 comm="idmap" path="/vendor" dev="tmpfs" ino=4793 scontext=u:r:zygote:s0 tcontext=u:object_r:tmpfs:s0 tclass=lnk_file permissive=1
[ 16.449400] type=1400 audit(1533801385.810:264): avc: denied { create } for pid=1333 comm="main" name="tasks" scontext=u:r:zygote:s0 tcontext=u:object_r:cgroup:s0 tclass=file permissive=1
[ 17.000201] type=1400 audit(1533801385.810:264): avc: denied { create } for pid=1333 comm="main" name="tasks" scontext=u:r:zygote:s0 tcontext=u:object_r:cgroup:s0 tclass=file permissive=1
[ 17.000228] type=1400 audit(1533801386.361:265): avc: denied { read } for pid=1463 comm="system-server-i" name="vendor" dev="tmpfs" ino=4793 scontext=u:r:system_server:s0 tcontext=u:object_r:tmpfs:s0 tclass=lnk_file permissive=1
[ 17.156061] type=1400 audit(1533801386.361:265): avc: denied { read } for pid=1463 comm="system-server-i" name="vendor" dev="tmpfs" ino=4793 scontext=u:r:system_server:s0 tcontext=u:object_r:tmpfs:s0 tclass=lnk_file permissive=1
[ 17.156074] type=1400 audit(1533801386.517:266): avc: denied { write } for pid=1463 comm="system_server" name="uinput" dev="tmpfs" ino=1407 scontext=u:r:system_server:s0 tcontext=u:object_r:uhid_device:s0 tclass=chr_file permissive=1
[ 17.160190] input: Android Power Button as /devices/virtual/input/input11
[ 18.127075] healthd: battery l=95 v=3975 t=0.0 h=1 st=3 c=1140 fc=6579000 cc=26 chg=
[ 18.568596] init: processing action (sys.sysctl.extra_free_kbytes=*) from (/init.rc:697)
[ 19.873133] init: starting service 'wpa_supplicant'...
[ 19.875151] init: Created socket '/dev/socket/wpa_wlan0', mode 660, user 1010, group 1010
[ 19.976462] sdcardfs version 2.0
[ 19.976466] sdcardfs: dev_name -> /data/media
[ 19.976467] sdcardfs: options -> fsuid=1023,fsgid=1023,multiuser,derive_gid,mask=6,userid=0,gid=1015
[ 19.976469] sdcardfs: mnt -> ffff9a83357a13a0
[ 19.976497] sdcardfs: mounted on top of /data/media type ext4
[ 19.976714] Remount options were mask=23,gid=9997 for vfsmnt ffff9a82f5bdde20.
[ 19.976718] sdcardfs : options - debug:1
[ 19.976719] sdcardfs : options - gid:9997
[ 19.976720] sdcardfs : options - mask:23
[ 19.976940] Remount options were mask=7,gid=9997 for vfsmnt ffff9a82f5bdd3a0.
[ 19.976944] sdcardfs : options - debug:1
[ 19.976945] sdcardfs : options - gid:9997
[ 19.976946] sdcardfs : options - mask:7
[ 20.049412] init: starting service 'webview_zygote32'...
[ 20.050636] type=1400 audit(1533801389.371:303): avc: denied { read } for pid=1603 comm="sh" name="vendor" dev="tmpfs" ino=4793 scontext=u:r:blkid_untrusted:s0 tcontext=u:object_r:tmpfs:s0 tclass=lnk_file permissive=1
[ 20.050648] type=1400 audit(1533801389.411:304): avc: denied { create } for pid=1 comm="init" name="cgroup.procs" scontext=u:r:init:s0 tcontext=u:object_r:cgroup:s0 tclass=file permissive=1
[ 20.050825] init: Created socket '/dev/socket/webview_zygote', mode 660, user 1053, group 1000
[ 20.063225] type=1400 audit(1533801389.411:304): avc: denied { create } for pid=1 comm="init" name="cgroup.procs" scontext=u:r:init:s0 tcontext=u:object_r:cgroup:s0 tclass=file permissive=1
[ 20.063236] type=1400 audit(1533801389.424:305): avc: denied { getattr } for pid=1615 comm="webview_zygote3" path="/vendor" dev="tmpfs" ino=4793 scontext=u:r:webview_zygote:s0 tcontext=u:object_r:tmpfs:s0 tclass=lnk_file permissive=1
[ 20.063611] type=1400 audit(1533801389.424:305): avc: denied { getattr } for pid=1615 comm="webview_zygote3" path="/vendor" dev="tmpfs" ino=4793 scontext=u:r:webview_zygote:s0 tcontext=u:object_r:tmpfs:s0 tclass=lnk_file permissive=1
[ 20.063620] type=1400 audit(1533801389.424:306): avc: denied { read } for pid=1615 comm="webview_zygote3" name="vendor" dev="tmpfs" ino=4793 scontext=u:r:webview_zygote:s0 tcontext=u:object_r:tmpfs:s0 tclass=lnk_file permissive=1
[ 20.147870] type=1400 audit(1533801389.424:306): avc: denied { read } for pid=1615 comm="webview_zygote3" name="vendor" dev="tmpfs" ino=4793 scontext=u:r:webview_zygote:s0 tcontext=u:object_r:tmpfs:s0 tclass=lnk_file permissive=1
[ 20.147888] type=1400 audit(1533801389.509:307): avc: denied { ioctl } for pid=1448 comm="BootAnimation" path="/dev/dri/card0" dev="tmpfs" ino=5171 ioctlcmd=0x640b scontext=u:r:bootanim:s0 tcontext=u:object_r:device:s0 tclass=chr_file permissive=1
[ 20.164133] type=1400 audit(1533801389.509:307): avc: denied { ioctl } for pid=1448 comm="BootAnimation" path="/dev/dri/card0" dev="tmpfs" ino=5171 ioctlcmd=0x640b scontext=u:r:bootanim:s0 tcontext=u:object_r:device:s0 tclass=chr_file permissive=1
[ 20.164145] type=1400 audit(1533801389.525:308): avc: denied { getattr } for pid=1637 comm="fsck_msdos" path="/vendor" dev="tmpfs" ino=4793 scontext=u:r:fsck_untrusted:s0 tcontext=u:object_r:tmpfs:s0 tclass=lnk_file permissive=1
[ 20.322062] audit: audit_lost=152 audit_rate_limit=20 audit_backlog_limit=64
[ 20.322066] audit: rate limit exceeded
[ 29.929040] FAT-fs (mmcblk0p1): Volume was not properly unmounted. Some data may be corrupt. Please run fsck.
[ 29.939874] type=1400 audit(1533801390.740:326): avc: denied { open } for pid=1570 comm="RenderThread" path="/dev/dri" dev="tmpfs" ino=1374 scontext=u:r:platform_app:s0:c512,c768 tcontext=u:object_r:device:s0 tclass=dir permissive=1
[ 29.939888] type=1400 audit(1533801399.301:327): avc: denied { getattr } for pid=1809 comm="sdcard" path="/vendor" dev="tmpfs" ino=4793 scontext=u:r:sdcardd:s0 tcontext=u:object_r:tmpfs:s0 tclass=lnk_file permissive=1
[ 29.940410] type=1400 audit(1533801399.301:327): avc: denied { getattr } for pid=1809 comm="sdcard" path="/vendor" dev="tmpfs" ino=4793 scontext=u:r:sdcardd:s0 tcontext=u:object_r:tmpfs:s0 tclass=lnk_file permissive=1
[ 29.940421] type=1400 audit(1533801399.301:328): avc: denied { read } for pid=1809 comm="sdcard" name="vendor" dev="tmpfs" ino=4793 scontext=u:r:sdcardd:s0 tcontext=u:object_r:tmpfs:s0 tclass=lnk_file permissive=1
[ 29.951618] sdcardfs version 2.0
[ 29.951621] sdcardfs: dev_name -> /mnt/media_rw/5F2B-E1E0
[ 29.951622] sdcardfs: options -> fsuid=1023,fsgid=1023,mask=6,userid=0,gid=1015
[ 29.951624] sdcardfs: mnt -> ffff9a82f5bdc020
[ 29.951654] sdcardfs: mounted on top of /mnt/media_rw/5F2B-E1E0 type vfat
[ 29.951796] Remount options were mask=18,gid=9997 for vfsmnt ffff9a8331328020.
[ 29.951799] sdcardfs : options - debug:1
[ 29.951800] sdcardfs : options - gid:9997
[ 29.951801] sdcardfs : options - mask:18
[ 29.951876] Remount options were mask=18,gid=9997 for vfsmnt ffff9a8327774560.
[ 29.951879] sdcardfs : options - debug:1
[ 29.951880] sdcardfs : options - gid:9997
[ 29.951881] sdcardfs : options - mask:18
[ 48.660567] type=1400 audit(1533801399.301:328): avc: denied { read } for pid=1809 comm="sdcard" name="vendor" dev="tmpfs" ino=4793 scontext=u:r:sdcardd:s0 tcontext=u:object_r:tmpfs:s0 tclass=lnk_file permissive=1
[ 48.660578] type=1400 audit(1533801418.022:329): avc: denied { mounton } for pid=1810 comm="main" path="/storage" dev="tmpfs" ino=4788 scontext=u:r:zygote:s0 tcontext=u:object_r:tmpfs:s0 tclass=dir permissive=1
[ 48.662131] type=1400 audit(1533801418.022:329): avc: denied { mounton } for pid=1810 comm="main" path="/storage" dev="tmpfs" ino=4788 scontext=u:r:zygote:s0 tcontext=u:object_r:tmpfs:s0 tclass=dir permissive=1
[ 48.662140] type=1400 audit(1533801418.023:330): avc: denied { create } for pid=1810 comm="main" name="cgroup.procs" scontext=u:r:zygote:s0 tcontext=u:object_r:cgroup:s0 tclass=file permissive=1
[ 50.040182] type=1400 audit(1533801418.023:330): avc: denied { create } for pid=1810 comm="main" name="cgroup.procs" scontext=u:r:zygote:s0 tcontext=u:object_r:cgroup:s0 tclass=file permissive=1
[ 50.040192] type=1400 audit(1533801419.401:331): avc: denied { ioctl } for pid=1570 comm="RenderThread" path="/dev/dri/card0" dev="tmpfs" ino=5171 ioctlcmd=0x640b scontext=u:r:platform_app:s0:c512,c768 tcontext=u:object_r:device:s0 tclass=chr_file permissive=1
[ 50.042227] type=1400 audit(1533801419.401:331): avc: denied { ioctl } for pid=1570 comm="RenderThread" path="/dev/dri/card0" dev="tmpfs" ino=5171 ioctlcmd=0x640b scontext=u:r:platform_app:s0:c512,c768 tcontext=u:object_r:device:s0 tclass=chr_file permissive=1
[ 50.042239] type=1400 audit(1533801419.403:332): avc: denied { read } for pid=1463 comm="system_server" name="vendor" dev="tmpfs" ino=4793 scontext=u:r:system_server:s0 tcontext=u:object_r:tmpfs:s0 tclass=lnk_file permissive=1
[ 50.242721] type=1400 audit(1533801419.403:332): avc: denied { read } for pid=1463 comm="system_server" name="vendor" dev="tmpfs" ino=4793 scontext=u:r:system_server:s0 tcontext=u:object_r:tmpfs:s0 tclass=lnk_file permissive=1
[ 50.242731] type=1400 audit(1533801419.604:333): avc: denied { write } for pid=1463 comm="Binder:1463_5" name="timerslack_ns" dev="proc" ino=13060 scontext=u:r:system_server:s0 tcontext=u:r:system_app:s0 tclass=file permissive=1
[ 51.002417] init: Service 'bootanim' (pid 1448) exited with status 0
[ 51.193275] init: processing action (sys.boot_completed=1) from (/init.rc:691)
[ 51.193497] init: processing action (sys.boot_completed=1) from (/init.android_x86_64.rc:105)
[ 51.193714] init: starting service 'exec 4 (/system/bin/logwrapper /system/bin/sh /system/etc/init.sh bootcomplete)'...
[ 51.194778] init: SVC_EXEC pid 1890 (uid 0 gid 0+0 context u:r:init:s0) started; waiting...
[ 51.292204] audit: audit_lost=162 audit_rate_limit=20 audit_backlog_limit=64
[ 51.292208] audit: rate limit exceeded
[ 51.326237] selinux: avc: denied { set } for property=wlan.no-unload-driver pid=1916 uid=0 gid=0 scontext=u:r:toolbox:s0 tcontext=u:object_r:wifi_prop:s0 tclass=property_service permissive=1\x0a
[ 51.868144] init: Service 'exec 4 (/system/bin/logwrapper /system/bin/sh /system/etc/init.sh bootcomplete)' (pid 1890) killed by signal 1 waiting took 0.674000 seconds
[ 51.868247] init: processing action (sys.boot_completed=1 && sys.logbootcomplete=1) from (/system/etc/init/bootstat.rc:66)
[ 51.868570] init: starting service 'exec 5 (/system/bin/bootstat --record_boot_complete)'...
[ 51.869200] init: SVC_EXEC pid 1954 (uid 1000 gid 1007+0 context default) started; waiting...
[ 52.421849] audit: audit_lost=254 audit_rate_limit=20 audit_backlog_limit=64
[ 52.421854] audit: rate limit exceeded
[ 54.018532] type=1400 audit(1533801422.935:481): avc: denied { create } for pid=2139 comm="main" name="cgroup.procs" scontext=u:r:zygote:s0 tcontext=u:object_r:cgroup:s0 tclass=file permissive=1
[ 54.018542] type=1400 audit(1533801423.380:482): avc: denied { write } for pid=1463 comm="Binder:1463_7" name="timerslack_ns" dev="proc" ino=14095 scontext=u:r:system_server:s0 tcontext=u:r:untrusted_app_25:s0:c512,c768 tclass=file permissive=1
[ 54.068926] type=1400 audit(1533801423.380:482): avc: denied { write } for pid=1463 comm="Binder:1463_7" name="timerslack_ns" dev="proc" ino=14095 scontext=u:r:system_server:s0 tcontext=u:r:untrusted_app_25:s0:c512,c768 tclass=file permissive=1
[ 54.068936] type=1400 audit(1533801423.430:483): avc: denied { write } for pid=1463 comm="Binder:1463_7" name="timerslack_ns" dev="proc" ino=13889 scontext=u:r:system_server:s0 tcontext=u:r:untrusted_app:s0:c512,c768 tclass=file permissive=1
[ 54.159732] type=1400 audit(1533801423.430:483): avc: denied { write } for pid=1463 comm="Binder:1463_7" name="timerslack_ns" dev="proc" ino=13889 scontext=u:r:system_server:s0 tcontext=u:r:untrusted_app:s0:c512,c768 tclass=file permissive=1
[ 54.159743] type=1400 audit(1533801423.521:484): avc: denied { ioctl } for pid=2008 comm="RenderThread" path="/dev/dri/card0" dev="tmpfs" ino=5171 ioctlcmd=0x6457 scontext=u:r:priv_app:s0:c512,c768 tcontext=u:object_r:device:s0 tclass=chr_file permissive=1
[ 54.159833] type=1400 audit(1533801423.521:484): avc: denied { ioctl } for pid=2008 comm="RenderThread" path="/dev/dri/card0" dev="tmpfs" ino=5171 ioctlcmd=0x6457 scontext=u:r:priv_app:s0:c512,c768 tcontext=u:object_r:device:s0 tclass=chr_file permissive=1
[ 54.159840] type=1400 audit(1533801423.521:485): avc: denied { read write } for pid=2008 comm="RenderThread" path="/dev/dri/card0" dev="tmpfs" ino=5171 scontext=u:r:priv_app:s0:c512,c768 tcontext=u:object_r:device:s0 tclass=chr_file permissive=1
[ 54.251237] type=1400 audit(1533801423.521:485): avc: denied { read write } for pid=2008 comm="RenderThread" path="/dev/dri/card0" dev="tmpfs" ino=5171 scontext=u:r:priv_app:s0:c512,c768 tcontext=u:object_r:device:s0 tclass=chr_file permissive=1
[ 54.251249] type=1400 audit(1533801423.612:486): avc: denied { write } for pid=1463 comm="Binder:1463_1" name="timerslack_ns" dev="proc" ino=16064 scontext=u:r:system_server:s0 tcontext=u:r:priv_app:s0:c512,c768 tclass=file permissive=1
[ 56.968873] init: processing action (sys.sysctl.tcp_def_init_rwnd=*) from (/init.rc:701)
[ 56.969430] init: processing action (net.dns1=*) from (/init.android_x86_64.rc:109)
[ 56.969494] init: starting service 'exec 9 (/system/bin/logwrapper /system/bin/sh /system/etc/init.sh netconsole)'...
[ 56.970333] init: SVC_EXEC pid 2728 (uid 0 gid 0+0 context u:r:init:s0) started; waiting...
[ 57.103489] init: Service 'exec 9 (/system/bin/logwrapper /system/bin/sh /system/etc/init.sh netconsole)' (pid 2728) killed by signal 1 waiting took 0.133000 seconds
[ 59.636238] type=1400 audit(1533801427.485:511): avc: denied { write } for pid=1463 comm="Binder:1463_4" name="timerslack_ns" dev="proc" ino=23305 scontext=u:r:system_server:s0 tcontext=u:r:untrusted_app:s0:c512,c768 tclass=file permissive=1
[ 59.636248] type=1400 audit(1533801428.717:512): avc: denied { write } for pid=1463 comm="Binder:1463_5" name="timerslack_ns" dev="proc" ino=25822 scontext=u:r:system_server:s0 tcontext=u:r:untrusted_app_25:s0:c512,c768 tclass=file permissive=1
[ 59.648856] type=1400 audit(1533801428.717:512): avc: denied { write } for pid=1463 comm="Binder:1463_5" name="timerslack_ns" dev="proc" ino=25822 scontext=u:r:system_server:s0 tcontext=u:r:untrusted_app_25:s0:c512,c768 tclass=file permissive=1
[ 59.648867] type=1400 audit(1533801428.722:513): avc: denied { write } for pid=1463 comm="Binder:1463_5" name="timerslack_ns" dev="proc" ino=14788 scontext=u:r:system_server:s0 tcontext=u:r:mediaprovider:s0:c512,c768 tclass=file permissive=1
[ 59.904958] type=1400 audit(1533801428.722:513): avc: denied { write } for pid=1463 comm="Binder:1463_5" name="timerslack_ns" dev="proc" ino=14788 scontext=u:r:system_server:s0 tcontext=u:r:mediaprovider:s0:c512,c768 tclass=file permissive=1
[ 59.904969] type=1400 audit(1533801428.986:514): avc: denied { ioctl } for pid=1570 comm="RenderThread" path="/dev/dri/card0" dev="tmpfs" ino=5171 ioctlcmd=0x640b scontext=u:r:platform_app:s0:c512,c768 tcontext=u:object_r:device:s0 tclass=chr_file permissive=1
[ 60.346906] logd: logdr: UID=10016 GID=10016 PID=2264 n tail=0 logMask=4 pid=0 start=0ns timeout=0ns
[ 60.919706] type=1400 audit(1533801428.986:514): avc: denied { ioctl } for pid=1570 comm="RenderThread" path="/dev/dri/card0" dev="tmpfs" ino=5171 ioctlcmd=0x640b scontext=u:r:platform_app:s0:c512,c768 tcontext=u:object_r:device:s0 tclass=chr_file permissive=1
[ 60.919718] type=1400 audit(1533801430.001:515): avc: denied { search } for pid=2948 comm="IntentService[D" name="1333" dev="proc" ino=6865 scontext=u:r:priv_app:s0:c512,c768 tcontext=u:r:zygote:s0 tclass=dir permissive=1
[ 60.919816] type=1400 audit(1533801430.001:515): avc: denied { search } for pid=2948 comm="IntentService[D" name="1333" dev="proc" ino=6865 scontext=u:r:priv_app:s0:c512,c768 tcontext=u:r:zygote:s0 tclass=dir permissive=1
[ 64.745278] type=1400 audit(1533801433.705:541): avc: denied { read write } for pid=1570 comm="RenderThread" path="/dev/dri/card0" dev="tmpfs" ino=5171 scontext=u:r:platform_app:s0:c512,c768 tcontext=u:object_r:device:s0 tclass=chr_file permissive=1
[ 64.745301] type=1400 audit(1533801433.825:542): avc: denied { read write } for pid=1463 comm="RenderThread" path="/dev/dri/card0" dev="tmpfs" ino=5171 scontext=u:r:system_server:s0 tcontext=u:object_r:device:s0 tclass=chr_file permissive=1
[ 64.770907] type=1400 audit(1533801433.825:542): avc: denied { read write } for pid=1463 comm="RenderThread" path="/dev/dri/card0" dev="tmpfs" ino=5171 scontext=u:r:system_server:s0 tcontext=u:object_r:device:s0 tclass=chr_file permissive=1
[ 64.770917] type=1400 audit(1533801433.851:543): avc: denied { write } for pid=1463 comm="Binder:1463_2" name="timerslack_ns" dev="proc" ino=30726 scontext=u:r:system_server:s0 tcontext=u:r:isolated_app:s0:c512,c768 tclass=file permissive=1
[ 64.794160] type=1400 audit(1533801433.851:543): avc: denied { write } for pid=1463 comm="Binder:1463_2" name="timerslack_ns" dev="proc" ino=30726 scontext=u:r:system_server:s0 tcontext=u:r:isolated_app:s0:c512,c768 tclass=file permissive=1
[ 64.794170] type=1400 audit(1533801433.871:544): avc: denied { read } for pid=3272 comm="alon.wallpapers" name="vmstat" dev="proc" ino=4026532010 scontext=u:r:untrusted_app_25:s0:c512,c768 tcontext=u:object_r:proc:s0 tclass=file permissive=1
[ 64.794279] type=1400 audit(1533801433.871:544): avc: denied { read } for pid=3272 comm="alon.wallpapers" name="vmstat" dev="proc" ino=4026532010 scontext=u:r:untrusted_app_25:s0:c512,c768 tcontext=u:object_r:proc:s0 tclass=file permissive=1
[ 64.794285] type=1400 audit(1533801433.871:545): avc: denied { open } for pid=3272 comm="alon.wallpapers" path="/proc/vmstat" dev="proc" ino=4026532010 scontext=u:r:untrusted_app_25:s0:c512,c768 tcontext=u:object_r:proc:s0 tclass=file permissive=1
[ 64.794344] type=1400 audit(1533801433.871:545): avc: denied { open } for pid=3272 comm="alon.wallpapers" path="/proc/vmstat" dev="proc" ino=4026532010 scontext=u:r:untrusted_app_25:s0:c512,c768 tcontext=u:object_r:proc:s0 tclass=file permissive=1
[ 64.794350] type=1400 audit(1533801433.871:546): avc: denied { getattr } for pid=3272 comm="alon.wallpapers" path="/proc/vmstat" dev="proc" ino=4026532010 scontext=u:r:untrusted_app_25:s0:c512,c768 tcontext=u:object_r:proc:s0 tclass=file permissive=1
[ 64.799442] audit: audit_lost=255 audit_rate_limit=20 audit_backlog_limit=64
[ 64.799446] audit: rate limit exceeded
[ 69.810291] type=1400 audit(1533801437.940:588): avc: denied { create } for pid=3916 comm="main" name="cgroup.procs" scontext=u:r:zygote:s0 tcontext=u:object_r:cgroup:s0 tclass=file permissive=1
[ 69.810301] type=1400 audit(1533801438.891:589): avc: denied { read } for pid=3824 comm="CrGpuMain" name="fb" dev="proc" ino=4026531886 scontext=u:r:untrusted_app:s0:c512,c768 tcontext=u:object_r:proc:s0 tclass=file permissive=1
[ 69.810430] type=1400 audit(1533801438.891:589): avc: denied { read } for pid=3824 comm="CrGpuMain" name="fb" dev="proc" ino=4026531886 scontext=u:r:untrusted_app:s0:c512,c768 tcontext=u:object_r:proc:s0 tclass=file permissive=1
[ 69.810436] type=1400 audit(1533801438.891:590): avc: denied { open } for pid=3824 comm="CrGpuMain" path="/proc/fb" dev="proc" ino=4026531886 scontext=u:r:untrusted_app:s0:c512,c768 tcontext=u:object_r:proc:s0 tclass=file permissive=1
[ 69.810510] type=1400 audit(1533801438.891:590): avc: denied { open } for pid=3824 comm="CrGpuMain" path="/proc/fb" dev="proc" ino=4026531886 scontext=u:r:untrusted_app:s0:c512,c768 tcontext=u:object_r:proc:s0 tclass=file permissive=1
[ 69.810524] type=1400 audit(1533801438.892:591): avc: denied { getattr } for pid=3824 comm="CrGpuMain" path="/proc/fb" dev="proc" ino=4026531886 scontext=u:r:untrusted_app:s0:c512,c768 tcontext=u:object_r:proc:s0 tclass=file permissive=1
[ 69.810595] type=1400 audit(1533801438.892:591): avc: denied { getattr } for pid=3824 comm="CrGpuMain" path="/proc/fb" dev="proc" ino=4026531886 scontext=u:r:untrusted_app:s0:c512,c768 tcontext=u:object_r:proc:s0 tclass=file permissive=1
[ 69.810601] type=1400 audit(1533801438.892:592): avc: denied { getattr } for pid=3824 comm="CrGpuMain" path="/dev/dri/card0" dev="tmpfs" ino=5171 scontext=u:r:untrusted_app:s0:c512,c768 tcontext=u:object_r:device:s0 tclass=chr_file permissive=1
[ 69.810674] type=1400 audit(1533801438.892:592): avc: denied { getattr } for pid=3824 comm="CrGpuMain" path="/dev/dri/card0" dev="tmpfs" ino=5171 scontext=u:r:untrusted_app:s0:c512,c768 tcontext=u:object_r:device:s0 tclass=chr_file permissive=1
[ 69.810686] type=1400 audit(1533801438.892:593): avc: denied { open } for pid=3824 comm="CrGpuMain" path="/dev/dri/card0" dev="tmpfs" ino=5171 scontext=u:r:untrusted_app:s0:c512,c768 tcontext=u:object_r:device:s0 tclass=chr_file permissive=1
[ 74.889094] type=1400 audit(1533801443.324:605): avc: denied { read write } for pid=2685 comm="Chrome_InProcGp" path="/dev/dri/card0" dev="tmpfs" ino=5171 scontext=u:r:untrusted_app:s0:c512,c768 tcontext=u:object_r:device:s0 tclass=chr_file permissive=1
[ 74.889132] type=1400 audit(1533801443.970:606): avc: denied { read } for pid=4093 comm="hirdpartyclient" name="/" dev="loop1" ino=198 scontext=u:r:untrusted_app:s0:c512,c768 tcontext=u:object_r:unlabeled:s0 tclass=dir permissive=1
[ 74.889230] type=1400 audit(1533801443.970:606): avc: denied { read } for pid=4093 comm="hirdpartyclient" name="/" dev="loop1" ino=198 scontext=u:r:untrusted_app:s0:c512,c768 tcontext=u:object_r:unlabeled:s0 tclass=dir permissive=1
[ 74.889236] type=1400 audit(1533801443.970:607): avc: denied { open } for pid=4093 comm="hirdpartyclient" path="/system/lib/arm" dev="loop1" ino=198 scontext=u:r:untrusted_app:s0:c512,c768 tcontext=u:object_r:unlabeled:s0 tclass=dir permissive=1
[ 74.945225] type=1400 audit(1533801443.970:607): avc: denied { open } for pid=4093 comm="hirdpartyclient" path="/system/lib/arm" dev="loop1" ino=198 scontext=u:r:untrusted_app:s0:c512,c768 tcontext=u:object_r:unlabeled:s0 tclass=dir permissive=1
[ 74.945235] type=1400 audit(1533801444.026:608): avc: denied { read } for pid=4093 comm="hirdpartyclient" name="libhoudini.so" dev="loop1" ino=80 scontext=u:r:untrusted_app:s0:c512,c768 tcontext=u:object_r:unlabeled:s0 tclass=file permissive=1
[ 74.945326] type=1400 audit(1533801444.026:608): avc: denied { read } for pid=4093 comm="hirdpartyclient" name="libhoudini.so" dev="loop1" ino=80 scontext=u:r:untrusted_app:s0:c512,c768 tcontext=u:object_r:unlabeled:s0 tclass=file permissive=1
[ 74.945332] type=1400 audit(1533801444.026:609): avc: denied { open } for pid=4093 comm="hirdpartyclient" path="/system/lib/libhoudini.so" dev="loop1" ino=80 scontext=u:r:untrusted_app:s0:c512,c768 tcontext=u:object_r:unlabeled:s0 tclass=file permissive=1
[ 75.385869] type=1400 audit(1533801444.026:609): avc: denied { open } for pid=4093 comm="hirdpartyclient" path="/system/lib/libhoudini.so" dev="loop1" ino=80 scontext=u:r:untrusted_app:s0:c512,c768 tcontext=u:object_r:unlabeled:s0 tclass=file permissive=1
[ 75.385880] type=1400 audit(1533801444.467:610): avc: denied { read } for pid=4093 comm="hirdpartyclient" name="vmstat" dev="proc" ino=4026532010 scontext=u:r:untrusted_app:s0:c512,c768 tcontext=u:object_r:proc:s0 tclass=file permissive=1
[ 80.683837] type=1400 audit(1533801447.330:628): avc: denied { write } for pid=1463 comm="android.bg" name="timerslack_ns" dev="proc" ino=34058 scontext=u:r:system_server:s0 tcontext=u:r:untrusted_app:s0:c512,c768 tclass=file permissive=1
[ 80.683848] type=1400 audit(1533801449.764:629): avc: denied { ioctl } for pid=2685 comm="Chrome_InProcGp" path="/dev/dri/card0" dev="tmpfs" ino=5171 ioctlcmd=0x6472 scontext=u:r:untrusted_app:s0:c512,c768 tcontext=u:object_r:device:s0 tclass=chr_file permissive=1
[ 80.850290] type=1400 audit(1533801449.764:629): avc: denied { ioctl } for pid=2685 comm="Chrome_InProcGp" path="/dev/dri/card0" dev="tmpfs" ino=5171 ioctlcmd=0x6472 scontext=u:r:untrusted_app:s0:c512,c768 tcontext=u:object_r:device:s0 tclass=chr_file permissive=1
[ 80.850301] type=1400 audit(1533801449.931:630): avc: denied { read } for pid=1360 comm="Binder:1360_2" name="vendor" dev="tmpfs" ino=4793 scontext=u:r:mediadrmserver:s0 tcontext=u:object_r:tmpfs:s0 tclass=lnk_file permissive=1
[ 81.421863] type=1400 audit(1533801449.931:630): avc: denied { read } for pid=1360 comm="Binder:1360_2" name="vendor" dev="tmpfs" ino=4793 scontext=u:r:mediadrmserver:s0 tcontext=u:object_r:tmpfs:s0 tclass=lnk_file permissive=1
[ 81.421873] type=1400 audit(1533801450.503:631): avc: denied { search } for pid=2948 comm="Binder:2948_5" name="1333" dev="proc" ino=6865 scontext=u:r:priv_app:s0:c512,c768 tcontext=u:r:zygote:s0 tclass=dir permissive=1
[ 81.422057] type=1400 audit(1533801450.503:631): avc: denied { search } for pid=2948 comm="Binder:2948_5" name="1333" dev="proc" ino=6865 scontext=u:r:priv_app:s0:c512,c768 tcontext=u:r:zygote:s0 tclass=dir permissive=1
[ 81.422065] type=1400 audit(1533801450.503:632): avc: denied { read } for pid=2948 comm="Binder:2948_5" name="stat" dev="proc" ino=12510 scontext=u:r:priv_app:s0:c512,c768 tcontext=u:r:zygote:s0 tclass=file permissive=1
[ 81.422263] type=1400 audit(1533801450.503:632): avc: denied { read } for pid=2948 comm="Binder:2948_5" name="stat" dev="proc" ino=12510 scontext=u:r:priv_app:s0:c512,c768 tcontext=u:r:zygote:s0 tclass=file permissive=1
[ 81.422270] type=1400 audit(1533801450.504:633): avc: denied { open } for pid=2948 comm="Binder:2948_5" path="/proc/1333/stat" dev="proc" ino=12510 scontext=u:r:priv_app:s0:c512,c768 tcontext=u:r:zygote:s0 tclass=file permissive=1
[ 87.553383] type=1400 audit(1533801450.723:637): avc: denied { ioctl } for pid=1570 comm="RenderThread" path="/dev/dri/card0" dev="tmpfs" ino=5171 ioctlcmd=0x640b scontext=u:r:platform_app:s0:c512,c768 tcontext=u:object_r:device:s0 tclass=chr_file permissive=1
[ 87.553396] type=1400 audit(1533801456.635:638): avc: denied { read write } for pid=2685 comm="RenderThread" path="/dev/dri/card0" dev="tmpfs" ino=5171 scontext=u:r:untrusted_app:s0:c512,c768 tcontext=u:object_r:device:s0 tclass=chr_file permissive=1
[ 87.870443] type=1400 audit(1533801456.635:638): avc: denied { read write } for pid=2685 comm="RenderThread" path="/dev/dri/card0" dev="tmpfs" ino=5171 scontext=u:r:untrusted_app:s0:c512,c768 tcontext=u:object_r:device:s0 tclass=chr_file permissive=1
[ 87.870452] type=1400 audit(1533801456.952:639): avc: denied { read } for pid=1463 comm="batterystats-wo" name="d" dev="tmpfs" ino=6550 scontext=u:r:system_server:s0 tcontext=u:object_r:tmpfs:s0 tclass=lnk_file permissive=1
[ 104.977167] type=1400 audit(1533801456.952:639): avc: denied { read } for pid=1463 comm="batterystats-wo" name="d" dev="tmpfs" ino=6550 scontext=u:r:system_server:s0 tcontext=u:object_r:tmpfs:s0 tclass=lnk_file permissive=1
[ 104.977177] type=1400 audit(1533801474.058:640): avc: denied { write } for pid=1463 comm="InputDispatcher" name="timerslack_ns" dev="proc" ino=30296 scontext=u:r:system_server:s0 tcontext=u:r:isolated_app:s0:c512,c768 tclass=file permissive=1
[ 105.328492] type=1400 audit(1533801474.058:640): avc: denied { write } for pid=1463 comm="InputDispatcher" name="timerslack_ns" dev="proc" ino=30296 scontext=u:r:system_server:s0 tcontext=u:r:isolated_app:s0:c512,c768 tclass=file permissive=1
[ 105.328503] type=1400 audit(1533801474.409:641): avc: denied { read write } for pid=2008 comm="RenderThread" path="/dev/dri/card0" dev="tmpfs" ino=5171 scontext=u:r:priv_app:s0:c512,c768 tcontext=u:object_r:device:s0 tclass=chr_file permissive=1
[ 105.450258] type=1400 audit(1533801474.409:641): avc: denied { read write } for pid=2008 comm="RenderThread" path="/dev/dri/card0" dev="tmpfs" ino=5171 scontext=u:r:priv_app:s0:c512,c768 tcontext=u:object_r:device:s0 tclass=chr_file permissive=1
[ 105.450268] type=1400 audit(1533801474.531:642): avc: denied { ioctl } for pid=1463 comm="android.anim" path="/dev/dri/card0" dev="tmpfs" ino=5171 ioctlcmd=0x645b scontext=u:r:system_server:s0 tcontext=u:object_r:device:s0 tclass=chr_file permissive=1
[ 105.922963] type=1400 audit(1533801474.531:642): avc: denied { ioctl } for pid=1463 comm="android.anim" path="/dev/dri/card0" dev="tmpfs" ino=5171 ioctlcmd=0x645b scontext=u:r:system_server:s0 tcontext=u:object_r:device:s0 tclass=chr_file permissive=1
[ 105.922974] type=1400 audit(1533801475.004:643): avc: denied { getattr } for pid=1463 comm="RenderThread" path="/dev/dri/card0" dev="tmpfs" ino=5171 scontext=u:r:system_server:s0 tcontext=u:object_r:device:s0 tclass=chr_file permissive=1
[ 106.089553] type=1400 audit(1533801475.004:643): avc: denied { getattr } for pid=1463 comm="RenderThread" path="/dev/dri/card0" dev="tmpfs" ino=5171 scontext=u:r:system_server:s0 tcontext=u:object_r:device:s0 tclass=chr_file permissive=1
[ 106.089564] type=1400 audit(1533801475.171:644): avc: denied { read write } for pid=1463 comm="RenderThread" path="/dev/dri/card0" dev="tmpfs" ino=5171 scontext=u:r:system_server:s0 tcontext=u:object_r:device:s0 tclass=chr_file permissive=1
[ 111.649515] type=1400 audit(1533801475.171:644): avc: denied { read write } for pid=1463 comm="RenderThread" path="/dev/dri/card0" dev="tmpfs" ino=5171 scontext=u:r:system_server:s0 tcontext=u:object_r:device:s0 tclass=chr_file permissive=1
[ 111.649527] type=1400 audit(1533801480.731:645): avc: denied { mounton } for pid=4646 comm="main" path="/storage" dev="tmpfs" ino=4788 scontext=u:r:zygote:s0 tcontext=u:object_r:tmpfs:s0 tclass=dir permissive=1
[ 111.650064] type=1400 audit(1533801480.731:645): avc: denied { mounton } for pid=4646 comm="main" path="/storage" dev="tmpfs" ino=4788 scontext=u:r:zygote:s0 tcontext=u:object_r:tmpfs:s0 tclass=dir permissive=1
[ 111.650071] type=1400 audit(1533801480.731:646): avc: denied { create } for pid=4646 comm="main" name="cgroup.procs" scontext=u:r:zygote:s0 tcontext=u:object_r:cgroup:s0 tclass=file permissive=1
[ 111.655015] type=1400 audit(1533801480.731:646): avc: denied { create } for pid=4646 comm="main" name="cgroup.procs" scontext=u:r:zygote:s0 tcontext=u:object_r:cgroup:s0 tclass=file permissive=1
[ 111.655026] type=1400 audit(1533801480.735:647): avc: denied { write } for pid=1463 comm="ActivityManager" name="timerslack_ns" dev="proc" ino=15715 scontext=u:r:system_server:s0 tcontext=u:r:priv_app:s0:c512,c768 tclass=file permissive=1
[ 111.678775] type=1400 audit(1533801480.735:647): avc: denied { write } for pid=1463 comm="ActivityManager" name="timerslack_ns" dev="proc" ino=15715 scontext=u:r:system_server:s0 tcontext=u:r:priv_app:s0:c512,c768 tclass=file permissive=1
[ 111.678785] type=1400 audit(1533801480.759:648): avc: denied { write } for pid=1463 comm="Binder:1463_8" name="timerslack_ns" dev="proc" ino=40274 scontext=u:r:system_server:s0 tcontext=u:r:untrusted_app_25:s0:c512,c768 tclass=file permissive=1
[ 111.724698] type=1400 audit(1533801480.759:648): avc: denied { write } for pid=1463 comm="Binder:1463_8" name="timerslack_ns" dev="proc" ino=40274 scontext=u:r:system_server:s0 tcontext=u:r:untrusted_app_25:s0:c512,c768 tclass=file permissive=1
[ 111.724719] type=1400 audit(1533801480.805:649): avc: denied { read write } for pid=1463 comm="android.anim" path=2F64726D206D6D206F626A656374202864656C6574656429 dev="tmpfs" ino=39199 scontext=u:r:system_server:s0 tcontext=u:object_r:surfaceflinger_tmpfs:s0 tclass=file permissive=1
[ 116.918029] type=1400 audit(1533801484.749:678): avc: denied { ioctl } for pid=4686 comm="su" path="/dev/pts/0" dev="devpts" ino=3 ioctlcmd=0x5404 scontext=u:r:untrusted_app_25:s0:c512,c768 tcontext=u:object_r:untrusted_app_25_devpts:s0:c512,c768 tclass=chr_file permissive=1
[ 116.918041] type=1400 audit(1533801485.999:679): avc: denied { write } for pid=1463 comm="Binder:1463_D" name="timerslack_ns" dev="proc" ino=39460 scontext=u:r:system_server:s0 tcontext=u:r:system_app:s0 tclass=file permissive=1
[ 117.102166] type=1400 audit(1533801485.999:679): avc: denied { write } for pid=1463 comm="Binder:1463_D" name="timerslack_ns" dev="proc" ino=39460 scontext=u:r:system_server:s0 tcontext=u:r:system_app:s0 tclass=file permissive=1
[ 117.102176] type=1400 audit(1533801486.183:680): avc: denied { getattr } for pid=4718 comm="RenderThread" path="/dev/dri/card0" dev="tmpfs" ino=5171 scontext=u:r:system_app:s0 tcontext=u:object_r:device:s0 tclass=chr_file permissive=1
[ 117.102389] type=1400 audit(1533801486.183:680): avc: denied { getattr } for pid=4718 comm="RenderThread" path="/dev/dri/card0" dev="tmpfs" ino=5171 scontext=u:r:system_app:s0 tcontext=u:object_r:device:s0 tclass=chr_file permissive=1
[ 117.102395] type=1400 audit(1533801486.183:681): avc: denied { read write } for pid=4718 comm="RenderThread" name="card0" dev="tmpfs" ino=5171 scontext=u:r:system_app:s0 tcontext=u:object_r:device:s0 tclass=chr_file permissive=1
[ 117.102453] type=1400 audit(1533801486.183:681): avc: denied { read write } for pid=4718 comm="RenderThread" name="card0" dev="tmpfs" ino=5171 scontext=u:r:system_app:s0 tcontext=u:object_r:device:s0 tclass=chr_file permissive=1
[ 117.102459] type=1400 audit(1533801486.183:682): avc: denied { open } for pid=4718 comm="RenderThread" path="/dev/dri/card0" dev="tmpfs" ino=5171 scontext=u:r:system_app:s0 tcontext=u:object_r:device:s0 tclass=chr_file permissive=1
[ 117.102512] type=1400 audit(1533801486.183:682): avc: denied { open } for pid=4718 comm="RenderThread" path="/dev/dri/card0" dev="tmpfs" ino=5171 scontext=u:r:system_app:s0 tcontext=u:object_r:device:s0 tclass=chr_file permissive=1
[ 117.102519] type=1400 audit(1533801486.184:683): avc: denied { ioctl } for pid=4718 comm="RenderThread" path="/dev/dri/card0" dev="tmpfs" ino=5171 ioctlcmd=0x6400 scontext=u:r:system_app:s0 tcontext=u:object_r:device:s0 tclass=chr_file permissive=1
x86_64:/ #

menum...@gmail.com

unread,
Aug 9, 2018, 10:05:01 AM8/9/18
to Android-x86
Could you send your init.sh file, just email me? If possible. Don't know what's wrong here.

Chih-Wei Huang

unread,
Aug 10, 2018, 4:06:41 AM8/10/18
to Android-x86
2018-07-07 9:38 GMT+08:00 Nikolai Cassanova <ncassa...@gmail.com>:
>
> Okay so i added it to the init.sh in the bluetooth section and restarted and now my bluetooth comes on at boot in android x86 version 7.1 rc2. Also here is the results of the following commands that you asked for:
>
> x86_64:/ $ su
> x86_64:/ # cat /sys/class/dmi/id/board_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:/ #

Sorry that I almost forgot it.
Just added this patch:

https://osdn.net/projects/android-x86/scm/git/device-generic-common/commits/2a143a7c18a102af2ade8b36f681170e0e5acc48

Let me know if it works for you.

menum...@gmail.com

unread,
Aug 11, 2018, 12:29:54 PM8/11/18
to Android-x86
Any other fix for Bluetooth on TAS100 model?


Thanks.

Nikolai Cassanova

unread,
Aug 11, 2018, 7:24:24 PM8/11/18
to andro...@googlegroups.com
sorry, here is my init.sh file its attached. 

On Thu, Aug 9, 2018, 10:05 AM <menum...@gmail.com> wrote:
Could you send your init.sh file, just email me? If possible. Don't know what's wrong here.

--
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/cv1CFNeNUe4/unsubscribe.
To unsubscribe from this group and all its topics, send an email to android-x86...@googlegroups.com.
my init.sh file.txt

menum...@gmail.com

unread,
Aug 12, 2018, 4:32:45 AM8/12/18
to Android-x86
Hey no sorry please, you are helping me & and i am thankful for this. :)

With your init.sh file without checking i replaced with mine :p. And my screen responded with stripes now. :/  How do i rollback the file now ?

Nikolai Cassanova

unread,
Aug 12, 2018, 9:25:12 AM8/12/18
to andro...@googlegroups.com
With stripes? Well all you have to do is go and take out my init.sh file and put your's back in. Remember that's why I told you make a backup of your original init.sh file, so that anything ever happened you could always do just that. Don't worry I have run into crazy problems too, to get my Android x86 version 7.1.2 rc 1 to work properly, but the reason could be because for my asus t100taf, I had a couple adjustments. Like for example with my asus t100taf I had to first do the cstate = 1 to first get my asus t100taf from not crashing because it would be working and then all of a sudden get stuck and crash. Same thing with wifi, kept acting up and eventually I fixed it. Also I have a dual boot system. So I know our asus model t100 are small 2 in 1 PC tablets. Mine is only 32gb in total with 2gb RAM. I wish I had the other model that had the 64gb or the 32gb with 500gb hard drive built into keyboard but I don't. Even with that I have a dual boot system as I have ubuntu 16.04 and Android x86 version 7.1.2 rc1. So if I had problems I would also just boot into Ubuntu side and go into root from terminal and access the Android x86 file system to undo any errors I made.

All Web

unread,
Aug 12, 2018, 2:27:36 PM8/12/18
to andro...@googlegroups.com
I have the backup but now cannot access it.

Your android ver is 7.1.2 and i am using 8.1. My screen is all messed up now, so i can't change anything from system now. And i have separate partition with ext4 so cannot see in windows to edit. 😁

Mine T100 also 32gb model but has keyboard and 500gb hdd. I have dual booted with win10. 

Any other way to edit replace file. Not good with terminal commands. 😓

Nikolai Cassanova

unread,
Aug 12, 2018, 2:56:24 PM8/12/18
to andro...@googlegroups.com
If you told me that earlier, your version number I could have just put 8.1 Oreo edition on via a live boot and printed out an init.sh file for you. I thought you had 7.1 version. Okay, yeah you can just use a live boot of anything either Android or Ubuntu and then just use like file explorer to change it back by just replacing it with original. Unfortunately, I don't think booting into your windows partition would help because I dont think Windows can see or identify ext partitions. 

Yeah I wish I had your model because I use my asus t100taf to study and do school work so that's why I have both Ubuntu and Android on their. But only drawback is that it only has an internal hard drive of 32gb.

Nikolai Cassanova

unread,
Aug 13, 2018, 7:49:27 AM8/13/18
to andro...@googlegroups.com
hey menumberek, so here is an init.sh file that i just got from the live 8.1 oreo version of android x86.  When i booted live i wasn't allowed to change the bluetooth via terminal as i wasn't allowed to edit the init.sh file and save it to etc folder in the filesystem.  So i decided to just edit it and save it in downloads. hopefully this can help you.  Also i noticed from live boot that audio doesn't work by default.  So if your having audio problems then you need to change the asound file and then audio will work normally.  here is the init.sh file (this is from a live boot 8.1 oreo android x86 that i edited the bluetooth section by removing the M80TA) its attached.

To unsubscribe from this group and all its topics, send an email to android-x86+unsubscribe@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.

--
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/cv1CFNeNUe4/unsubscribe.
To unsubscribe from this group and all its topics, send an email to android-x86+unsubscribe@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.

--
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/cv1CFNeNUe4/unsubscribe.
To unsubscribe from this group and all its topics, send an email to android-x86+unsubscribe@googlegroups.com.
init.sh

All Web

unread,
Aug 13, 2018, 9:59:57 AM8/13/18
to andro...@googlegroups.com
Thanks buddy. But I am still stuck in replacing init.sh file. In live boot of Android - i used file manager to get in ext4 but it says it is write protected. Do i have to try with live linux cd ? 

Nikolai Cassanova

unread,
Aug 13, 2018, 10:41:04 AM8/13/18
to andro...@googlegroups.com
Yeah but it should give you the ability to transfer it because the file manager should have super user permission to access the file system and edit it.  When you open the file manager make sure if your using es file explorer app that you have on the left side root explorer checked. And if it's fx file explorer app make sure you also download the add app which is also free called fx explorer root add on. That will allow you to mount the ext partition with read and write permission for you to copy and paste the original init.sh back or use the one I just attached and see if that works.  Let me know how it turns out.

All Web

unread,
Aug 14, 2018, 4:58:09 AM8/14/18
to andro...@googlegroups.com
Thanks alot nikolai for detailed help. ☺

I tried all the options, but nothing worked. So i installed it again without formatting. It was working as were in last conditions. But then i replaced your init.sh file 8.1 one, now its in boot loop. 😀
Cannot install again without formatting it seems.
So now i am going to format and install from scratch. Which Android x86 version you recon for stable working or 8.1 is good? 

Any other android tablet systems you tried and found fast and stable?

Nikolai Cassanova

unread,
Aug 14, 2018, 10:36:43 AM8/14/18
to andro...@googlegroups.com
I have version 7.1.2 rc1 and have been using that ever since. But for that I had to do some changes to get it working to almost perfect on my Asus t100taf. But after trying 8.1, I would say 8.1 is better because of the changes that the team that works on Android x86 project has made. For example I noticed that my external micro SD card worked by default, before in version 7.1.2 rc1, we had to go through crazy process of testing how to get Android to see that there was an external micro SD card there in our Asus t100taf. Not only that in version 7.1.2 rc1 it would have freezes so to fix that you had to add to boot line cstate = 1 but from using 8.1 I can see that you don't have to do that at all.  Iny opinion 8.1 was working great from the live USB boot when I just ran it to get the init.sh file. WiFi worked by default, it didn't freeze, the screen and display works, it recognizes the external micro SD card and gives you access to all the files. Only thing that didn't work by default was Bluetooth and sound. And for sound its due to our device having certain needs to get it ready. All you have to do is copy over the asound.conf file and then you will have sound working. In terms of Bluetooth I think you just have to make that one swtich to the init.sh file and then run the commands in terminal to see what hci is being used. After that you just have to tell it and stop Bluetooth then restart it and the Bluetooth should work. After your system is basically complete. The only thing that would t work is maybe camera as I don't think any team (not ubutu asus t100 Google group nor Android x86 group) has gotten camera to work on our devices but for me I personally prefer just doing the audio calls from my t100. For example Google Hangouts when I want to call someone wether there Google Hangouts contact or cell phone I can and they will hear me via audio and I can communicate with them perfectly. Same goes for what's app calls and any other communicating app. So it still is effective for me. So yeah I think 8.1 is the current best. You might want to ask others in the Android x86 Google forum group to see what their opinions on but I don't know many who have our Asus t100 devices but they are others who might not have Asus t100 but have devices with basically the same cpu and other specs.
Reply all
Reply to author
Forward
0 new messages