Hi all
Tonight (1 Dec) I have time. Lets see how far we can get with MIUI (with whoever is keen).
Check here:
http://forum.xda-developers.com/showthread.php?t=1371428
What my approach this time is is to "dependency inject" MIUI into CM7. That is, start with CM7 base and then add the jars + apks + libs of MIUI from LG's Optimus2X one for one. This is different than starting with MIUI and then changing it with CM files one for one.
Right
Attached is the file list of CM7 nightly and MIUI 1.11.25.
Differences of note:
lgdrmserver
libbridge
liblgdrm
/system/media/gadget files
I'll keep updating on progress! Please do hop on the development, I'm doing all the "beta" testing on my side (thus press thank you and don't post I'll help you test).
Does one need to compile from source <github> or can we just grab files from LG's Optimus2X zip'd MIUI and overwrite the CM7 files? I will also spend some time on this see if I can make some leeway!
Thank you for your help and hard work!!
What does all this mean ?
If I can help with anything? please let me know!! Thanks so much for your efforts!
ssmr2t said:
Thank you for your help and hard work!!
What does all this mean ?
If I can help with anything? please let me know!! Thanks so much for your efforts!
Click to expand...
Click to collapse
Means it might be over your head and should wait till a stable comes out.
Sent from my Inspire
dascope said:
Does one need to compile from source <github> or can we just grab files from LG's Optimus2X zip'd MIUI and overwrite the CM7 files? I will also spend some time on this see if I can make some leeway!
Click to expand...
Click to collapse
Yes, binary files - no compiling. That is, however, what I'm up to.
First up, /system/bin/app_process : zygote, main system daemon.
/system/bin/app_process : No difference in startup.
Next up: framework.jar : The whole platform (will break a lot of things, I'm sure - we'll see)
Ladies and gents, our first boot loop:
W/dalvikvm( 1830): ERROR: Unable to find decl for native Landroid/content/res/AssetManager;.splitThemePackageLjava/lang/String;Ljava/lang/String;[Ljava/lang/StringI
W/dalvikvm( 1830): ERROR: Unable to find decl for native Landroid/content/res/AssetManager;.detachThemePathLjava/lang/String;I)Z
W/dalvikvm( 1830): ERROR: Unable to find decl for native Landroid/content/res/AssetManager;.attachThemePathLjava/lang/StringI
W/dalvikvm( 1830): ERROR: Unable to find decl for native Landroid/content/res/AssetManager;.getBasePackageCount)I
W/dalvikvm( 1830): ERROR: Unable to find decl for native Landroid/content/res/AssetManager;.getBasePackageNameI)Ljava/lang/String;
W/dalvikvm( 1830): ERROR: Unable to find decl for native Landroid/content/res/AssetManager;.getBasePackageIdI)I
W/dalvikvm( 1830): ERROR: Unable to find decl for native Landroid/content/res/AssetManager;.addRedirectionsNativeI)V
W/dalvikvm( 1830): ERROR: Unable to find decl for native Landroid/content/res/AssetManager;.clearRedirectionsNative)V
W/dalvikvm( 1830): ERROR: Unable to find decl for native Landroid/content/res/AssetManager;.generateStyleRedirectionsIII)Z
Seems like a .so that is missing or a .so that needs replacing.
/system/lib/libutils.so is a match - checking.
Solved previous error, now getting this:
I/Netd ( 1741): Netd 1.0 starting
repeatedly.
Getting strace output:
writev(3, [{"\4", 1}, {"Netd\0", 5}, {"Netd 1.0 starting\0", 18}], 3) = 24
brk(0x13000) = 0x13000
socket(PF_INET, SOCK_DGRAM, IPPROTO_IP) = 9
getpid() = 2106
socket(PF_NETLINK, SOCK_DGRAM, 15) = 10
setsockopt(10, SOL_SOCKET, 0x21 /* SO_??? */, [65536], 4) = 0
setsockopt(10, SOL_SOCKET, SO_PASSCRED, [1], 4) = 0
bind(10, {sa_family=AF_NETLINK, pid=2106, groups=ffffffff}, 12) = 0
mmap2(NULL, 69632, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x40009000
getsockopt(10, SOL_SOCKET, SO_PEERCRED, "\0\0\0\0��������", [12]) = 0
pipe([11, 12]) = 0
mmap2(0x10000000, 1048576, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS|MAP_NORESERVE, -1, 0) = 0x10000000
mprotect(0x10000000, 4096, PROT_NONE) = 0
clone(Process 2108 attached
child_stack=0x100fff00, flags=CLONE_VM|CLONE_FS|CLONE_FILES|CLONE_SIGHAND|CLONE_THREAD|CLONE_SYSVSEM|CLONE_DETACHED) = 2108
[pid 2106] writev(6, [{"\6", 1}, {"SocketListener\0", 15}, {"Obtaining file descriptor socket"..., 79}], 3) = 95
[pid 2106] writev(3, [{"\6", 1}, {"Netd\0", 5}, {"Unable to start DnsProxyListener"..., 61}], 3) = 67
Not entirely helpful. Sockets for system services are normally "premade" in Android in the init.rc file. Will look around, otherwise will check for MIUI version.
service zygote /system/xbin/strace -f -tt -o /cache/debug/boot.strace /system/bin/app_process -Xzygote /system/bin --zygote --start-system-server
Will make strace put out debug of zygote.
Yay for more debug...
No help, make strace of just netd be put out. Argh.
Code:
1697 19:43:35.612710 open("/dev/log/main", O_WRONLY) = 3
1697 19:43:35.612897 open("/dev/log/radio", O_WRONLY) = 4
1697 19:43:35.613083 open("/dev/log/events", O_WRONLY) = 5
1697 19:43:35.625796 open("/dev/log/system", O_WRONLY) = 6
1697 19:43:35.626018 writev(3, [{"\4", 1}, {"Netd\0", 5}, {"Netd 1.0 starting\0", 18}], 3) = 24
1697 19:43:35.626365 brk(0x13000) = 0x13000
1697 19:43:35.626509 socket(PF_INET, SOCK_DGRAM, IPPROTO_IP) = 7
1697 19:43:35.626663 getpid() = 1697
1697 19:43:35.626785 socket(PF_NETLINK, SOCK_DGRAM, 15) = 11
1697 19:43:35.626952 setsockopt(11, SOL_SOCKET, 0x21 /* SO_??? */, [65536], 4) = 0
1697 19:43:35.627099 setsockopt(11, SOL_SOCKET, SO_PASSCRED, [1], 4) = 0
1697 19:43:35.627234 bind(11, {sa_family=AF_NETLINK, pid=1697, groups=ffffffff}, 12) = 0
1697 19:43:35.627397 mmap2(NULL, 69632, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x40009000
1697 19:43:35.627557 getsockopt(11, SOL_SOCKET, SO_PEERCRED, "\0\0\0\0��������", [12]) = 0
1697 19:43:35.627718 pipe([12, 13]) = 0
1697 19:43:35.627891 mmap2(0x10000000, 1048576, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS|MAP_NORESERVE, -1, 0) = 0x10000000
1697 19:43:35.628027 mprotect(0x10000000, 4096, PROT_NONE) = 0
1697 19:43:35.628173 clone(child_stack=0x100fff00, flags=CLONE_VM|CLONE_FS|CLONE_FILES|CLONE_SIGHAND|CLONE_THREAD|CLONE_SYSVSEM|CLONE_DETACHED) = 1698
1697 19:43:35.628371 listen(9, 4) = 0
1697 19:43:35.628495 pipe([14, 15]) = 0
1697 19:43:35.628648 mmap2(0x10000000, 1048576, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS|MAP_NORESERVE, -1, 0) = 0x4001a000
1697 19:43:35.628782 mprotect(0x4001a000, 4096, PROT_NONE) = 0
1697 19:43:35.628923 clone(child_stack=0x40119f00, flags=CLONE_VM|CLONE_FS|CLONE_FILES|CLONE_SIGHAND|CLONE_THREAD|CLONE_SYSVSEM|CLONE_DETACHED) = 1699
1697 19:43:35.629080 listen(10, 4) = 0
1697 19:43:35.629203 pipe([16, 17]) = 0
1697 19:43:35.629356 mmap2(0x10000000, 1048576, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS|MAP_NORESERVE, -1, 0) = 0x4011a000
1697 19:43:35.629521 mprotect(0x4011a000, 4096, PROT_NONE) = 0
1697 19:43:35.629667 clone(child_stack=0x40219f00, flags=CLONE_VM|CLONE_FS|CLONE_FILES|CLONE_SIGHAND|CLONE_THREAD|CLONE_SYSVSEM|CLONE_DETACHED) = 1700
1697 19:43:35.629820 nanosleep({1000, 0}, <unfinished ...>
1698 19:43:35.629966 syscall_983045(0x100fff00, 0x125c8, 0, 0x40, 0x100fff00, 0xaef01e71, 0x40009008, 0xf0005, 0x10000000, 0xaef01e71, 0x100000, 0x40009008, 0, 0x100ffee8, 0xafd120a0, 0xafd0c80c, 0x60000010, 0x100fff00, 0xb729, 0x7665642f, 0x676f6c2f, 0x7379732f, 0x6d6574, 0x64544800, 0x64696f72, 0x6f732e, 0, 0x6f, 0, 0, 0, 0) = 0
1698 19:43:35.630125 select(13, [11 12], NULL, NULL, NULL <unfinished ...>
1699 19:43:35.630262 syscall_983045(0x40119f00, 0x12728, 0, 0x40, 0x40119f00, 0xaef01e71, 0x12678, 0xf0005, 0x4001a000, 0xaef01e71, 0x100000, 0x12678, 0, 0x40119ee8, 0xafd120a0, 0xafd0c80c, 0x60000010, 0x40119f00, 0xb729, 0x7665642f, 0x676f6c2f, 0x7379732f, 0x6d6574, 0x64544800, 0x64696f72, 0x6f732e, 0, 0x6f, 0, 0, 0, 0) = 0
1699 19:43:35.630421 select(15, [9 14], NULL, NULL, NULL <unfinished ...>
1700 19:43:35.630553 syscall_983045(0x40219f00, 0x12768, 0, 0x40, 0x40219f00, 0xaef01e71, 0x112d8, 0xf0005, 0x4011a000, 0xaef01e71, 0x100000, 0x112d8, 0, 0x40219ee8, 0xafd120a0, 0xafd0c80c, 0x60000010, 0x40219f00, 0xb729, 0x7665642f, 0x676f6c2f, 0x7379732f, 0x6d6574, 0x64544800, 0x64696f72, 0x6f732e, 0, 0x6f, 0, 0, 0, 0) = 0
1700 19:43:35.630712 select(17, [10 16], NULL, NULL, NULLULL^C
Before netd fs off into oblivion.
Right, replacing netd then. Not keen - this is suppose to work out of the box.
Did not help. What I can gather:
It loads its libraries fine, and then starts to listen for a connection. Then, a system call syscall_983045 goes unfinished.
Prompting the crash in netd.
Library dependencies for netd seems (so far from strace):
c,sysutils,log,stdc++,m,cutils,netutils,crypto,z,hardware_legacy,utils,binder,wpa_client,bluedroid
Guessing who is the culprit:
Not c (C lib),stdc++ (standard c++ lib),wpa_client(WiFi),bluedroid (BT),hardware_legacy (lights),log (log),m (math), z (compression),crypto (crypto)
Either cutils, sysutils, netutils, binder
Utils ldd:
arm-none-eabi-ld: warning: libz.so, needed by libutils.so, not found (try using -rpath or -rpath-link)
arm-none-eabi-ld: warning: liblog.so, needed by libutils.so, not found (try using -rpath or -rpath-link)
arm-none-eabi-ld: warning: libcutils.so, needed by libutils.so, not found (try using -rpath or -rpath-link)
arm-none-eabi-ld: warning: libc.so, needed by libutils.so, not found (try using -rpath or -rpath-link)
arm-none-eabi-ld: warning: libstdc++.so, needed by libutils.so, not found (try using -rpath or -rpath-link)
arm-none-eabi-ld: warning: libm.so, needed by libutils.so, not found (try using -rpath or -rpath-link)
arm-none-eabi-ld: warning: cannot find entry symbol _start; defaulting to 00008188
Replacing liblog and libcutils with MIUI versions. Lets have a look what breaks next
liblog added the following error:
1973 20:13:37.926040 open("/dev/log/libra", O_WRONLY) = -1 ENOENT (No such file or directory)
Still no change in netd.
Trying libc, see if netd will budge
Googled for syscall_983045
Apparently used to spawn a service. Part of binder.
Replacing binder as well. Crikey
Well if things break due to syscalls not going through, then we've hit a snag on kernel levels.
Anyone got privy on where they hide the MIUI Optimus 2X kernel source?
Related
Hello,
I extracted the factoryfs.rfs file from JPX with MagicIso and noticed that there is a SWD-V300_WiMAX_Setup.exe file under system(maybe system/bin) and an autorun.inf in the same folder. So I wonder why? I thougt the Galaxy S don't have WiMAX? Can I safely delete that file?
Very interesting...
What rom are you on?
Yeah quite interesting. Why an exe is included? Hasn't any expert programmers noticed this?
Why not upload the files here? We can then see what OS this exe file is for, maybe it's not supposed to be there.
Autorun.inf is used in CDs/DVDs in Windows to get them to launch a file when the disc is inserted. I don't know if it is used in Linux or anything else.
Just tested an original rom nothing like that inside .
jje
hidden .iso file in galaxy s XWJS5
I also found the same file using stock XWJS5 (2.2.1).
It's under /system/etc/autorun.iso
The iso file list is as above:
AUTORUN.exe
AUTORUN.INF
SWD-V300_WiMAX_Setup.exe
Samsung had a prototype on the forge with model name "Samsung SWD-V300 Cosmos".
Now what does this have to do with galaxy s ? Probably nothing, but who knows.
BR
PS: File link: www#multiupload#com/6UJHZ4ATNB (replace # with . ) sorry cna't post outside links.
CyberKareca said:
I also found the same file using stock XWJS5 (2.2.1).
It's under /system/etc/autorun.iso
The iso file list is as above:
AUTORUN.exe
AUTORUN.INF
SWD-V300_WiMAX_Setup.exe
Samsung had a prototype on the forge with model name "Samsung SWD-V300 Cosmos".
Now what does this have to do with galaxy s ? Probably nothing, but who knows.
BR
PS: File link: www#multiupload#com/6UJHZ4ATNB (replace # with . ) sorry cna't post outside links.
Click to expand...
Click to collapse
I can confirm the contents of the ISO. I found it in the newest Darky's ROM.
I can't see any reasons for this being in the fs? I want to delete it.
Some details for ya...
Just came across this myself. I was thinking maybe it was something similar to HTC's use of a CD-Rom USB interface, which loads an iso image containing drivers. Which frankly would make sense, seeing as most of us see a CD-Rom drive when plugged in via USB, well us Vibrant guys anyways, not sure about I9000. Out of curiosity I installed it on one of my VM testers. There's really not much there, and it seems somewhat dated. Here ya go.
Found this in Trigger 3.0.1. Also, the .inf lists quite a few files, but I never saw them. The installer extracted out to the following. C7xVX32S.sys, C7xVOIP.inf, an msi installer, and a few directories. The tester was 7 x86 Ultimate.
SWD-300_WiMAX_Drivers / 2ce9a.msi
C7xVX32S.sys details
Code:
Length Of Struc: 03A0h
Length Of Value: 0034h
Type Of Struc: 0000h
Info: VS_VERSION_INFO
Signature: FEEF04BDh
Struc Version: 1.0
File Version: 4.1.5.12
Product Version: 4.1.5.12
File Flags Mask: 0.63
File Flags: DEBUG; PRIVATE BUILD;
File OS: NT (WINDOWS32)
File Type: DRV
File SubType: DRV NETWORK
File Date: 00:00:00 00/00/0000
Struc has Child(ren). Size: 836 bytes.
Child Type: StringFileInfo
Language/Code Page: 1033/1200
CompanyName: Samsung Electronics
FileDescription: Samsung WiBro/mWiMAX USB Device Driver
FileVersion: 4.01.0512.D
InternalName: C7xx VOIP Driver for Windows XP/2000
LegalCopyright: Copyright (c) Samsung. All rights reserved.
OriginalFilename: C7xVverS.sys
ProductName: Samsung WiBro/mWiMAX USB Adapter
ProductVersion: 4.01.0512.D
Child Type: VarFileInfo
Translation: 1033/1200
C7xVOIP.inf dump
Code:
;
; File Name: C7xxVoIP.inf
; Integrated USB Driver installation file for C7xx (WiBro and mWiMAX)
;
; File created on 07/22/2008
;
; Copyright (c) 2007, 2008, 2009 Samsung Electronics
;--------- Version Section ---------------------------------------------------
[Version]
Signature = "$WINDOWS NT$"
Class = Net
ClassGUID = {4d36e972-e325-11ce-bfc1-08002be10318}
Provider = %Provider%
DriverVer = 07/17/2009, 4.02.0717
CatalogFile = C7xVCSDK.cat
;--------- DestinationDirs Section -------------------------------------------
[DestinationDirs]
DefaultDestDir = 10
C7xxVoIP_Files_Driver.ntx86 = 12
C7xxVoIP_Files_Driver.ntx86.6.0 = 12
C7xxVoIP_Files_Driver.ntamd64.6.0 = 12
;--------- SourceDiskNames and SourceDiskFiles Section -----------------------
; These sections identify source disks and files for installation.
[SourceDisksNames]
1 = %DiskId1%,,,""
[SourceDisksFiles]
C7xVX32S.sys = 1,.\NT32,
C7xVV32S.sys = 1,.\VT32,
C7xVV64S.sys = 1,.\VT64,
;--------- Manufacturer and Models Sections ----------------------------------
[Manufacturer]
%MfgName% = C7xxVoIP_Mfg, ntx86.6.0, ntamd64.6.0
[C7xxVoIP_Mfg]
; DisplayName Section DeviceId
%WiBro_DeviceDesc% = C7xxVoIP.ntx86, USB\VID_055D&PID_A150&MI_00 ; SWM-S15K
%WiBro_DeviceDesc% = C7xxVoIP.ntx86, USB\Vid_04e8&Pid_6735 ; Download mode PID
[C7xxVoIP_Mfg.ntx86.6.0]
; DisplayName Section DeviceId
%WiBro_DeviceDesc% = C7xxVoIP.ntx86.6.0, USB\VID_055D&PID_A150&MI_00 ; SWM-S15K
%WiBro_DeviceDesc% = C7xxVoIP.ntx86.6.0, USB\Vid_04e8&Pid_6735 ; Download mode PID
[C7xxVoIP_Mfg.ntamd64.6.0]
; DisplayName Section DeviceId
%WiBro_DeviceDesc% = C7xxVoIP.ntamd64.6.0, USB\VID_055D&PID_A150&MI_00 ; SWM-S15K
%WiBro_DeviceDesc% = C7xxVoIP.ntamd64.6.0, USB\Vid_04e8&Pid_6735 ; Download mode PID
; --------- Windows XP 32 -----------------
[C7xxVoIP.ntx86]
Characteristics = 0x84 ; NCF_HAS_UI & NCF_PHYSICAL
BusType = 15 ; PnP bus
CopyFiles = C7xxVoIP_Files_Driver.ntx86
AddReg = C7xxVoIP.reg, C7xxVoIP.params.reg
[C7xxVoIP.ntx86.Services]
AddService = C7xVCSDK, %FLG_ADDREG_NOCLOBBER%, C7xxVoIP_Service.ntx86, C7xxVoIP.EventLog
[C7xxVoIP_Service.ntx86]
DisplayName = %C7xxVoIP_SvcDesc%
ServiceType = %SERVICE_KERNEL_DRIVER%
StartType = %SERVICE_DEMAND_START%
ErrorControl = %SERVICE_ERROR_NORMAL%
ServiceBinary = %12%\C7xVX32S.sys
LoadOrderGroup = NDIS
[C7xxVoIP_Files_Driver.ntx86]
C7xVX32S.sys,,,2
; --------- Windows Vista 32 -----------------
[C7xxVoIP.ntx86.6.0]
Characteristics = 0x84 ; NCF_HAS_UI & NCF_PHYSICAL
BusType = 15 ; PnP bus
CopyFiles = C7xxVoIP_Files_Driver.ntx86.6.0
AddReg = C7xxVoIP.reg, C7xxVoIP.params.reg
[C7xxVoIP.ntx86.6.0.Services]
AddService = C7xVCSDK, %FLG_ADDREG_NOCLOBBER%, C7xxVoIP_Service.ntx86.6.0, C7xxVoIP.EventLog
[C7xxVoIP_Service.ntx86.6.0]
DisplayName = %C7xxVoIP_SvcDesc%
ServiceType = %SERVICE_KERNEL_DRIVER%
StartType = %SERVICE_DEMAND_START%
ErrorControl = %SERVICE_ERROR_NORMAL%
ServiceBinary = %12%\C7xVV32S.sys
LoadOrderGroup = NDIS
[C7xxVoIP_Files_Driver.ntx86.6.0]
C7xVV32S.sys,,,2
; --------- Windows Vista 64 -----------------
[C7xxVoIP.ntamd64.6.0]
Characteristics = 0x84 ; NCF_HAS_UI & NCF_PHYSICAL
BusType = 15 ; PnP bus
CopyFiles = C7xxVoIP_Files_Driver.ntamd64.6.0
AddReg = C7xxVoIP.reg, C7xxVoIP.params.reg
[C7xxVoIP.ntamd64.6.0.Services]
AddService = C7xVCSDK, %FLG_ADDREG_NOCLOBBER%, C7xxVoIP_Service.ntamd64.6.0, C7xxVoIP.EventLog
[C7xxVoIP_Service.ntamd64.6.0]
DisplayName = %C7xxVoIP_SvcDesc%
ServiceType = %SERVICE_KERNEL_DRIVER%
StartType = %SERVICE_DEMAND_START%
ErrorControl = %SERVICE_ERROR_NORMAL%
ServiceBinary = %12%\C7xVV64S.sys
LoadOrderGroup = NDIS
[C7xxVoIP_Files_Driver.ntamd64.6.0]
C7xVV64S.sys,,,2
; --------- Registry keys --------------------
[C7xxVoIP.reg]
HKR, Ndi, Service, 0, "C7xVCSDK"
HKR, NDI\Interfaces, UpperRange, 0, "ndis5"
HKR, NDI\Interfaces, LowerRange, 0, "ethernet"
[C7xxVoIP.EventLog]
AddReg = C7xxVoIP.AddEventLog.reg
[C7xxVoIP.AddEventLog.reg]
HKR, , EventMessageFile, 0x00020000, "%%SystemRoot%%\System32\netevent.dll"
HKR, , TypesSupported, 0x00010001, 7
;-------------------------------------------------------------------------------
; Optional Custom Parameters in the Registry ("Advanced" menu).
[C7xxVoIP.params.reg]
; Statistics interval (debug only)
HKR, NDI\params\StatsInterval, ParamDesc, 0, %ParamStatInt%
HKR, NDI\params\StatsInterval, type, 0, "int"
HKR, NDI\params\StatsInterval, default, 0, "10"
HKR, NDI\params\StatsInterval, optional, 0, "0"
HKR, NDI\params\StatsInterval, min, 0, "0"
HKR, NDI\params\StatsInterval, max, 0, "60"
; Wakeup timeout after S3/S4 states
HKR, NDI\params\WakeupTimeout, ParamDesc, 0, %ParamWakeTout%
HKR, NDI\params\WakeupTimeout, type, 0, "long"
HKR, NDI\params\WakeupTimeout, default, 0, "100000"
HKR, NDI\params\WakeupTimeout, optional, 0, "0"
HKR, NDI\params\WakeupTimeout, min, 0, "100000"
HKR, NDI\params\WakeupTimeout, max, 0, "2000000"
; Device remote wake-up
HKR, NDI\params\RWU, ParamDesc, 0, %ParamRWU%
HKR, NDI\params\RWU, type, 0, "enum"
HKR, NDI\params\RWU, default, 0, "1"
HKR, NDI\params\RWU, optional, 0, "0"
HKR, NDI\params\RWU\enum, "0", 0, %ParamDisable%
HKR, NDI\params\RWU\enum, "1", 0, %ParamEnable%
; No halt on suspend
HKR, NDI\params\NoHalt, ParamDesc, 0, %ParamNHOS%
HKR, NDI\params\NoHalt, type, 0, "enum"
HKR, NDI\params\NoHalt, default, 0, "1"
HKR, NDI\params\NoHalt, optional, 0, "0"
HKR, NDI\params\NoHalt\enum, "0", 0, %ParamNo%
HKR, NDI\params\NoHalt\enum, "1", 0, %ParamYes%
; Linkspeed indication
HKR, NDI\params\Linkspeed, ParamDesc, 0, %ParamSpeed%
HKR, NDI\params\Linkspeed, type, 0, "long"
HKR, NDI\params\Linkspeed, default, 0, "1000000"
HKR, NDI\params\Linkspeed, optional, 0, "0"
HKR, NDI\params\Linkspeed, min, 0, "10000"
HKR, NDI\params\Linkspeed, step, 0, "10000"
HKR, NDI\params\Linkspeed, max, 0, "1000000"
; Maximum send queue depth
HKR, NDI\params\SndQLimit, ParamDesc, 0, %ParamSQL%
HKR, NDI\params\SndQLimit, type, 0, "int"
HKR, NDI\params\SndQLimit, default, 0, "500"
HKR, NDI\params\SndQLimit, optional, 0, "0"
HKR, NDI\params\SndQLimit, min, 0, "100"
HKR, NDI\params\SndQLimit, max, 0, "1500"
; Maximum receive queue depth
HKR, NDI\params\RcvQLimit, ParamDesc, 0, %ParamRQL%
HKR, NDI\params\RcvQLimit, type, 0, "int"
HKR, NDI\params\RcvQLimit, default, 0, "500"
HKR, NDI\params\RcvQLimit, optional, 0, "0"
HKR, NDI\params\RcvQLimit, min, 0, "100"
HKR, NDI\params\RcvQLimit, max, 0, "1500"
; Suspend timeout
HKR, NDI\params\SuspendTimeout, ParamDesc, 0, %ParamSuspend%
HKR, NDI\params\SuspendTimeout, type, 0, "long"
HKR, NDI\params\SuspendTimeout, default, 0, "10000"
HKR, NDI\params\SuspendTimeout, optional, 0, "0"
HKR, NDI\params\SuspendTimeout, min, 0, "1000"
HKR, NDI\params\SuspendTimeout, step, 0, "1000"
HKR, NDI\params\SuspendTimeout, max, 0, "30000"
; Suspend timeout in connected state
HKR, NDI\params\SuspendNetTimeout, ParamDesc, 0, %ParamNetSuspend%
HKR, NDI\params\SuspendNetTimeout, type, 0, "long"
HKR, NDI\params\SuspendNetTimeout, default, 0, "900"
HKR, NDI\params\SuspendNetTimeout, optional, 0, "0"
HKR, NDI\params\SuspendNetTimeout, min, 0, "500"
HKR, NDI\params\SuspendNetTimeout, step, 0, "100"
HKR, NDI\params\SuspendNetTimeout, max, 0, "10000"
;--------- Strings Section ---------------------------------------------------
[Strings]
MfgName = "Samsung Electronics"
Provider = "Samsung Electronics"
C7xxVoIP_SvcDesc = "Samsung CMC7xx CSD VoIP Network Driver"
WiBro_DeviceDesc = "Samsung USB VoIP Adapter"
DeviceClassName = "Class for Network USB devices"
DiskId1 = "CMC7xx CSD VoIP Device Installation Disk #1"
; Parameters
ParamStatInt = "Statistics Interval"
ParamSpeed = "Linkspeed"
ParamSQL = "Send Queue Limit"
ParamRQL = "Receive Queue Limit"
ParamWakeTout = "S3/S4 Wakeup Timeout"
ParamRWU = "Remote WakeUp"
ParamNHOS = "No Halt On Suspend"
ParamDisable = "Disable"
ParamEnable = "Enable"
ParamNo = "No"
ParamYes = "Yes"
ParamSuspend = "Suspend Timeout"
ParamNetSuspend = "Connected Suspend Timeout"
REG_SZ = 0x00000000
REG_MULTI_SZ = 0x00010000
REG_EXPAND_SZ = 0x00020000
REG_BINARY = 0x00000001
REG_DWORD = 0x00010001
REG_NONE = 0x00020001
SERVICE_KERNEL_DRIVER = 0x00000001
SERVICE_FILE_SYSTEM_DRIVER = 0x00000002
SERVICE_ADAPTER = 0x00000004
SERVICE_RECOGNIZER_DRIVER = 0x00000008
SERVICE_BOOT_START = 0x0
SERVICE_SYSTEM_START = 0x1
SERVICE_AUTO_START = 0x2
SERVICE_DEMAND_START = 0x3
SERVICE_DISABLED = 0x4
SERVICE_ERROR_IGNORE = 0x00000000
SERVICE_ERROR_NORMAL = 0x00000001
SERVICE_ERROR_SEVERE = 0x00000002
SERVICE_ERROR_CRITICAL = 0x00000003
FLG_ADDREG_NOCLOBBER = 0x00000002
FLG_ADDREG_DELVAL = 0x00000004
FLG_ADDREG_APPEND = 0x00000008
FLG_ADDREG_KEYONLY = 0x00000010
FLG_ADDREG_OVERWRITEONLY = 0x00000020
FLG_ADDREG_64BITKEY = 0x00001000
FLG_ADDREG_KEYONLY_COMMON = 0x00002000
FLG_ADDREG_32BITKEY = 0x00004000
I've tried rooting my lg 4xhd for a few days but every time I try it it just says:
* daemon not running. starting it now on port 5037 *
* daemon started successfully *
DON'T TOUCH THE DEVICE OR UNPLUG WHILE ROOTING!
PUSH FILES
failed to copy 'busybox' to '/data/local/busybox': No such file or direc
failed to copy 'su' to '/data/local/su': No such file or directory
failed to copy 'Superuser.apk' to '/data/local/Superuser.apk': No such f
irectory
- exec '/system/bin/sh' failed: No such file or directory (2) -
read NV size = 4, offset = 0
read NV ret = 4
read NV offset = 0, message = (0)[0]
check_LGE_official: nvdata_buf = , , .
check_LGE_official: enable_root = 1
- exec '/system/bin/sh' failed: No such file or directory (2) -
read NV size = 4, offset = 0
read NV ret = 4
read NV offset = 0, message = (0)[0]
check_LGE_official: nvdata_buf = , , .
check_LGE_official: enable_root = 1
- exec '/system/bin/sh' failed: No such file or directory (2) -
read NV size = 4, offset = 0
read NV ret = 4
read NV offset = 0, message = (0)[0]
check_LGE_official: nvdata_buf = , , .
check_LGE_official: enable_root = 1
- exec '/system/bin/sh' failed: No such file or directory (2) -
read NV size = 4, offset = 0
read NV ret = 4
read NV offset = 0, message = (0)[0]
check_LGE_official: nvdata_buf = , , .
check_LGE_official: enable_root = 1
- exec '/system/bin/sh' failed: No such file or directory (2) -
read NV size = 4, offset = 0
read NV ret = 4
read NV offset = 0, message = (0)[0]
check_LGE_official: nvdata_buf = , , .
check_LGE_official: enable_root = 1
REBOOT
/system/bin/sh: can't create /data/local.prop: Permission denied
AGAIN REBOOT
AGAIN!?
mount: Operation not permitted
mount: Operation not permitted
/system/bin/sh: can't create /system/xbin/busybox: Read-only file system
Unable to chmod /system/xbin/busybox: No such file or directory
/system/bin/sh: /system/xbin/busybox: not found
/system/bin/sh: busybox: not found
/system/bin/sh: busybox: not found
Unable to chown /system/xbin/su: No such file or directory
Unable to chmod /system/xbin/su: No such file or directory
Unable to chmod /system/app/Superuser.apk: No such file or directory
rm failed for /data/local.prop, No such file or directory
rm failed for /data/local/tmp, Permission denied
failed on '/data/local/tmp.bak' - No such file or directory
Now I am not really an expert with complicated stuff but I DID install all the drivers properly. It would be nice if someone could help me in a awnser that I can hopefully understand. Thanks in advance
As the log implies quite clearly, it isn't finding the files to push
Check out you have all required files and that you unpacked everything correctly in proper directories
Hi,everyone! I got into trouble when I tried to build AOSPA 4+ for mi3 tegra endtion.I successfully complied a *.zip,and successfully flash it to my device,but it always show the boot animation can not get into launcher.I have got logcat,but I am a beginner and have no knowledge about JAVA.
There is a part of locat
Code:
--------- beginning of /dev/log/main
E/nvaudio_modem(25458): Failed to get phone service!
W/AudioFlinger(25458): Thread AudioOut_2 cannot connect to the power manager service
E/AudioFlinger(25458): no wake lock to update!
I/r_submix(25458): adev_open(name=audio_hw_if)
I/r_submix(25458): adev_init_check()
I/AudioFlinger(25458): loadHwModule() Loaded r_submix audio interface from Wifi Display audio HAL (audio) handle 3
I/AudioPolicyService(25458): Loaded audio policy from LEGACY Audio Policy HAL (audio_policy)
E/memtrack(25457): Couldn't load memtrack module (No such file or directory)
E/android.os.Debug(25457): failed to load memtrack module: -2
I/SamplingProfilerIntegration(25457): Profiling disabled.
I/Zygote (25457): Preloading classes...
D/idmap (25596): error: no read access to /vendor/overlay: No such file or directory
D/TextLayoutCache(25457): Using debug level = 0 - Debug Enabled = 0
I/dalvikvm(25457): threadid=1: recursive native library load attempt (/system/lib/libmedia_jni.so)
D/MtpDeviceJNI(25457): register_android_mtp_MtpDevice
I/dalvikvm(25457): threadid=1: recursive native library load attempt (/system/lib/libmedia_jni.so)
I/dalvikvm(25457): threadid=1: recursive native library load attempt (/system/lib/libmedia_jni.so)
I/dalvikvm(25457): threadid=1: recursive native library load attempt (/system/lib/libmedia_jni.so)
E/EmojiFactory_jni(25457): Failed to load libemoji.so: dlopen failed: library "libemoji.so" not found
V/NatController(25456): runCmd(/system/bin/iptables -F natctrl_FORWARD) res=0
V/NatController(25456): runCmd(/system/bin/iptables -A natctrl_FORWARD -j DROP) res=0
V/NatController(25456): runCmd(/system/bin/iptables -t nat -F natctrl_nat_POSTROUTING) res=0
V/NatController(25456): runCmd(/system/bin/ip route flush cache) res=0
V/NatController(25456): runCmd(/system/bin/iptables -F natctrl_tether_counters) res=0
I/LibraryLoader(25457): Loading: webviewchromium
E/dalvikvm(25457): dlopen("/system/lib/libwebviewchromium.so") failed: dlopen failed: empty/missing DT_HASH in "libwebviewchromium.so" (built with --hash-style=gnu?)
W/WebViewFactory(25457): error preloading provider
W/WebViewFactory(25457): java.lang.RuntimeException: Cannot load WebView
W/WebViewFactory(25457): at com.android.org.chromium.android_webview.AwBrowserProcess.loadLibrary(AwBrowserProcess.java:31)
W/WebViewFactory(25457): at com.android.webview.chromium.WebViewChromiumFactoryProvider.<init>(WebViewChromiumFactoryProvider.java:87)
W/WebViewFactory(25457): at java.lang.Class.newInstanceImpl(Native Method)
W/WebViewFactory(25457): at java.lang.Class.newInstance(Class.java:1208)
W/WebViewFactory(25457): at android.webkit.WebViewFactory$Preloader.<clinit>(WebViewFactory.java:43)
W/WebViewFactory(25457): at java.lang.Class.classForName(Native Method)
W/WebViewFactory(25457): at java.lang.Class.forName(Class.java:251)
W/WebViewFactory(25457): at java.lang.Class.forName(Class.java:216)
W/WebViewFactory(25457): at com.android.internal.os.ZygoteInit.preloadClasses(ZygoteInit.java:307)
W/WebViewFactory(25457): at com.android.internal.os.ZygoteInit.preload(ZygoteInit.java:247)
W/WebViewFactory(25457): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:581)
W/WebViewFactory(25457): at dalvik.system.NativeStart.main(Native Method)
W/WebViewFactory(25457): Caused by: com.android.org.chromium.content.common.ProcessInitException
W/WebViewFactory(25457): at com.android.org.chromium.content.app.LibraryLoader.loadAlreadyLocked(LibraryLoader.java:135)
W/WebViewFactory(25457): at com.android.org.chromium.content.app.LibraryLoader.loadNow(LibraryLoader.java:87)
W/WebViewFactory(25457): at com.android.org.chromium.android_webview.AwBrowserProcess.loadLibrary(AwBrowserProcess.java:29)
W/WebViewFactory(25457): ... 11 more
W/WebViewFactory(25457): Caused by: java.lang.UnsatisfiedLinkError: dlopen failed: empty/missing DT_HASH in "libwebviewchromium.so" (built with --hash-style=gnu?)
W/WebViewFactory(25457): at java.lang.Runtime.loadLibrary(Runtime.java:386)
W/WebViewFactory(25457): at java.lang.System.loadLibrary(System.java:526)
W/WebViewFactory(25457): at com.android.org.chromium.content.app.LibraryLoader.loadAlreadyLocked(LibraryLoader.java:123)
W/WebViewFactory(25457): ... 13 more
V/NatController(25456): runCmd(/system/bin/iptables -X natctrl_tether_counters) res=0
V/NatController(25456): runCmd(/system/bin/iptables -N natctrl_tether_counters) res=0
W/Zygote (25457): Class not found for preloading: java.lang.UnsafeByteSequence
I/System (25457): Loaded time zone names for "" in 35ms (32ms in ICU)
E/Netd (25456): Unable to create netlink socket: Protocol not supported
E/Netd (25456): Unable to open quota2 logging socket
D/MDnsDS (25456): MDnsSdListener::Hander starting up
D/MDnsDS (25456): MDnsSdListener starting to monitor
D/MDnsDS (25456): Going to poll with pollCount 1
I/System (25457): Loaded time zone names for "en_US" in 22ms (18ms in ICU)
I/Zygote (25457): ...preloaded 2777 classes in 775ms.
I/dalvikvm(25457): System server process 25738 has been created
I/Zygote (25457): Accepting command socket connections
D/SensorService(25738): nuSensorService starting...
I/Sensors (25738): path open /dev/input/event1
I/Sensors (25738): path open /dev/input/event0
I/Sensors (25738): path open /dev/input/event6
I/Sensors (25738): path open /dev/input/event5
E/Sensors (25738): HAL:could not open trigger name
E/Sensors (25738): HAL:could not open current trigger
I/MPL-storeload(25738): Bytes read = 4340
V/Sensors (25738): HAL:MPL:inv_compass_was_turned_off
I/Sensors (25738): path open /dev/input/event1
I/Sensors (25738): path open /dev/input/event0
I/Sensors (25738): path open /dev/input/event6
I/Sensors (25738): path open /dev/input/event5
I/Sensors (25738): path open /dev/input/event4
I/Sensors (25738): path open /dev/input/event3
I/Sensors (25738): path open /dev/input/event1
I/Sensors (25738): path open /dev/input/event0
I/Sensors (25738): path open /dev/input/event6
I/Sensors (25738): path open /dev/input/event5
I/Sensors (25738): path open /dev/input/event4
I/Sensors (25738): path open /dev/input/event1
I/Sensors (25738): path open /dev/input/event0
I/Sensors (25738): path open /dev/input/event6
I/Sensors (25738): path open /dev/input/event5
I/Sensors (25738): path open /dev/input/event4
I/Sensors (25738): path open /dev/input/event3
I/Sensors (25738): path open /dev/input/event2
I/SensorService(25738): Ambient Light Sensor
I/SensorService(25738): Proximity Sensor
I/SensorService(25738): Barometer Sensor
I/SensorService(25738): Temperature Sensor
I/SensorService(25738): Gyroscope Sensor
I/SensorService(25738): Raw Gyroscope Sensor
I/SensorService(25738): Accelerometer Sensor
I/SensorService(25738): Magnetic Field Sensor
I/SensorService(25738): Orientation Sensor
I/SensorService(25738): Rotation Vector Sensor
I/SensorService(25738): Linear Acceleration Sensor
I/SensorService(25738): Gravity Sensor
D/SensorService(25738): Max socket buffer size 1048576
D/SensorService(25738): nuSensorService thread starting...
E/Sensors (25738): HAL:ERR Full data packet was not read
E/Sensors (25738): HAL:ERR Full data packet was not read
I/installd( 201): new connection
I/powerHAL::common(25738): input device id:0 present with name:tegra-kbc
I/powerHAL::common(25738): input device id:1 present with name:atmel-maxtouch
I/powerHAL::common(25738): input device id:2 present with name:bmp180
I/powerHAL::common(25738): input device id:3 present with name:lightsensor
I/powerHAL::common(25738): input device id:4 present with name:proximity
I/powerHAL::common(25738): input device id:5 present with name:compass
I/powerHAL::common(25738): input device id:6 present with name:fsa8108_sw
D/PackageManager(25738): No files in app dir /vendor/overlay
W/ResourceType(25738): Failure getting entry for 0x7f050000 (t=4 e=0) in package 0 (error -75)
W/Resources(25738): Converting to boolean: TypedValue{t=0x3/d=0x1a9a "false" a=2 r=0x7f120876}
W/ResourceType(25738): Failure getting entry for 0x7f0d01bf (t=12 e=447) in package 0 (error -75)
W/ResourceType(25738): Failure getting entry for 0x7f0d01bf (t=12 e=447) in package 0 (error -75)
W/ResourceType(25738): Failure getting entry for 0x7f130310 (t=18 e=784) in package 0 (error -75)
W/ResourceType(25738): Failure getting entry for 0x7f130310 (t=18 e=784) in package 0 (error -75)
W/ResourceType(25738): Failure getting entry for 0x7f1302f3 (t=18 e=755) in package 0 (error -75)
W/ResourceType(25738): Failure getting entry for 0x7f04000f (t=3 e=15) in package 0 (error -75)
W/ResourceType(25738): Failure getting entry for 0x7f04000f (t=3 e=15) in package 0 (error -75)
D/PackageManager(25738): No files in app dir /vendor/app
V/tspdrv (25738): opened device /dev/tspdrv
V/tspdrv (25738): TSPDRV_MAGIC_NUMBER success
V/tspdrv (25738): TSPDRV_GET_NUM_ACTUATORS success, actuators = 1
V/tspdrv (25738): TSPDRV_SET_DEVICE_PARAMETER success
V/tspdrv (25738): timeout_ms: 0
V/tspdrv (25738): TSPDRV_DISABLE_AMP success
E/ConsumerIrService(25738): Can't open consumer IR HW Module, error: -2
W/libsuspend(25738): Error writing 'on' to /sys/power/state: Invalid argument
I/libsuspend(25738): Selected autosleep
I/powerHAL::common(25738): Enabling input device:1
I/powerHAL::common(25738): Enabling input device:2
I/powerHAL::common(25738): Enabling input device:3
I/powerHAL::common(25738): Enabling input device:4
I/powerHAL::common(25738): Enabling input device:5
I/powerHAL::common(25738): Enabling input device:6
I/powerHAL::pisces(25738): average current for last screen off is 206971
D/SurfaceFlinger( 196): Screen acquired, type=0 flinger=0xc0b450
D/SurfaceFlinger( 196): screen was previously acquired
D/EventHub(25738): No input device configuration file found for device 'atmel-maxtouch'.
D/BluetoothManagerService(25738): Loading stored name and address
D/BluetoothManagerService(25738): Stored bluetooth Name=null,Address=null
W/EventHub(25738): Unable to disable kernel key repeat for /dev/input/event1: Function not implemented
I/EventHub(25738): New device: id=1, fd=135, path='/dev/input/event1', name='atmel-maxtouch', classes=0x15, configuration='', keyLayout='/system/usr/keylayout/atmel-maxtouch.kl', keyCharacterMap='/system/usr/keychars/Generic.kcm', builtinKeyboard=false, usingSuspendBlockIoctl=true, usingClockIoctl=false
D/EventHub(25738): No input device configuration file found for device 'tegra-kbc'.
W/EventHub(25738): Unable to disable kernel key repeat for /dev/input/event0: Function not implemented
I/EventHub(25738): New device: id=2, fd=136, path='/dev/input/event0', name='tegra-kbc', classes=0x1, configuration='', keyLayout='/system/usr/keylayout/tegra-kbc.kl', keyCharacterMap='/system/usr/keychars/Generic.kcm', builtinKeyboard=false, usingSuspendBlockIoctl=true, usingClockIoctl=false
D/EventHub(25738): No input device configuration file found for device 'fsa8108_sw'.
W/EventHub(25738): Unable to disable kernel key repeat for /dev/input/event6: Function not implemented
I/EventHub(25738): New device: id=3, fd=138, path='/dev/input/event6', name='fsa8108_sw', classes=0x81, configuration='', keyLayout='/system/usr/keylayout/fsa8108_sw.kl', keyCharacterMap='/system/usr/keychars/Generic.kcm', builtinKeyboard=false, usingSuspendBlockIoctl=true, usingClockIoctl=false
D/EventHub(25738): No input device configuration file found for device 'compass'.
D/EventHub(25738): No input device configuration file found for device 'proximity'.
D/EventHub(25738): No input device configuration file found for device 'lightsensor'.
D/EventHub(25738): No input device configuration file found for device 'bmp180'.
I/InputReader(25738): Device added: id=-1, name='Virtual', sources=0x00000301
I/InputReader(25738): Device added: id=3, name='fsa8108_sw', sources=0x80000101
I/InputReader(25738): Device added: id=2, name='tegra-kbc', sources=0x00000101
I/InputReader(25738): Touch device 'atmel-maxtouch' could not query the properties of its associated display. The device will be inoperable until the display size becomes available.
I/InputReader(25738): Device added: id=1, name='atmel-maxtouch', sources=0x00001103
I/InputReader(25738): Reconfiguring input devices. changes=0x00000004
I/InputReader(25738): Device reconfigured: id=1, name='atmel-maxtouch', size 1080x1920, orientation 0, mode 1, display id 0
I/PackageManager(25738): No secure containers on sdcard
D/WifiController(25738): isAirplaneModeOn = false, isWifiEnabled = false, isScanningAvailable = false
D/BluetoothTethering(25738): startMonitoring: target: Handler (com.android.server.ConnectivityService$NetworkStateTrackerHandler) {41d2e7e0}
D/BluetoothTethering(25738): startMonitoring: mCsHandler: Handler (com.android.server.ConnectivityService$NetworkStateTrackerHandler) {41d2e7e0}
D/BluetoothManagerService(25738): Message: 20
D/BluetoothManagerService(25738): Added callback: [email protected]:true
D/BluetoothManagerService(25738): Message: 30
D/Tethering(25738): Exception adding default nw to upstreamIfaceTypes: java.lang.NullPointerException
I/VolumePanel(25738): changeOverlayStyle : 1
V/nvaudio_hw(25458): nvaudio_dev_set_voice_volume : vol 0.800000
D/nvaudio_hw(25458): send volume to telephony:0.800000
D/nvaudio_modem(25458): Set modem volume to 0.800000
E/nvaudio_modem(25458): Failed to get phone service!
E/SELinux (25738): SELinux: Loaded file_contexts from /file_contexts
D/Atlas (25738): Computing best atlas configuration...
D/Atlas (25738): Running Atlas Worker #1
D/Atlas (25738): Running Atlas Worker #2
D/Atlas (25738): Running Atlas Worker #3
I/com.android.server.ThemeService(25738): Spawned worker thread
I/WindowManager(25738): SAFE MODE not enabled
V/tspdrv (25738): opened device /dev/tspdrv
V/tspdrv (25738): TSPDRV_MAGIC_NUMBER success
V/tspdrv (25738): TSPDRV_GET_NUM_ACTUATORS success, actuators = 1
F/libc (25738): invalid address or address of corrupt block 0xbed47420 passed to dlfree
F/libc (25738): Fatal signal 11 (SIGSEGV) at 0xdeadbaad (code=1), thread 25738 (system_server)
I forgot to filter the log ,sorry...
And when I am building,it always showed that: The API version is out of date,use Xlint to recomplie(In fact I am a Chinese and the massage is in Chinese,I translate it you to understand it),but the JDK version is 1.6.0.33,it is suitable to build kitkat,right?
I hope you answer,please.
Hey guys!
Any Qualcomm gurus out here?
I'm trying to get Sailfish running on my yuga. So far, not much works, thus there is nothing to share. At the moment, I'm stuck at getting my SIM card/phone to work.
As far as I've learned the ril-daemon talks to qmuxd. Stracing qmuxd, I realized that it's stuck at opening /dev/hsicctl0:
[pid 27784] open("/sys/power/wake_lock", O_WRONLY|O_APPEND|O_LARGEFILE) = 4
[pid 27784] open("/sys/power/wake_unlock", O_WRONLY|O_APPEND|O_LARGEFILE) = 5
[pid 27784] open("/sys/module/f_rmnet/parameters/rmnet_ctl_ch", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory)
[pid 27784] open("/sys/module/rmnet/parameters/rmnet_ctl_ch", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory)
[pid 27784] open("/sys/devices/virtual/smdpkt/smdcntl0/open_timeout", O_WRONLY|O_LARGEFILE) = 6
[pid 27784] write(6, "20\0", 3) = 3
[pid 27784] open("/sys/devices/virtual/hsicctl/hsicctl0/modem_wait", O_WRONLY|O_LARGEFILE) = 7
[pid 27784] write(7, "60\0", 3) = 3
[pid 27784] close(6) = 0
[pid 27784] close(7) = 0
[pid 27784] brk(0xb8cc8000) = 0xb8cc8000
[pid 27784] open("/dev/hsicctl0", O_RDWR|O_LARGEFILE <unfinished ...>
Click to expand...
Click to collapse
while on Cyanogenmod11, whose binaries are used, I get:
[pid 3110] open("/sys/power/wake_lock", O_WRONLY|O_APPEND) = 10
[pid 3110] open("/sys/power/wake_unlock", O_WRONLY|O_APPEND) = 11
[pid 3110] open("/sys/module/f_rmnet/parameters/rmnet_ctl_ch", O_RDONLY) = -1 ENOENT (No such file or directory)
[pid 3110] open("/sys/module/rmnet/parameters/rmnet_ctl_ch", O_RDONLY) = -1 ENOENT (No such file or directory)
[pid 3110] open("/sys/devices/virtual/smdpkt/smdcntl0/open_timeout", O_WRONLY) = 12
[pid 3110] write(12, "20\0", 3) = 3
[pid 3110] open("/sys/devices/virtual/hsicctl/hsicctl0/modem_wait", O_WRONLY) = 13
[pid 3110] write(13, "60\0", 3) = 3
[pid 3110] close(12) = 0
[pid 3110] close(13) = 0
[pid 3110] brk(0xb7d0b000) = 0xb7d0b000
[pid 3110] open("/dev/hsicctl0", O_RDWR) = 12
[pid 3110] mmap2(NULL, 1040384, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS|MAP_NORESERVE, -1, 0) = 0xb6b7c000
[pid 3110] madvise(0xb6b7c000, 1040384, 0xc /* MADV_??? */) = -1 EINVAL (Invalid argument)
[pid 3111] mmap2(NULL, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, 0, 0 <unfinished ...>
[pid 3110] mprotect(0xb6b7c000, 4096, PROT_NONE <unfinished ...>
[pid 3111] <... mmap2 resumed> ) = 0xb6b7a000
[pid 3110] <... mprotect resumed> ) = 0
[pid 3111] madvise(0xb6b7a000, 8192, 0xc /* MADV_??? */ <unfinished ...>
[pid 3110] clone( <unfinished ...>
[pid 3111] <... madvise resumed> ) = -1 EINVAL (Invalid argument)
Process 3112 attached
[...]
Click to expand...
Click to collapse
In the kernel log, I find:
hsicctl hsicctl0: rmnet_ctl_open: Error waiting for hsicctl0
Click to expand...
Click to collapse
What could cause this issue?
Introduction:
Simple Module To Hide The Root From Microsoft Intune Company Portal.
- After The Installation & 1st Reboot, It Hides The Rooting & Disables Itself [P.S. Disabling Itself For Some Versions]
- Enabling This Module From Magisk Manager = Doing Its Functionality & Disabling Itself (Next Reboot) [P.S. Disabling Itself For Some Versions]
Current Version: 0.1.3.3
- Magisk Hide Must Be Working Properly Which Is A Main Point To Use The Module
- Passing SafetyNet Means Also Magisk Hide Is Working So Check The General Steps
- In Case Of Facing Some Issues Such SIM Doesn't Work, Data Doesn't Work Or Phone Doesn't Go In Deep Sleep/Sleep Mode, Remove Google Play Services, Google Play Store, Google Services Framework, Phone Apps & Phone Services From The List Of Magisk Hide (Magisk Manager --> Magisk Hide --> Disable The Mentioned Apps) Then Reboot
- It Is Recommended To Clear MagiskHideList Including Each App/Activity/Process Before Flashing Using The Module Of ClearHideList4Magisk From This Thread https://forum.xda-developers.com/apps/magisk/module-hide-list-bootloop-bootscreen-t3849208[/STRIKE]
- The Module Of IntuneHider4Magisk Is Changed To Be A File Of HideList Of IntuneHider4Magisk Which Needs The Main Module Of MultiFunctionsPlus & The Details Are Mentioned In The Below Installation Guide
Created: Apr.12.2018
Updated: June.12.2019
Download Link: Click Here (To Ensure That The Module Will Work Properly, Kindly Do What Are Mentioned In The General Steps)
- For HideList Which Is Ended Its Name With v1300, It Supports Magisk v13.1(1310) To v13.6(1360)
- For HideList Which Is Ended Its Name With v1400, It Supports Magisk v14.0(1400) To v15.3(1531)
- For HideList Which Is Ended Its Name With v1500, It Supports Magisk v15.0(1500) To v17.3(17300)
- For HideList Which Is Ended Its Name With v17000, It Supports Magisk v17.0(17000) To v17.3(17300)
- For HideList Which Is Ended Its Name With v18000, It Supports Magisk v18.0(18000) To v18.1(18100)
- For HideList Which Is Ended Its Name With v19000, It Supports Magisk v19.0(19000) To The Latest Version
Installation:
- The Module Of IntuneHider4Magisk Is Changed To Be A File Of HideList Of IntuneHider4Magisk Which Needs The Main Module Of MultiFunctionsPlus So Check This Post https://forum.xda-developers.com/ap...t-intune-company-portal-t3780451/post80981237 (The Old One https://forum.xda-developers.com/ap...t-intune-company-portal-t3780451/post79716483)
- Magisk Manager --> Modules --> Add (+) --> Choose The Downloaded File --> Reboot
- Or Flash It Thru TWRP Recovery
Magisk Hide:
- Intune Will Be Added Automatically To The List Of Magisk Hide
- Some Apps Will Be Added Automatically To The List Of Magisk Hide Such As Google Play Services, Google Play Store, Google Services Framework, Phone Apps, Phone Services, Gmail, Microsoft Outlook & Microsoft Authenticator
Recommendation:
- Check The General Steps From This Post https://forum.xda-developers.com/ap...t-intune-company-portal-t3780451/post76817261
- In-Case Of Failure, Check This Post https://forum.xda-developers.com/ap...t-intune-company-portal-t3780451/post76606993
- For Passing SafetyNet & Certifying The Device, Check This Post https://forum.xda-developers.com/ap...playstore-services-data-t3789498/post76682978
Beta Version:
- Check This Post https://forum.xda-developers.com/ap...module-safe-mode-bootloop-bootscreen-t3847422 Then Flash It Thru TWRP Recovery
- In-Case Of Facing A Bootloop/Bootscreen/Blackscreen Issue Due To Adding App/Activity/Process To Magisk Hide, Download ClearHideList4Magisk From This Thread https://forum.xda-developers.com/apps/magisk/module-hide-list-bootloop-bootscreen-t3849208 Then Flash It Thru TWRP Recovery
- In-Case Of Facing A Bootloop/Bootscreen/Blackscreen Issue Due To Flashing A Module, Download CoreOnlyMode4Magisk From This Thread https://forum.xda-developers.com/apps/magisk/module-core-mode-bootloop-solver-modules-t3817366 Then Flash It Thru TWRP Recovery
Click On Thanks Button If The Module/Post Is Useful (Dreamer(3MF))
>>> Sharing A Good Thought Is Gold <<<
----------------------------------------------------------------------------------------------------------------
SELinux Mode Inverter - Device Spoofing Tool - Core Only Mode - Other Modules
----------------------------------------------------------------------------------------------------------------
P.S. You Can Update Intune App As You Want Without Any Effect On The Module Unless The Changes Of Intune App Are Related To The Root Detection. But Everyone Here Will Help Us To Figure Out The Solution.
----------------------------------------------------------------------------------------------------------------
The Old Thread (Microsoft Intune Company Portal)
----------------------------------------------------------------------------------------------------------------
Reserved for News/Updates #1
Working perfectly! Thanks.
Sent from my A0001 using Tapatalk
Updated IntuneHider4Magisk To v0.1.2!
Changelog: Adding Phone App To Magisk Hide List Which Causes Problems To Intune For Some Roms.
Doesn't work! :crying: I've made all the steps, and the intune app continues with the massage that que phone is with root. Can you help? I'am with Oreo 8.1.0
Arenga said:
Doesn't work! :crying: I've made all the steps, and the intune app continues with the massage that que phone is with root. Can you help? I'am with Oreo 8.1.0
Click to expand...
Click to collapse
Send Your Answer For The Following
- Did Your Phone Pass The SafetyNet?
- Did You Installed BusyBox/Xposed? And If So, Disable/Uninstall BusyBox/Xposed.
- Try This Module SELinuxModeInverter4Magisk-v1.0.2(v1500)(3MF).zip.
- Full Logcat Is Required.
Dreamer(3MF) said:
Send Your Answer For The Following
- Did Your Phone Pass The SafetyNet? -> yes
- Did You Installed BusyBox/Xposed? And If So, Disable/Uninstall BusyBox/Xposed. -> no
- Try This Module SELinuxModeInverter4Magisk-v1.0.2(v1500)(3MF).zip. -> when i install, the phone doesn't start
- Full Logcat Is Required.
Click to expand...
Click to collapse
Log (i've change my name, and change company name ):
I/BeaconBle( 6123): ZERO_POWER is disabled.
I/BeaconBle( 6123): 'L' hardware scan: scan stopped, no powered clients
I/BeaconBle( 6123): Places requested to stop scan
I/BeaconBle( 6123): Scan canceled successfully.
I/PlaceInferenceEngine( 6123): [anon] Changed inference mode: 0
I/ActivityManager( 1887): Killing 23835:com.microsoft.windowsintune.companyportal:auth/u0a96 (adj 906): empty #17
W/system_server( 1887): kill(-23835, 9) failed: No such process
I/chatty ( 1887): uid=1000(system) ActivityManager identical 1 line
W/system_server( 1887): kill(-23835, 9) failed: No such process
I/system_server( 1887): Successfully killed process cgroup uid 10096 pid 23835 in 83ms
D/FastDormancyService( 9217): detect mobile data activity! isAlarmExpired: false mFDset: 3
D/FastDormancyService( 9217): sent:0 received:0
W/QCNEJ ( 5269): |CORE| CNE received unexpected action: android.intent.action.BATTERY_CHANGED
D/FastDormancyService( 9217): detect mobile data activity! isAlarmExpired: false mFDset: 3
D/FastDormancyService( 9217): sent:0 received:0
D/ClClient(16615): Not sending keepalive. Current connection state=STOPPED
D/FastDormancyService( 9217): detect mobile data activity! isAlarmExpired: false mFDset: 3
D/FastDormancyService( 9217): sent:0 received:0
I/EventLogSendingHelper( 6108): Sending log events.
D/FastDormancyService( 9217): detect mobile data activity! isAlarmExpired: false mFDset: 3
D/FastDormancyService( 9217): sent:0 received:0
D/LocalAlarmBroadcastReceiver( 7939): Received broadcast: Heartbeat
E/ActivityManager( 1887): Sending non-protected broadcast FDAlarmExpiry from system uid 1000 pkg com.qualcomm.fastdormancy
E/ActivityManager( 1887): java.lang.Throwable
E/ActivityManager( 1887): at com.android.server.am.ActivityManagerService.checkBroadcastFromSystem(ActivityManagerService.java:19096)
E/ActivityManager( 1887): at com.android.server.am.ActivityManagerService.broadcastIntentLocked(ActivityManagerService.java:19696)
E/ActivityManager( 1887): at com.android.server.am.ActivityManagerService.broadcastIntentInPackage(ActivityManagerService.java:19860)
E/ActivityManager( 1887): at com.android.server.am.PendingIntentRecord.sendInner(PendingIntentRecord.java:357)
E/ActivityManager( 1887): at com.android.server.am.PendingIntentRecord.sendWithResult(PendingIntentRecord.java:240)
E/ActivityManager( 1887): at com.android.server.am.ActivityManagerService.sendIntentSender(ActivityManagerService.java:7729)
E/ActivityManager( 1887): at android.app.PendingIntent.send(PendingIntent.java:874)
E/ActivityManager( 1887): at com.android.server.AlarmManagerService$DeliveryTracker.deliverLocked(AlarmManagerService.java:3137)
E/ActivityManager( 1887): at com.android.server.AlarmManagerService.deliverAlarmsLocked(AlarmManagerService.java:2534)
E/ActivityManager( 1887): at com.android.server.AlarmManagerService$AlarmThread.run(AlarmManagerService.java:2657)
D/HeartbeatModule( 7939): Updating heartbeat: 2018-04-22T19:44:25.860+01:00
D/FastDormancyService( 9217): detect mobile data activity! isAlarmExpired: true mFDset: 3
D/FastDormancyService( 9217): sent:0 received:0
D/FastDormancyService( 9217): enter dormancy
D/QcrilMsgTunnelIfaceManager( 9227): handleMessage what = 1
D/QcrilMsgTunnelSocket( 9227): [1036] > OEM_HOOK_RAW[514f454d484f4f4b0300080000000000]
D/QcrilMsgTunnelSocket( 9227): readRilMessage: Buffer = [[email protected] HexData = [000000000c04000000000000ffffffff]
D/QcrilMsgTunnelSocket( 9227): Rcvd SOLICITED response with 12 bytes data for SUB0
D/QcrilMsgTunnelSocket( 9227): [1036] < OEM_HOOK_RAW [null]
D/LocalAlarmBroadcastReceiver( 7939): Received broadcast: OTGLocationPermissionCheck
D/QcrilMsgTunnelIfaceManager( 9227): handleMessage what = 2
I/MSM-irqbalance( 1755): Decided to move IRQ115 from CPU2 to CPU0
I/ThermalEngine( 1525): ACTION: GPU - Setting GPU[0] to 630000000
W/QCNEJ ( 5269): |CORE| CNE received unexpected action: android.intent.action.BATTERY_CHANGED
D/FastDormancyService( 9217): detect mobile data activity! isAlarmExpired: false mFDset: 1
D/FastDormancyService( 9217): scheduling timer:1000ms Alarm:15000ms
D/FastDormancyService( 9217): detect mobile data activity! isAlarmExpired: false mFDset: 3
D/FastDormancyService( 9217): sent:1 received:1
D/FastDormancyService( 9217): scheduling timer:1000ms Alarm:15000ms
I/ActivityManager( 1887): START u0 {flg=0x10804000 cmp=com.android.systemui/.recents.RecentsActivity} from uid 10030
I/RenderThread( 5213): type=1400 audit(0.0:2317): avc: denied { read write } for uid=10030 path="/dev/kgsl-3d0" dev="tmpfs" ino=11806 scontext=u:rlatform_app:s0:c512,c768 tcontext=ubject_r:device:s0 tclass=chr_file permissive=1
E/BufferItemConsumer( 4967): [unnamed-4967-70] Failed to release buffer: Unknown error -1 (1)
E/BufferItemConsumer( 4967): [unnamed-4967-71] Failed to release buffer: Unknown error -1 (1)
I/GoogleInputMethod( 4945): onFinishInput() : Dummy InputConnection bound
I/GoogleInputMethod( 4945): onStartInput() : Dummy InputConnection bound
I/surfaceflinger( 405): type=1400 audit(0.0:2318): avc: denied { read write } for uid=1000 path="/dev/kgsl-3d0" dev="tmpfs" ino=11806 scontext=u:r:surfaceflinger:s0 tcontext=ubject_r:device:s0 tclass=chr_file permissive=1
I/MSM-irqbalance( 1755): Decided to move IRQ188 from CPU2 to CPU0
I/OpenGLRenderer( 1887): Initialized EGL, version 1.4
D/OpenGLRenderer( 1887): Swap behavior 2
I/RenderThread( 8668): type=1400 audit(0.0:2319): avc: denied { read write } for uid=1000 path="/dev/kgsl-3d0" dev="tmpfs" ino=11806 scontext=u:r:system_server:s0 tcontext=ubject_r:device:s0 tclass=chr_file permissive=1
D/Magisk ( 354): su: return code: [0]
I/zygote64( 1887): NativeAlloc concurrent copying GC freed 28157(1587KB) AllocSpace objects, 8(224KB) LOS objects, 42% free, 22MB/39MB, paused 296us total 154.621ms
I/ogle.android.gm(26009): type=1400 audit(0.0:2320): avc: denied { read } for uid=10112 name="vmstat" dev="proc" ino=4026547632 scontext=u:r:untrusted_app:s0:c512,c768 tcontext=ubject_rroc:s0 tclass=file permissive=1
I/ogle.android.gm(26009): type=1400 audit(0.0:2321): avc: denied { open } for uid=10112 path="/proc/vmstat" dev="proc" ino=4026547632 scontext=u:r:untrusted_app:s0:c512,c768 tcontext=ubject_rroc:s0 tclass=file permissive=1
I/ogle.android.gm(26009): type=1400 audit(0.0:2322): avc: denied { getattr } for uid=10112 path="/proc/vmstat" dev="proc" ino=4026547632 scontext=u:r:untrusted_app:s0:c512,c768 tcontext=ubject_rroc:s0 tclass=file permissive=1
D/audio_hw_primary( 1535): start_output_stream: enter: stream(0xe8e08000)usecase(1: low-latency-playback) devices(0x2)
D/audio_hw_primary( 1535): select_devices: out_snd_device(2: speaker) in_snd_device(0: )
W/msm8974_platform( 1535): Codec backend bitwidth 16, samplerate 48000
I/writer ( 6402): type=1400 audit(0.0:2323): avc: denied { write } for uid=1041 name="mpctl" dev="dm-0" ino=1147580 scontext=u:r:audioserver:s0 tcontext=ubject_r:system_data_file:s0 tclass=sock_file permissive=1
D/hardware_info( 1535): hw_info_append_hw_type : device_name = speaker
D/audio_hw_primary( 1535): enable_snd_device: snd_device(2: speaker)
D/audio_route( 1535): Apply path: speaker
I/audio_hw_primary( 1535): select_devices Selected apptype: 69937
D/ACDB-LOADER( 1535): ACDB -> send_audio_cal, acdb_id = 81, path = 0
D/ACDB-LOADER( 1535): ACDB -> AUDIO_SET_AUDPROC_VOL_CAL
D/ACDB-LOADER( 1535): ACDB -> send_hw_delay : acdb_id = 81 path = 0
I/writer ( 6402): type=1400 audit(0.0:2324): avc: denied { connectto } for uid=1041 path="/data/misc/perfd/mpctl" scontext=u:r:audioserver:s0 tcontext=u:r:init:s0 tclass=unix_stream_socket permissive=1
I/audio_hw_utils( 1535): audio_extn_utils_send_app_type_cfg app_type 69937, acdb_dev_id 81, sample_rate 48000
I/writer ( 6402): type=1400 audit(0.0:2325): avc: denied { ioctl } for uid=1041 path="/dev/msm_audio_cal" dev="tmpfs" ino=10537 ioctlcmd=61cb scontext=u:r:audioserver:s0 tcontext=ubject_r:device:s0 tclass=chr_file permissive=1
D/audio_hw_primary( 1535): enable_audio_route: apply mixer and update path: low-latency-playback speaker
D/audio_route( 1535): Apply path: low-latency-playback speaker
D/audio_hw_primary( 1535): select_devices: done
D/msm8974_platform( 1535): platform_set_channel_map mixer_ctl_namelayback Channel Map15
D/msm8974_platform( 1535): platform_set_channel_map: set mapping(1 2 0 0 0 0 0 0) for channel:2
D/FastDormancyService( 9217): detect mobile data activity! isAlarmExpired: false mFDset: 3
D/FastDormancyService( 9217): sent:0 received:0
E/BufferItemConsumer( 4967): [unnamed-4967-72] Failed to release buffer: Unknown error -1 (1)
D/audio_hw_primary( 1535): start_output_stream: exit
E/BufferItemConsumer( 4967): [unnamed-4967-73] Failed to release buffer: Unknown error -1 (1)
I/zygote64(23509): Waiting for a blocking GC ProfileSaver
I/GoogleInputMethod( 4945): onFinishInput() : Dummy InputConnection bound
I/GoogleInputMethod( 4945): onStartInput() : Dummy InputConnection bound
I/zygote64(23509): WaitForGcToComplete blocked ProfileSaver on ProfileSaver for 28.630ms
I/GoogleInputMethod( 4945): onFinishInput() : Dummy InputConnection bound
I/GoogleInputMethod( 4945): onStartInput() : Dummy InputConnection bound
W/StaticLayout(23509): maxLineHeight should not be -1. maxLines:1 lineCount:1
W/StaticLayout(23509): maxLineHeight should not be -1. maxLines:1 lineCount:1
I/zygote64( 4967): Explicit concurrent copying GC freed 1765(138KB) AllocSpace objects, 0(0B) LOS objects, 49% free, 6MB/13MB, paused 270us total 74.320ms
W/szl (26009): Already started: [email protected]
I/zygote64(26009): Deoptimizing rtj rtj.a(java.util.Collection) due to JIT inline cache
D/FastDormancyService( 9217): detect mobile data activity! isAlarmExpired: false mFDset: 3
D/FastDormancyService( 9217): sent:0 received:0
I/ActivityManager( 1887): START u0 {cmp=com.microsoft.windowsintune.companyportal/.views.ComplianceCheckActivity (has extras)} from uid 10096
D/ClClient(16615): Not sending keepalive. Current connection state=STOPPED
I/GoogleInputMethod( 4945): onFinishInput() : Dummy InputConnection bound
I/GoogleInputMethod( 4945): onStartInput() : Dummy InputConnection bound
I/ActivityManager( 1887): Displayed com.microsoft.windowsintune.companyportal/.views.ComplianceCheckActivity: +85ms
D/OpenGLRenderer(23509): endAllActiveAnimators on 0x75b464f800 (RippleDrawable) with handle 0x75c8aa0000
D/FastDormancyService( 9217): detect mobile data activity! isAlarmExpired: false mFDset: 3
D/FastDormancyService( 9217): sent:0 received:0
W/QCNEJ ( 5269): |CORE| CNE received unexpected action: android.intent.action.BATTERY_CHANGED
I/DeviceScanner( 6485): [MDNS] Received response from "Sala de estar" (0f7a6b147237ea81a321f2f37ae8053c) with result "0 No change"
W/MdnsDeviceScannerEntry( 6485): Invalid remote control notifications enabled status; 0
I/DeviceScanner( 6485): [MDNS] Received response from "coluna" (4b3514dd4e5eba9250b034c60b1a8312) with result "0 No change"
W/MdnsDeviceScannerEntry( 6485): Invalid remote control notifications enabled status; 0
I/DeviceScanner( 6485): [MDNS] Received response from "coluna" (4b3514dd4e5eba9250b034c60b1a8312) with result "0 No change"
I/ActivityManager( 1887): Start proc 27005:com.microsoft.windowsintune.companyportal:auth/u0a96 for service com.microsoft.windowsintune.companyportal/com.microsoft.workaccount.authenticatorservice.AuthenticatorService
I/Magisk ( 354): proc_monitor: com.microsoft.windowsintune.companyportal:auth (PID=27005 ns=mnt:[4026548895])
D/Magisk (27015): hide_daemon: start unmount for pid=[27005]
I/Magisk (27015): hide_daemon: Permissive detected, hide the state
D/Magisk (27015): hide_utils: Cleaning magisk props
D/Magisk (27015): hide_daemon: Unmounted (/sbin)
I/MultiDex(27005): VM with version 2.1.0 has multidex support
I/MultiDex(27005): Installing application
I/MultiDex(27005): VM has multidex support, MultiDex support library is disabled.
I/DeploymentSettings(27005): Loading settings file from /data/user/0/com.microsoft.windowsintune.companyportal/files/settings.xml failed because it probably wasnt created yet. Loading the settings file from the application binary resources instead.
I/RenderThread(23595): type=1400 audit(0.0:2326): avc: denied { ioctl } for uid=10096 path="/dev/kgsl-3d0" dev="tmpfs" ino=11806 ioctlcmd=93d scontext=u:r:untrusted_app:s0:c512,c768 tcontext=ubject_r:device:s0 tclass=chr_file permissive=1
I/zygote64(27005): Do partial code cache collection, code=14KB, data=10KB
I/zygote64(27005): After code cache collection, code=11KB, data=9KB
I/zygote64(27005): Increasing code cache capacity to 128KB
I/zygote64(27005): Deoptimizing void org.apache.harmony.xml.parsers.DocumentBuilderImpl.parse(org.kxml2.io.KXmlParser, org.apache.harmony.xml.dom.DocumentImpl, org.w3c.dom.Node, int) due to JIT inline cache
I/zygote64(27005): Deoptimizing void org.apache.harmony.xml.parsers.DocumentBuilderImpl.appendText(org.apache.harmony.xml.dom.DocumentImpl, org.w3c.dom.Node, int, java.lang.String) due to JIT inline cache
I/RenderThread(23595): type=1400 audit(0.0:2327): avc: denied { read write } for uid=10096 path="/dev/kgsl-3d0" dev="tmpfs" ino=11806 scontext=u:r:untrusted_app:s0:c512,c768 tcontext=ubject_r:device:s0 tclass=chr_file permissive=1
I/WebViewFactory(27005): Loading com.android.chrome version 65.0.3325.109 (code 332510952)
I/cr_LibraryLoader(27005): Time to load native libraries: 7 ms (timestamps 7587-7594)
I/chromium(27005): [INFO:library_loader_hooks.cc(36)] Chromium logging enabled: level = 0, default verbosity = 0
I/cr_LibraryLoader(27005): Expected native library version number "65.0.3325.109", actual native library version number "65.0.3325.109"
D/NetworkSecurityConfig(27005): No Network Security Config specified, using platform default
D/FastDormancyService( 9217): detect mobile data activity! isAlarmExpired: false mFDset: 3
D/FastDormancyService( 9217): sent:0 received:0
I/unknown (26982): type=1400 audit(0.0:2328): avc: denied { write } for uid=0 comm=504F5349582074696D657220313034 name="mpctl" dev="dm-0" ino=1147580 scontext=u:r:init:s0 tcontext=ubject_r:system_data_file:s0 tclass=sock_file permissive=1
I/sensors.qcom(27032): type=1400 audit(0.0:2329): avc: denied { ioctl } for uid=0 path="/dev/sensors" dev="tmpfs" ino=11809 ioctlcmd=6403 scontext=u:r:init:s0 tcontext=ubject_r:device:s0 tclass=chr_file permissive=1
I/cnss-daemon( 1580): type=1400 audit(0.0:2330): avc: denied { read } for uid=1000 scontext=u:r:init:s0 tcontext=u:r:init:s0 tclass=netlink_socket permissive=1
D/CryptdConnector( 1887): SND -> {75 cryptfs getpwtype}
D/VoldCryptCmdListener( 362): cryptfs getpwtype
I/vold ( 366): type=1400 audit(0.0:2331): avc: denied { read write } for uid=0 name="mmcblk0p43" dev="tmpfs" ino=12459 scontext=u:r:vold:s0 tcontext=ubject_r:block_device:s0 tclass=blk_file permissive=1
D/CryptdConnector( 1887): RCV <- {213 75 pin}
I/vold ( 366): type=1400 audit(0.0:2332): avc: denied { open } for uid=0 path="/dev/block/mmcblk0p43" dev="tmpfs" ino=12459 scontext=u:r:vold:s0 tcontext=ubject_r:block_device:s0 tclass=blk_file permissive=1
I/vold ( 366): type=1400 audit(0.0:2333): avc: denied { getattr } for uid=0 path="/dev/block/mmcblk0p43" dev="tmpfs" ino=12459 scontext=u:r:vold:s0 tcontext=ubject_r:block_device:s0 tclass=blk_file permissive=1
I/keystore( 1539): type=1400 audit(0.0:2334): avc: denied { ioctl } for uid=1017 path="/dev/qseecom" dev="tmpfs" ino=12494 ioctlcmd=9703 scontext=u:r:keystore:s0 tcontext=ubject_r:device:s0 tclass=chr_file permissive=1
E/keymaster1_device( 1539): Len returned is < 0 len = 0
I/keystore( 1539): del USRPKEY_EnrollmentTelemetryKey 10096
I/sensors.qcom( 6052): type=1400 audit(0.0:2335): avc: denied { read } for uid=9999 scontext=u:r:init:s0 tcontext=u:r:init:s0 tclass=socket permissive=1
I/keystore( 1539): del USRSKEY_EnrollmentTelemetryKey 10096
I/keystore( 1539): del USRCERT_EnrollmentTelemetryKey 10096
I/keystore( 1539): del CACERT_EnrollmentTelemetryKey 10096
D/DrmLibTime( 413): got the req here! ret=0
D/DrmLibTime( 413): command id, time_cmd_id = 770
D/DrmLibTime( 413): time_getutcsec starts!
D/DrmLibTime( 413): QSEE Time Listener: time_getutcsec
D/DrmLibTime( 413): QSEE Time Listener: get_utc_seconds
D/DrmLibTime( 413): QSEE Time Listener: time_get_modem_time
D/DrmLibTime( 413): QSEE Time Listener: Checking if ATS_MODEM is set or not.
D/QC-time-services( 413): Lib:time_genoff_operation: pargs->base = 13
D/QC-time-services( 413): Lib:time_genoff_operation: pargs->operation = 2
D/QC-time-services( 413): Lib:time_genoff_operation: pargs->ts_val = 0
D/QC-time-services( 1572): Daemon: Connection accepted:time_genoff
D/QC-time-services( 413): Lib:time_genoff_operation: Send to server passed!!
D/QC-time-services( 1572): Daemon:Received base = 13, unit = 1, operation = 2,value = 0
D/QC-time-services( 1572): Daemon:genoff_opr: Base = 13, val = 0, operation = 2
D/QC-time-services( 1572): offset is: 1 for base: 13
E/QC-time-services( 1572): Daemon: Time-services: Waiting to acceptconnection
E/QC-time-services( 413): Receive Passed == base = 13, unit = 1, operation = 2, result = 0
D/DrmLibTime( 413): QSEE Time Listener: ATS_MODEM is set. Try to retrieve it.
D/QC-time-services( 1572): Daemon: Connection accepted:time_genoff
D/QC-time-services( 1572): Daemon:Received base = 13, unit = 1, operation = 1,value = 0
D/QC-time-services( 1572): Daemon:genoff_opr: Base = 13, val = 0, operation = 1
D/QC-time-services( 1572): Daemon: genoff get for 13
D/QC-time-services( 1572): Daemon:rtc_get: Time read from RTC -- MM/DD/YY HH:MM:SS7/23/70 6:18:13
D/QC-time-services( 1572): Daemon:Value read from RTC seconds = 20240293000
D/QC-time-services( 1572): Daemon:Value read from generic offset = 1504182383000
D/QC-time-services( 1572): Daemon:Final Time = 1524422676000
E/QC-time-services( 1572): Daemon: Time-services: Waiting to acceptconnection
D/DrmLibTime( 413): QSEE Time Listener: Time GenOff - seconds: 1524422676
D/DrmLibTime( 413): time_getutcsec returns 0, sec = 1524422676; nsec = 0
W/time_daemon(27046): type=1400 audit(0.0:2336): avc: granted { read } for uid=1000 name="rtc0" dev="tmpfs" ino=11805 scontext=u:r:init:s0 tcontext=ubject_r:rtc_device:s0 tclass=chr_file
D/DrmLibTime( 413): time_getutcsec finished!
W/time_daemon(27046): type=1400 audit(0.0:2337): avc: granted { read open } for uid=1000 path="/dev/rtc0" dev="tmpfs" ino=11805 scontext=u:r:init:s0 tcontext=ubject_r:rtc_device:s0 tclass=chr_file
I/time_daemon(27046): type=1400 audit(0.0:2338): avc: denied { ioctl } for uid=1000 path="/dev/rtc0" dev="tmpfs" ino=11805 ioctlcmd=7009 scontext=u:r:init:s0 tcontext=ubject_r:rtc_device:s0 tclass=chr_file permissive=1
D/DrmLibTime( 413): iotcl_continue_command finished! and return 0
D/DrmLibTime( 413): before calling ioctl to read the next time_cmd
E/keymaster1_device( 1539): Len returned is < 0 len = 0
I/chatty ( 1539): uid=1017(keystore) /system/bin/keystore identical 1 line
E/keymaster1_device( 1539): Len returned is < 0 len = 0
I/zygote64(23529): Waiting for a blocking GC ProfileSaver
D/FastDormancyService( 9217): detect mobile data activity! isAlarmExpired: false mFDset: 3
D/FastDormancyService( 9217): sent:0 received:0
D/WifiPermissionsUtil( 1887): Denied: no location permission
D/WifiPermissionsUtil( 1887): Denied: The current config is not for an open network.
D/WifiPermissionsUtil( 1887): Denied: no location permission
D/WifiPermissionsUtil( 1887): Denied: The current config is not for an open network.
D/audio_hw_primary( 1535): out_standby: enter: stream (0xe8e08000) usecase(1: low-latency-playback)
I/zygote64(23529): WaitForGcToComplete blocked ProfileSaver on HeapTrim for 272.496ms
D/audio_hw_primary( 1535): disable_audio_route: reset and update mixer path: low-latency-playback speaker
D/hardware_info( 1535): hw_info_append_hw_type : device_name = speaker
D/audio_hw_primary( 1535): disable_snd_device: snd_device(2: speaker)
I/MSM-irqbalance( 1755): Decided to move IRQ224 from CPU0 to CPU1
I/qmuxd ( 2004): type=1400 audit(0.0:2339): avc: denied { block_suspend } for uid=1001 capability=36 scontext=u:r:init:s0 tcontext=u:r:init:s0 tclass=capability2 permissive=1
I/me.twrp.twrpapp( 9279): type=1400 audit(0.0:2340): avc: denied { read } for uid=10037 name="stat" dev="proc" ino=4026547645 scontext=u:rriv_app:s0:c512,c768 tcontext=ubject_rroc_stat:s0 tclass=file permissive=1
I/me.twrp.twrpapp( 9279): type=1400 audit(0.0:2341): avc: denied { open } for uid=10037 path="/proc/stat" dev="proc" ino=4026547645 scontext=u:rriv_app:s0:c512,c768 tcontext=ubject_rroc_stat:s0 tclass=file permissive=1
I/me.twrp.twrpapp( 9279): type=1400 audit(0.0:2342): avc: denied { getattr } for uid=10037 path="/proc/stat" dev="proc" ino=4026547645 scontext=u:rriv_app:s0:c512,c768 tcontext=ubject_rroc_stat:s0 tclass=file permissive=1
D/FastDormancyService( 9217): detect mobile data activity! isAlarmExpired: false mFDset: 3
D/FastDormancyService( 9217): sent:0 received:0
D/CompanyPortal-Volley(23509): [660] Request.finish: 3851 ms: [ ] https://fef.msua01.manage.microsoft...ion=8.1.0&os-sub=None&arch=ARM&mgmt-agent=Mdm 0x6e0db4ac NORMAL 86
I/zygote64(23529): Deoptimizing void org.spongycastle.asn1.DERSequence.encode(org.spongycastle.asn1.ASN1OutputStream) due to JIT inline cache
I/keystore( 1539): del USRPKEY_EscrowedKeyProtector 10096
I/keystore( 1539): del USRSKEY_EscrowedKeyProtector 10096
I/keystore( 1539): del USRCERT_EscrowedKeyProtector 10096
I/keystore( 1539): del CACERT_EscrowedKeyProtector 10096
D/DrmLibTime( 413): got the req here! ret=0
D/DrmLibTime( 413): command id, time_cmd_id = 770
D/DrmLibTime( 413): time_getutcsec starts!
D/DrmLibTime( 413): QSEE Time Listener: time_getutcsec
D/DrmLibTime( 413): QSEE Time Listener: get_utc_seconds
D/DrmLibTime( 413): QSEE Time Listener: time_get_modem_time
D/DrmLibTime( 413): QSEE Time Listener: Checking if ATS_MODEM is set or not.
D/QC-time-services( 413): Lib:time_genoff_operation: pargs->base = 13
D/QC-time-services( 413): Lib:time_genoff_operation: pargs->operation = 2
D/QC-time-services( 413): Lib:time_genoff_operation: pargs->ts_val = 0
D/QC-time-services( 1572): Daemon: Connection accepted:time_genoff
D/QC-time-services( 413): Lib:time_genoff_operation: Send to server passed!!
D/QC-time-services( 1572): Daemon:Received base = 13, unit = 1, operation = 2,value = 0
W/time_daemon(27055): type=1400 audit(0.0:2343): avc: granted { read } for uid=1000 name="rtc0" dev="tmpfs" ino=11805 scontext=u:r:init:s0 tcontext=ubject_r:rtc_device:s0 tclass=chr_file
D/QC-time-services( 1572): Daemon:genoff_opr: Base = 13, val = 0, operation = 2
D/QC-time-services( 1572): offset is: 1 for base: 13
E/QC-time-services( 413): Receive Passed == base = 13, unit = 1, operation = 2, result = 0
D/DrmLibTime( 413): QSEE Time Listener: ATS_MODEM is set. Try to retrieve it.
E/QC-time-services( 1572): Daemon: Time-services: Waiting to acceptconnection
D/QC-time-services( 1572): Daemon: Connection accepted:time_genoff
D/QC-time-services( 1572): Daemon:Received base = 13, unit = 1, operation = 1,value = 0
D/QC-time-services( 1572): Daemon:genoff_opr: Base = 13, val = 0, operation = 1
D/QC-time-services( 1572): Daemon: genoff get for 13
D/QC-time-services( 1572): Daemon:rtc_get: Time read from RTC -- MM/DD/YY HH:MM:SS7/23/70 6:18:14
D/QC-time-services( 1572): Daemon:Value read from RTC seconds = 20240294000
D/QC-time-services( 1572): Daemon:Value read from generic offset = 1504182383000
D/QC-time-services( 1572): Daemon:Final Time = 1524422677000
D/DrmLibTime( 413): QSEE Time Listener: Time GenOff - seconds: 1524422677
D/DrmLibTime( 413): time_getutcsec returns 0, sec = 1524422677; nsec = 0
D/DrmLibTime( 413): time_getutcsec finished!
D/DrmLibTime( 413): iotcl_continue_command finished! and return 0
D/DrmLibTime( 413): before calling ioctl to read the next time_cmd
E/QC-time-services( 1572): Daemon: Time-services: Waiting to acceptconnection
W/time_daemon(27055): type=1400 audit(0.0:2344): avc: granted { read open } for uid=1000 path="/dev/rtc0" dev="tmpfs" ino=11805 scontext=u:r:init:s0 tcontext=ubject_r:rtc_device:s0 tclass=chr_file
E/keymaster1_device( 1539): Len returned is < 0 len = 0
D/FastDormancyService( 9217): detect mobile data activity! isAlarmExpired: false mFDset: 3
D/FastDormancyService( 9217): sent:0 received:0
D/FastDormancyService( 9217): detect mobile data activity! isAlarmExpired: false mFDset: 3
D/FastDormancyService( 9217): sent:0 received:0
D/FastDormancyService( 9217): detect mobile data activity! isAlarmExpired: false mFDset: 3
D/FastDormancyService( 9217): sent:1 received:1
D/FastDormancyService( 9217): scheduling timer:1000ms Alarm:15000ms
W/QCNEJ ( 5269): |CORE| CNE received unexpected action: android.intent.action.BATTERY_CHANGED
I/RenderThread( 5213): type=1400 audit(0.0:2345): avc: denied { ioctl } for uid=10030 path="/dev/kgsl-3d0" dev="tmpfs" ino=11806 ioctlcmd=93d scontext=u:rlatform_app:s0:c512,c768 tcontext=ubject_r:device:s0 tclass=chr_file permissive=1
W/GCM ( 6123): Force release of GOOGLE_C2DM lock
D/FastDormancyService( 9217): detect mobile data activity! isAlarmExpired: false mFDset: 3
D/FastDormancyService( 9217): sent:0 received:0
D/CryptdConnector( 1887): SND -> {76 cryptfs getpwtype}
D/VoldCryptCmdListener( 362): cryptfs getpwtype
D/CryptdConnector( 1887): RCV <- {213 76 pin}
I/MSM-irqbalance( 1755): Decided to move IRQ188 from CPU0 to CPU1
D/FastDormancyService( 9217): detect mobile data activity! isAlarmExpired: false mFDset: 3
D/FastDormancyService( 9217): sent:0 received:0
D/FastDormancyService( 9217): detect mobile data activity! isAlarmExpired: false mFDset: 3
D/FastDormancyService( 9217): sent:0 received:0
D/ClClient(16615): Not sending keepalive. Current connection state=STOPPED
D/FastDormancyService( 9217): detect mobile data activity! isAlarmExpired: false mFDset: 3
D/FastDormancyService( 9217): sent:0 received:0
D/CryptdConnector( 1887): SND -> {77 cryptfs getpwtype}
D/VoldCryptCmdListener( 362): cryptfs getpwtype
D/CryptdConnector( 1887): RCV <- {213 77 pin}
W/EnhancedIntentService(23509): Service took too long to process intent: com.google.android.c2dm.intent.RECEIVE App may get closed.
I/zygote64(23529): Background concurrent copying GC freed 31866(2MB) AllocSpace objects, 3(60KB) LOS objects, 63% free, 3MB/9MB, paused 173us total 114.168ms
D/FastDormancyService( 9217): detect mobile data activity! isAlarmExpired: false mFDset: 3
Arenga said:
Log (i've change my name, and change company name ):
Click to expand...
Click to collapse
Try The Following Steps
- Uninstall Magisk
- Install The Patched Binary
- Install The Module
Dreamer(3MF) said:
Try The Following Steps
- Uninstall Magisk
- Install The Patched Binary
- Install The Module
Click to expand...
Click to collapse
doesn't work...:crying:
Thanks a lot for the module. It worked for me.
Works for me too! Great work!
Sent from my SM-G955F using Tapatalk
This issue of detecting sub-processes has been patched as of beta 16.4
I'm not sure where you were getting the other processes you were blocking (e.g com.microsoft.omadm), my guess is skaforey's post. These should all be run within the parent process and blocked, but it will be interesting to see if they are required on some phones.
Either way, this is awesome for versions prior to 16.4. Thanks again for writing this.
amw2320 said:
This issue of detecting sub-processes has been patched as of beta 16.4
I'm not sure where you were getting the other processes you were blocking (e.g com.microsoft.omadm), my guess is skaforey's post. These should all be run within the parent process and blocked, but it will be interesting to see if they are required on some phones.
Either way, this is awesome for versions prior to 16.4. Thanks again for writing this.
Click to expand...
Click to collapse
Thanks For Everyone Here Who Tries Always To Help Us.
......................
I suddenly started receiving "Custom OS" error while setting up the Work Profile. I am pretty sure its not related to Magisk or the module but just wanted to check on any ideas.
I have a Galaxy S9+ running a stripped (but mostly stock) ROM with Magisk hide enabled and this module.
Screenshot attached.
Please publish it to magisk repo.
It's a very simple process
---------- Post added at 07:53 AM ---------- Previous post was at 07:35 AM ----------
Worked like charm on magisk 16.4 miui 9 Android 7.0
Cheers
Updated IntuneHider4Magisk To v0.1.3!
Changelog: Minimizing The Time.
Thanks for the module and it is working. Unfortunately I have a wierd issue, the intune portal requires encryption and when the encryption is enabled, Volte is not enabling. I am not sure if this a common issue or not, but is there a way to bypass the device encryption step? Or is there any method to enabled Volte after encryption ? I am using Pixel experience ROM. Please suggest and thanks in advance
Dreamer(3MF) said:
Updated IntuneHider4Magisk To v0.1.3!
Changelog: Minimizing The Time.
Click to expand...
Click to collapse
What's the easiest method to install an updated version of the module when you already have a previous version in use?
To prevent that during the upgrade Intune may discover that my device is rooted, I now use following steps:
1. Freeze Intune and Outlook
2. Disable IntuneHider4Magik (asks for reboot)
3. Delete IntuneHider4Magik (asks for reboot)
4. Install the new IntuneHider4Magik version
5. Defrost Intune and Outlook
I guess that could be implemented in an easier way (even with preventing that Intune may find that the device is rooted as a prerequisite)?
Thanks Man..
working good..
---------- Post added at 10:22 PM ---------- Previous post was at 10:22 PM ----------
Thanks Man..
working good..