-
Notifications
You must be signed in to change notification settings - Fork 126
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Issue with getting filesystem config from TWRP Recovery #33
Comments
Nah it didn't worked ... looks like TWRP recovery does not work at all 👎 |
I'm stuck at getting an OTA, I've tried various of busybox ls but they just don't fit what your program wants I even tried awk and ended up using this: |
Well I've ended up using my already system's toolbox instead of busybox so I've added another variable to the first of file as BUSYBOXLS and I will check whether the ls support -aRZ by checking the output (see if it's not start with busybox version) if not I'll use where system's ls in bin points out (in my case let's say it was toolbox) and I put the link into busyboxls and I have change the code where this ls thing was needed by |
So there's another issue which I don't know how to solve it by changing the code :| So I just pause the doing thing for a manual check. (I'm not a linux expert :| sry) |
Hi,
I was about to get an ota from phone and I was in TWRP recovery and find out there's some kinda problems, one of them was in get_filesystem_config file where it just run
ls -aRZ /system
which will result in strange characters in file lists such as�[0
because of the color thingy ... so I removed the color by changing the ls code tols -aRZ --color=never
and it worked great!The text was updated successfully, but these errors were encountered: