This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
igor@igor-VirtualBox ~/symdep $ ./symdep /home/igor/rom/aosp/out/target/product/s3plus_n560a/system/lib64/egl/libGLES_mali.so | |
/home/igor/rom/aosp/out/target/product/s3plus_n560a/system/lib64/egl/libGLES_mali.so | |
libbinder.so: No such file or directory | |
libc.so: No such file or directory | |
libcutils.so: No such file or directory | |
libdl.so: No such file or directory | |
libdpframework.so: No such file or directory | |
libged.so: No such file or directory | |
libgpu_aux.so: No such file or directory | |
libgralloc_extra.so: No such file or directory |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
libcam.camshot.so | |
libcam.client.so | |
libcam.device1.so | |
libcam.device3.so | |
libcam.exif.so | |
libcam.exif.v3.so | |
libcam.hal3a.v3.so | |
libcam.hal3a.v3.dng.so | |
libcam.halsensor.so | |
libcam.iopipe.so |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
02-13 13:57:42.464: E/AudioALSAPlaybackHandlerBase(272): openPcmDriver(), pcm_start(0xf39840c0) fail due to cannot start channel: Broken pipe | |
02-13 13:57:42.519: E/AudioALSAPlaybackHandlerBase(272): -getHardwareBufferInfo pcm_get_htimestamp fail, ret = -1, pcm_get_error = cannot start channel: Broken pipe | |
02-13 13:57:42.546: E/Recorder(2345): audiosourcetype 1 | |
02-13 13:57:42.548: E/AudioALSAStreamIn(272): checkOpenStreamChannels(), wrong channels 0x10, use 0xc instead. | |
02-13 13:57:42.548: E/AudioALSAStreamIn(272): checkOpenStreamSampleRate(), wrong sampleRate 8000, use 48000 instead. | |
02-13 13:57:42.548: E/AudioALSAStreamManager(272): -openInputStream(), set fail, return NULL | |
02-13 13:57:42.549: W/AudioPolicyManager(272): getInputForAttr() failed opening input: samplingRate 8000, format 1, channelMask 10 | |
02-13 13:57:42.549: E/AudioRecord(272): Could not get audio input for record source 1, sample rate 8000, format 0x1, channel mask 0x10, session 38, flags 0 | |
02-13 13:57:42.549: E/StagefrightRecorder(272): audio |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
03-22 20:21:03.142: W/ResourceType(1592): No known package when getting name for resource number 0x9c040200 | |
03-22 20:21:03.144: E/ActivityThread(1592): Failed to find provider info for childmode | |
03-22 20:21:03.154: W/HwLauncher(1592): Launcher.MotionManager stopMotionAppsReco service flg 402 is unavailable | |
03-22 20:21:03.156: W/HwLauncher(1592): Launcher.MotionManager stopMotionAppsReco service flg 403 is unavailable | |
03-22 20:21:03.157: W/ActivityManagerhuawei(847): r.packageName = com.android.vending | |
03-22 20:21:03.200: W/Finsky(2770): [1] com.google.android.finsky.d.u.a(264): Null bundle, which breaks event chain!. Creating a new logging context. | |
03-22 20:21:03.202: E/SpeechMessengerEVDO(271): OpenMuxdDeviceUntilReady(), re-open(/dev/ttySDIO0) fail, fHdl = -1 | |
03-22 20:21:03.207: W/Finsky(2770): [1] com.google.android.finsky.application.FinskyAppImpl.ak(1866): No account configured on this device. | |
03-22 20:21:03.210: W/Finsky(2770): [1] com.google.android.finsky.application.FinskyAppImpl.ak(1866): No account |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff -ruN sepolicy/Android.mk sepolicy_edited/Android.mk | |
--- sepolicy/Android.mk 2017-03-24 17:33:02.687223200 +0300 | |
+++ sepolicy_edited/Android.mk 2017-03-24 16:54:19.283678483 +0300 | |
@@ -5,7 +5,7 @@ | |
# SELinux policy version. | |
# Must be <= /sys/fs/selinux/policyvers reported by the Android kernel. | |
# Must be within the compatibility range reported by checkpolicy -V. | |
-POLICYVERS ?= 30 | |
+POLICYVERS ?= 29 | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
apt-cache search java | awk '{print($1)}' | grep -E -e '^(ia32-)?(sun|oracle)-java' -e '^openjdk-' -e '^icedtea' -e '^(default|gcj)-j(re|dk)' -e '^gcj-(.*)-j(re|dk)' -e 'java-common' | xargs sudo apt-get -y remove | |
sudo apt-get -y autoremove | |
dpkg -l | grep ^rc | awk '{print($2)}' | xargs sudo apt-get -y purge | |
sudo bash -c 'ls -d /home/*/.java' | xargs sudo rm -rf | |
sudo rm -rf /usr/lib/jvm/* | |
for g in ControlPanel java java_vm javaws jcontrol jexec keytool mozilla-javaplugin.so orbd pack200 policytool rmid rmiregistry servertool tnameserv unpack200 appletviewer apt extcheck HtmlConverter idlj jar jarsigner javac javadoc javah javap jconsole jdb jhat jinfo jmap jps jrunscript jsadebugd jstack jstat jstatd native2ascii rmic schemagen serialver wsgen wsimport xjc xulrunner-1.9-javaplugin.so; do sudo update-alternatives --remove-all $g; done |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
clang++: error: unable to execute command: Segmentation fault | |
clang++: error: clang frontend command failed due to signal (use -v to see invocation) | |
Android clang version 3.8.256229 (based on LLVM 3.8.256229) | |
Target: i686--linux-gnu | |
Thread model: posix | |
InstalledDir: prebuilts/clang/host/linux-x86/clang-2690385/bin | |
clang++: note: diagnostic msg: PLEASE submit a bug report to http://llvm.org/bugs/ and include the crash backtrace, preprocessed source, and associated run script. | |
clang++: note: diagnostic msg: | |
******************** |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
04-23 14:38:32.356 379 379 I use-Rlog/RLOG-RILMUXD: [gsm0710muxd] 3855:main(): Frames received/dropped: 214/0 | |
04-23 14:38:32.761 1299 1388 I RILJ : Couldn't find 'rild2' socket; retrying after timeout | |
04-23 14:38:32.761 1299 1388 I RILJ : Couldn't find 'rild2' socket; retrying after timeout | |
04-23 14:38:32.791 1299 1375 I RILJ : Couldn't find 'rild' socket; retrying after timeout | |
04-23 14:38:32.791 1299 1375 I RILJ : Couldn't find 'rild' socket; retrying after timeout | |
04-23 14:38:36.762 1299 1388 I RILJ : Couldn't find 'rild2' socket; retrying after timeout | |
04-23 14:38:36.762 1299 1388 I RILJ : Couldn't find 'rild2' socket; retrying after timeout | |
04-23 14:38:36.796 1299 1375 I RILJ : Couldn't find 'rild' socket; retrying after timeout | |
04-23 14:38:36.796 1299 1375 I RILJ : Couldn't find 'rild' socket; retrying after timeout | |
04-23 14:38:37.356 379 379 I use-Rlog/RLOG-RILMUXD: [gsm0710muxd] 3855:main(): Frames received/dropped: 214/0 |
This file has been truncated, but you can view the full file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--------- beginning of kernel | |
04-23 14:38:04.831 146 146 D <2> (1)[146: guitar_update][146:guitar_update] exit | |
04-23 14:38:04.831 1 1 I <2> (3)[1: swapper/0][Power/dcm] EFUSE_REG_DCM_ON (0xffffff8001d1455c): 0x00000001 | |
04-23 14:38:04.831 1 1 I <2>-(3)[1:swapper/0][Power/clkmgr] [sdm_pll_disable_op]: pll->name=TVDPLL | |
04-23 14:38:04.831 1 1 I : <2>-(3)[1:swapper/0][Power/clkmgr] [larb_restore]: restore larb2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ram console header, hw_status: 2, fiq step 0. | |
<3> (3)[1:init]init: Service 'emsvr' (pid 233) killed by signal 6 | |
[ 4.913453]<3> (3)[1:init]init: Service 'emsvr' (pid 233) killing any children in process group | |
[ 5.009794]<2> (2)[133:bat_thread_kthr][MUSB]usb_enable_clock 189: enable(1),count(0),<12,12,12,12> | |
[ 5.009848]<2> (2)[133:bat_thread_kthr][MUSB]usb_enable_clock 222: enable(1),count(1),res(0),<13,12,13,12> | |
[ 5.009924]<2> (2)[133:bat_thread_kthr]Charger_Detect_Init | |
[ 5.249839]<1> (1)[133:bat_thread_kthr]step A2 : Standard USB Host! | |
[ 5.249968]<1> (1)[133:bat_thread_kthr][MUSB]usb_enable_clock 189: enable(0),count(1),<13,12,13,12> | |
[ 5.250033]<1> (1)[133:bat_thread_kthr][MUSB]usb_enable_clock 222: enable(0),count(0),res(0),<13,13,13,13> | |
[ 5.250066]<1> (1)[133:bat_thread_kthr]Charger_Detect_Release |