Hello everybody,
I'm new to Android environment, but I know Linux well, so I started make a few shell script, but I am having trouble finding the right configuration scripts in Xperia Arc ROM
Could anyone help me telling how it is mounted the file system (SYSTEM, DATA, etc.), and where is the configuration files for that.
And there is some documentation of system files for Xperia ROM?
Thanks.
Anyone?
Sent from my LT15i using XDA App
For those that perhaps want to know what I questioned above, I found, and the config is everything in the boot of ROM, more specified in the init.rc, which are in the root of the boot:
/init.rc
The sdcard partition stay in vold.fstab file:
/etc/vold.fstab
you should not multi posting here.
Try and ask some devs around here.
Electrash,
I just made a comment with the answer than I had originally asked after I found the answer elsewhere, in case someone needs the same information. I see no problem with that. I am just trying to help.
About question in a development forum, in my understand, the rules of the development forum do not allow posts with questions, so I used the Q&A forum.
My english in not very good, maybe is losing something in translation...
Adriano
electrash said:
you should not multi posting here.
Try and ask some devs around here.
Click to expand...
Click to collapse
Related
I have made an auto-installer for Linux that will download, install, and setup the Android SDK, NDK, Eclipse, ADB, and create a 99-android.rules file without the user having to do anything. I was curious which section I should post this in?
Tahl said:
I have made an auto-installer for Linux that will download, install, and setup the Android SDK, NDK, Eclipse, ADB, and create a 99-android.rules file without the user having to do anything. I was curious which section I should post this in?
Click to expand...
Click to collapse
Nice work!
I'd say in the Upgrading, Modifying and Unlocking forum itself, but I may be wrong. That's the general, non-device specific development forum, and forum for devices without their own forum.
Perhaps a Mod could clarify this for us? Oh Scotsman, where art thou?
Interesting, I didn't even think about that as a possibility, I was looking at the Android Software and Hacking General or Android Software Development. Mostly because that's where people asking about ADB were, but now I'm not sure.
To be honest I'd put it in all three, as it's a worthy addition to any Linux users' toolkit.
May want to double-check with someone who actually knows what they're talking about first, and possibly just post it in one place and get some user feedback first, so you know it works on all machines
Well, I've had quite a few testers and positive feedback on Linux Mint 11 and Ubuntu 11.04 for both the 32/64-bit versions. I just wanted to share it with xda-developers so that more people would be able to use it. It's already on RootzWiki and I've had people test it from my blog with some help from P3Droid's retweet power. The deb version I'm pretty confident in will work without many people having troubles. The .sh version that I also have hasn't been tested with any operating systems outside of that, but I'd like some feedback with people using apt-get and other operating systems.
I have asked Scotsman to come and provide a little clarification for us. I honestly think you've made a very vaulable contribution here, so thankyou from all of us far too stupid to do something like this!
I posted it in Android Software and Hacking General.
I thought that would be a good spot for it based on how many adb related guides and posts there were in that section. If Scotsman would like to move it or delete it though, I can gladly repost it in a more appropriate (or multiple) forums so that it can get more attention. I really appreciate the help you've given me too.
Hmmm...I'd say maybe Android Software and Hacking General or maybe Android Software Development? Since it's only Android specific...
I'll stick to the Hacking General then, I think that I saw the most related material there while I was posting. Thanks for the help you two, I appreciate it.
You're welcome mate, I wish everyone's first few posts could be as productive
Enjoy your time at XDA! Let me know if I can help with anything else
Why?
It is needed to have root on your device. Google it, to get more details
Sent from my HTC One X using xda premium
I myself dont know and it would be nice to have an explanation here as most of us are new to this rooting and bricking jargon simple explanations of these things will help "COMMUNITY" members hence why we have a section
HTC one X Q&A
It very easy to tell someone Google it
as Einstein said: "If you cannot explain it simply then you don't understand it well enough"
check this video out I found it, however I cannot view it due to Admins blocking Youtube http://www.google.co.za/url?sa=t&rc..._92TCg&usg=AFQjCNGRf354aisVBQXiO8jVypBAj91PLg
Edit:
Not my intention to be Rude but this is a Q&A and we need to be helpful as a Community not make people not want to ask questions
BusyBox is a package containing a whole range of "program commands" and/or "scripts" (tools). It is with these extra tools, specific tasks can be performed.
Once a custom ROM has BusyBox installed, it means that scripts on the ROM and apps in the ROM can use make use of the tools to perform their tasks.
For example "dd" is a known linux command/tool for block-by-block copying and dumping. However "dd" does not exist until BusyBox is installed. Other popular tools are "uname" to get the kernels name/details, and "ls" is to list the contents of a directory/folder (similar to "dir" in DOS). There are about 50 or more of these commands packaged inside "BusyBox". Whenever there are new versions of BusyBox installed (as you may see in the changelogs for some custom ROM's), this is simply because BusyBox has included either new versions of some of its tools, or perhaps added additional tools to the package.
Hope that helps answer your question. However to be honest, I found all that out by SEARCHing this forum.
- WizzKidd
wizzkidd said:
BusyBox is a package containing a whole range of "program commands" and/or "scripts" (tools). It is with these extra tools, specific tasks can be performed.
Once a custom ROM has BusyBox installed, it means that scripts on the ROM and apps in the ROM can use make use of the tools to perform their tasks.
For example "dd" is a known linux command/tool for block-by-block copying and dumping. However "dd" does not exist until BusyBox is installed. Other popular tools are "uname" to get the kernels name/details, and "ls" is to list the contents of a directory/folder (similar to "dir" in DOS). There are about 50 or more of these commands packaged inside "BusyBox". Whenever there are new versions of BusyBox installed (as you may see in the changelogs for some custom ROM's), this is simply because BusyBox has included either new versions of some of its tools, or perhaps added additional tools to the package.
Hope that helps answer your question. However to be honest, I found all that out by SEARCHing this forum.
- WizzKidd
Click to expand...
Click to collapse
^^ hit the nail on the head. That's not to say that busybox is the ONLY way to get those tools. It's just the slimmest. There are more robust gnu equivalents of the tools that it includes, but they're nowhere near its tiny footprint.
Busybox is a pretty neat application though, since all of the tools that it provides are housed in one binary (busybox). The other commands operate with symlinks named appropriately for their function (su, etc.). The binary detects the name of the symlink that invoked it and behaves appropriately. It's commonly used in environments where not much space is available (recovery environments, embedded systems, etc.)
--Matt
jinkira said:
I myself dont know and it would be nice to have an explanation here as most of us are new to this rooting and bricking jargon simple explanations of these things will help "COMMUNITY" members hence why we have a section
HTC one X Q&A
It very easy to tell someone Google it
as Einstein said: "If you cannot explain it simply then you don't understand it well enough"
check this video out I found it, however I cannot view it due to Admins blocking Youtube http://www.google.co.za/url?sa=t&rc..._92TCg&usg=AFQjCNGRf354aisVBQXiO8jVypBAj91PLg
Edit:
Not my intention to be Rude but this is a Q&A and we need to be helpful as a Community not make people not want to ask questions
Click to expand...
Click to collapse
The main reason people here get told to Google a problem is because more likely than not, the answer you'll get from the search engine will be a page from XDA...
There's also a search box within XDA too, I found these pages using it, they would have answered the OPs question, there wasn't really a need for this thread.
Not trying to be rude but the search is there for a reason and these questions have been asked hundreds of times before
http://busybox.net/FAQ.html#whatis
thank you all for the feedback it is much appreciated
oh and I did do a search but only on the HOX forum not the entire site, and Searching only th HOXX forum there were fragmented pieces of info, but anyways Thanks you guys
Hello i have a problem with my gnexus , maguro ,aokp unofficial 4.2.1 , kernel stock .
When flashing rom (with cmw touch) I find a folder "0", inside there are all my folders .. why is this happening? How can I fix?
I attach screenshot
Thanks
Congratulations on the inability to both search the forum and update your recovery.
Cilraaz said:
Congratulations on the inability to both search the forum and update your recovery.
Click to expand...
Click to collapse
I am an incompetent but you're a boor.
andvl said:
I am an incompetent.
Click to expand...
Click to collapse
Indeed.
063_XOBX said:
Indeed.
Click to expand...
Click to collapse
You shut up,stupid.
andvl said:
You're right, I am stupid.
Click to expand...
Click to collapse
Ftfy
andvl said:
I am an incompetent but you're a boor.
Click to expand...
Click to collapse
Not really. I'm just sick of the same question from people every 5 minutes because they're unable to look lower on the page for an answer. If someone can't spend 3 minutes looking through a forum for an answer, why should I spoon-feed them how to customize their phone (or in this case how to fix their phone after they tried customizing it without proper research beforehand)?
Cilraaz said:
Not really. I'm just sick of the same question from people every 5 minutes because they're unable to look lower on the page for an answer. If someone can't spend 3 minutes looking through a forum for an answer, why should I spoon-feed them how to customize their phone (or in this case how to fix their phone after they tried customizing it without proper research beforehand)?
Click to expand...
Click to collapse
I'm sorry I overreacted. I ask you to accept my apologies. I used the search button (not knowing exactly what was due and I did not find much) but since I had never had, I decided to ask.
As you will notice I have not done a lot of questions and usually I just read and finally to ask here.
Thank you and I apologize.
andvl said:
Hello i have a problem with my gnexus , maguro ,aokp unofficial 4.2.1 , kernel stock .
When flashing rom (with cmw touch) I find a folder "0", inside there are all my folders .. why is this happening? How can I fix?
I attach screenshot
Thanks
Click to expand...
Click to collapse
Actually you have made a good title for your thread and I tried to search using the same title you typed which is "Folder 0". I got some threads talking about this issue such as "[Q] 0 folder inside /sdcard directory" so have a look up there for the answer
With no offence, I'd like to say to you to take it easy next time with other members please and just imagine that you are daily checking this forum and finding the same questions going over and over again so how would you feel? Definitely you will be annoyed somehow
Good Luck and let us know if you run into further troubles but search "a lot" first
ahmadallica said:
Actually you have made a good title for your thread and I tried to search using the same title you typed which is "Folder 0". I got some threads talking about this issue such as "[Q] 0 folder inside /sdcard directory" so have a look up there for the answer
With no offence, I'd like to say to you to take it easy next time with other members please and just imagine that you are daily checking this forum and finding the same questions going over and over again so how would you feel? Definitely you will be annoyed somehow
Good Luck and let us know if you run into further troubles but search "a lot" first
Click to expand...
Click to collapse
thanks you have been very kind. I saw that there are many threads with the same topic. I also read other things and here you can close.
I flashed CWM touch 6.0.1.9, which is suitable for Android 4.2.
Sorry guys if I gave the impression of a stupid and arrogant , but now I understand why Cilraaz was a bit '"rude".
Thanks again for your time.
Legacy & Folder 0
Hello people!
I was reading a lot of info about these folder 0. Now I know why I do have it, but I still have some doubts as my Folder 0 doesn't looks to be a simple copy, but a kind link...
My structure, from root, is such:
/sdcard
/storage
/emulated
/sdcard0 (link)
Inside /storage/emulated I have /0 and /legacy.
Any operation I make will reflect in all that folders, so as I read its not safe to simply copy (as I would copy over...?) and delete. So the final question is, think it´s a kind of link folder, is there a way and is it safe to unlink?
My ROM is Avatar and all works fine, the issue with folder 0 were because it dups all by music folder on PowerAmp. I did saw this with Gallery ie.
Thank you for any help.
[SIZE=+3]Frequently Asked Questions[/SIZE]
[SIZE=+2]Samsung Galaxy Note II
SGH-I317 (AT&T/Rogers/Telus)[/SIZE]
[SIZE=+1]This a short list of frequently asked questions in this device forum and the answers often given as a response. It should serve as a starting point for gathering knowledge and finding solutions to many common problems. Please only post in this thread with feedback on how to improve this document. Do not post "Thank you" type responses. If you have additional questions or require more help, try to find an existing thread or create your own. Do not use this as a general help thread.[/SIZE]
[SIZE=+1]Q1: How do I ask a question, so I'm not called a noob?[/SIZE]While you may see many questions asked in the Development section, PLEASE be aware this is not the place for questions.
Remember to use the search found at the top of the forum. There is also a search within each section. Example click on Q&A HERE. In the upper right you will now see two search's. At the top it says Search All Forums and a little further down you will see Search This Forum. Enter your search criteria in the Search This Forum to get info from this section. The search at the top will look through the entire forum.
Please read as much as you can prior to doing anything with your device.
Make sure your question has not been answered in the OP (Opening Post) of each section of Development
Search Q&A for threads that may have been started for a particular rom
[SIZE=+1]Q2: How do I install a stock update (I'm on a non-rooted phone)?[/SIZE]This link click here will explain the full procedure
[SIZE=+1]Q3: Where do I find Keis and what is it for?[/SIZE]Kies can be found click here. Kies is used to manage the content on Samsung mobile devices. It is used to move information between your PC/Mac to you phone and vice versa
[SIZE=+1]Q4: What does Root/Rooting mean?[/SIZE]Put simply, Rooting your device allows you, and/or rooted apps, to access parts of the Linux based Android software that is your OS, and that you would otherwise not be able to access. These tasks can be as simple and beneficial as backing up your system setting, or as complicated as installing custom ROMs, Kernels, etc.
[SIZE=+1]Q5: What is ADB (Android Debug Bridge) and what is it for?[/SIZE]Please read HERE. There is much to learn, please view everything in the threads OP
[SIZE=+1]Q6: What is the purpose of rooting my Samsung Galaxy Note II?[/SIZE]Please bear in mind, rooting can be dangerous and if done wrong "brick" your phone.
Rooting the phone is a decision made by individuals looking to improve upon the Android OS. There are many benifits, however it is done to customize the phone to it's full potential
[SIZE=+1]Q7: How to I enter Download Mode and Recovery?[/SIZE]1) Make sure your phone is unplugged and powered off.
2) To enter Download Mode: Hold Volume down, home, and power until you see the android.
3) To enter Recovery: Hold Volume up, home, and power for about 5 seconds then release all buttons. You may need to try this a few times.
[SIZE=+1]Q8: What is a "logcat" and how do I create one?[/SIZE]For setting up ADB see What is ADB (above) logcat allows us to log what the OS is doing, and possibly offer information if things are not working. its quite simple to create but may be difficult for most to understand. This is a tool a Developer may ask for in detecting issues your device may be encountering.
To use logcat
Code:
adb shell
logcat
To logcat to a certain file do
Code:
adb shell
logcat -d > /sdcard/whatevertexfileyoulike.txt
For a full explanation follow the link in What is ADB
[SIZE=+1]Q9: Is there an app that will help me create a logcat from my phone?[/SIZE]Yes, however it does have its limitations. If you're stuck in a "bootloop", the app will not work, you will need to use ADB for this. If you're data is not connecting on a certain Rom, (or something similar) within the already booted OS, an app can be rather handy and and more user friendly, for those who don't understand ADB. Apps for logcat can be found in the marketplace
[SIZE=+1]Q10: What does odexed and de-odexed mean and what is the difference between the two?[/SIZE]Please read HERE
[SIZE=+1]Q11: What is CWM Recovery (ClockWorkMod Recovery) and TWRP (TeamWin Recovery Project)?[/SIZE]They are recovery program's that allows you to backup / restore a full or partial system backup of your device. They also allow you to install flashable .zip files; which is one of the primary installation methods for custom ROMs. They also provides other features such as cache and delvik wiping, battery reset, and other processes. If you are thinking about flashing custom ROMs or just want a really good backup program, it's strongly advised that you to install one of these.
[SIZE=+1]Q12: What is the 'Flash Counter'?[/SIZE]Your phone's "Flash Counter" is triggered when it detects custom firmwares. This is Samsung's way of knowing that your device has been modified. Please read HERE to understand what this does and how to fix it.
[SIZE=+1]Q13: What is a ROM?[/SIZE]A rom is like a custom firmware image that is made by a Developer either entirely from scratch, or based off of the official firmware package. Some ROMs contain simple changes like changing icons and adding extra options to things, other more complicated ROMs can change the entire Android experience. Which one you will want to flash, will be entirely up to you. Read carefully, and make sure you understand what you are getting into before you flash.
[SIZE=+1]Q14: What is a Kernel?[/SIZE]A kernel is the heart of the device's OS. In simplest terms it’s a connection between your apps and your device’s hardware; i.e. the processor, RAM, etc. A custom kernel can dramatically change the way your device’s hardware performs… for the better and/or the worse]
[SIZE=+1]Q15: What is a Bootloader?[/SIZE]The bootloader is a program code that is executed before the device OS starts up, and that instructs that device to boot “normally”. The bootloader can come locked or unlocked from the manufacture. A unlocked bootloader will allow you to install custom ROMs & Kernels (as well as some other neat things) on your device.
[SIZE=+1]Q16: What is the best rom for my phone?[/SIZE]While you can ask this as many times as you wish, the only answer is: the one that works best for you! A rule of thumb is to visit a several rom thread's and view what is happening within these rom's. Eventually viewing a few roms will cause the urge to try one that looks good to you.
[SIZE=+1]Q17: What is the MD5, and what does it do?[/SIZE]It ensures that file's are downloaded correct and complete, in order to avoid issues when installing/using it.
*
Forum Rules | New Users Guide | XDA Tour | Report Posts
This FAQ is part of a Recognized Contributor Group Initiative. Please look for a similar FAQ thread when visiting another device forum.
A special thanks to everyone who contributed to the production of this FAQ
Note 2
Nice list! This is bound to really reduce clutter in Q&A. Just one thing, you might want to add the differences between TW/ASOP i get that question all the time.
Edit: Also the whole i317/i317m thing
mrevankyle said:
Nice list! This is bound to really reduce clutter in Q&A. Just one thing, you might want to add the differences between TW/ASOP i get that question all the time.
Click to expand...
Click to collapse
Thanks for the tip. I will add this over the next few days.
Thanks !!:thumbup:
Sent from my SAMSUNG-SGH-I317 using my thumbs
Just use caution with links that are taking people to threads for other devices. For example the what is a flash counter answer takes you to the gs3 thread.
Sent from my SAMSUNG-SGH-I317 using xda premium
Hey Tony, I've been searching for information on Apps2SD for this phone and while I will find it (the information) on my own, I think a mini compendium of sorts would make sense in the FAQ section. Unless of course this is a "Google removed the function, end of story," situation.
abowlby said:
Hey Tony, I've been searching for information on Apps2SD for this phone and while I will find it (the information) on my own, I think a mini compendium of sorts would make sense in the FAQ section. Unless of course this is a "Google removed the function, end of story," situation.
Click to expand...
Click to collapse
To an extent I agree, however that would be better suited in a Q&A then a FAQ.
May I suggest adding "what is a modem"
And then laying out the whole dif(or lack there of) between basband/modem/radio. Also in the kies faq I would like to suggest mentioning the kies EFR. Its a very effective and usefull tool.
:beer:
sent from my T.A.R.T.I.S
(Time And Relative Tarts In Space)
---------- Post added at 05:33 PM ---------- Previous post was at 05:32 PM ----------
freakboy13 said:
May I suggest adding "what is a modem"
And then laying out the whole dif(or lack there of) between basband/modem/radio. Also in the kies faq I would like to suggest mentioning the kies EFR(see my sig ).
Its a very effective and usefull tool.
:beer:
sent from my T.A.R.T.I.S
(Time And Relative Tarts In Space)
Click to expand...
Click to collapse
sent from my T.A.R.T.I.S
(Time And Relative Tarts In Space)
Samsung Galaxy Note 2 1317 Network Issue.
Hello friends.. I am new to this forum. My Name is sam and i need help so please help me.
I got an at&t Galaxy note 2 1317 on 4.1.2 firmware. i was trying to unlock it with *#197328640# was not able to do it.
was looking online and some one posted if i downgrade it to 4.1.1 then i would be able to unlock it.
and i did that exactly as it was told. got it kind of unlock for tmobile. but there is always a network problem i am not getting tmobile network everywhere, i did my research for it and people say its modem and i need to flash the rom with tmobile one. but i didnt find any good forum for that. Please help me out.. coz my network default setup shows tmobile, att and 311660 but it never get register on it. only in few place like highways i get good connection otherwise its not register to a network message with a o with a diagonal on the signal bar. please help me out. i got a sim unlock code for it to no help. help me out please.
when i choose the file on recovery mode
it says
signature verification failed
how can i do this
Greetings everyone. I have a question. I did a search of the forum and was unable to find an answer, or at least I didn't use specific enough terms.
I see there are a few Kit Kat roms going around but I haven't seen a rooted stock Kit Kat rom. Is there one available?
Note 2 - Model GT-N7105.
ERGENT
Im hoping someone can answer this Question for me as soon as possible, i just purchased a used AT&T Galaxy Note 2, and already Rooted it but i am scared to add recovery to then flash a custom ROM cause i cant find out any where if the BOOTLOADER is locked, can someone PLEASE let me know if the Bootloader is locked or is it unlocked, thanks in advance.
P.S= and if it is locked can you please guide me where to go to unlock it, cause i HONESTLY searched every where and havent found anything, everything that i did find on locked bootloader for Galaxy Note 2 came up on the Verizon version.. Thanks again.. Bless.
DelphinusMinor said:
Greetings everyone. I have a question. I did a search of the forum and was unable to find an answer, or at least I didn't use specific enough terms.
I see there are a few Kit Kat roms going around but I haven't seen a rooted stock Kit Kat rom. Is there one available?
Note 2 - Model GT-N7105.
Click to expand...
Click to collapse
[email protected] said:
Im hoping someone can answer this Question for me as soon as possible, i just purchased a used AT&T Galaxy Note 2, and already Rooted it but i am scared to add recovery to then flash a custom ROM cause i cant find out any where if the BOOTLOADER is locked, can someone PLEASE let me know if the Bootloader is locked or is it unlocked, thanks in advance.
P.S= and if it is locked can you please guide me where to go to unlock it, cause i HONESTLY searched every where and havent found anything, everything that i did find on locked bootloader for Galaxy Note 2 came up on the Verizon version.. Thanks again.. Bless.
Click to expand...
Click to collapse
You won't lose your unlock. SO yer safe to flash a recovery and them a custom rom. =-}
Oops, just put my glasses on and read your post again. You will also need to unlock it. It's not hard.
thanks for the info
http://forum.xda-developers.com/showthread.php?t=1980644
Sent from my SAMSUNG-SGH-I317 using XDA Premium 4 mobile app
---------- Post added at 08:58 PM ---------- Previous post was at 08:45 PM ----------
That's the thread I used to root my Note 2
Sent from my SAMSUNG-SGH-I317 using XDA Premium 4 mobile app
[email protected] said:
Im hoping someone can answer this Question for me as soon as possible, i just purchased a used AT&T Galaxy Note 2, and already Rooted it but i am scared to add recovery to then flash a custom ROM cause i cant find out any where if the BOOTLOADER is locked, can someone PLEASE let me know if the Bootloader is locked or is it unlocked, thanks in advance.
P.S= and if it is locked can you please guide me where to go to unlock it, cause i HONESTLY searched every where and havent found anything, everything that i did find on locked bootloader for Galaxy Note 2 came up on the Verizon version.. Thanks again.. Bless.
Click to expand...
Click to collapse
When you carrier unlock a device it remains unlocked no matter how many roms or recoveries you flash. My note 2 is unlocked and works just fine.
The bootloader is not locked. Flash a recovery using Odin. Twrp is great.
Sent from my GT-N7105 using XDA Premium 4 mobile app
Another one you can use once you're rooted is ROM Manager from Play Store and flash CWM (ClockWorkMod) that's what I've been using.
Sent from my SAMSUNG-SGH-I317 using XDA Premium 4 mobile app
Thanks guys...this info helped me as well.
Hey everyone.
Can someone please tell me how to enable init.d support without magisk on 32.4.A.0.160 firmware, xperia z5 premium e6833. I am using ta poc+SuperSu arrangement and want to use some init scripts.
Regards
Adil
Isn't there anyone using init.d with SuperSU?
Well then can someone then please tell me how to use service.d or post-fs-data.d scripts. I have tried to use it but
1) In service.d, mounting scripts don't work or may be i am doing something wrong, do point out the error. I am just creating scripts and putting them in magisk/.core/service.d folder with permission 0755.
2) I have no idea how to use post-fs-data.d. I read somewhere that magisk runs those post-fs-data scripts that are included in the modules only and not the individual scripts themselves.
Please tell me how to run my scripts through any of these ways.
Regards
Adil
P.S: Don't just view the thread, try to help others, I mean that's why we all are here right! To learn...
I'm not sure why no one is answering or helping around here. Personally, I don't know how to help you. so I'm sorry. I may suggest asking in the Android general chat, not specifically this phone series. as even my own question has fallen on deaf ears. I found answers on other sites instead and am following on with those sites.
the Z5p seems to have become a bit of a graveyard now since anyone able or willing to develop for it has moved on to other devices, I've even looked into building myself but I need a more powerful computer so i'm stuck with what i'm able to find online.
I hope you figure out what you need to, to sort your problems. but my advice would be to not limit yourself to just one device forum. the question you ask is an android related question, not just for the model of phone you use. at least this is how I think it is. I could be wrong.
but if there is no one here to answer your question, i don't see any issue with the question being brought up in a forum with a wider reach.
Patrick Morgan said:
I'm not sure why no one is answering or helping around here. Personally, I don't know how to help you. so I'm sorry. I may suggest asking in the Android general chat, not specifically this phone series. as even my own question has fallen on deaf ears. I found answers on other sites instead and am following on with those sites.
the Z5p seems to have become a bit of a graveyard now since anyone able or willing to develop for it has moved on to other devices, I've even looked into building myself but I need a more powerful computer so i'm stuck with what i'm able to find online.
I hope you figure out what you need to, to sort your problems. but my advice would be to not limit yourself to just one device forum. the question you ask is an android related question, not just for the model of phone you use. at least this is how I think it is. I could be wrong.
but if there is no one here to answer your question, i don't see any issue with the question being brought up in a forum with a wider reach.
Click to expand...
Click to collapse
Thanks bro, I will try it in general forums. I just asked here so someone can just find a workaround for the device specific kernel....
Hello there im using init.d wirh magisk module thats called simple init.d enabler also if u have not magisk, init.d flashable zip available