General Device unusable after flashing any type of rom that modifies the system - Redmi Note 10S

I recently downloaded arrowOS, aosp. I have tried to fix the headphone jack + bluetooth, bluetooth is the vendor.prop method and didnt work, tried abd shell, didnt work. Wired headphones require 2 apks, called RosemaryTelephony and RosemaryFramework. But none of them are available and justs sends to a 404. If anyone could provide help for either the wired headphones or bluetooth headphones (preferably bluetooth) or the apks, it would be appreciated. Thanks.
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
For mods : I am not going to link the website nor am advertising the website ^^. I am just showing the fixes it tells me to do but none of them worked.
Thanks!
EDIT : The system/build.prop leads me to a infinite bootanimation.

k so
to fix headphones jack:
move /system/overlay to /product
fix bt headphones:
build.prop

J6idot said:
k so
to fix headphones jack:
move /system/overlay to /product
fix bt headphones:
build.prop
Click to expand...
Click to collapse
tried it and now i keep booting into recovery unless i flash stock, gsis and arrowOS just send me to orangefox?

averagexiaomiuser said:
tried it and now i keep booting into recovery unless i flash stock, gsis and arrowOS just send me to orangefox?
Click to expand...
Click to collapse
did you try to modify the build.prop aswell?
because if i remember correctly system is read only

J6idot said:
did you try to modify the build.prop aswell?
because if i remember correctly system is read only
Click to expand...
Click to collapse
no, i modified the one in /vendor

ok so : i follow all the steps for a gsi and the zip for arrowOS, after i reboot, it shows redmi, then it blacks, boots into orangefox beta and basically i flash stock, and it sometimes boots into fastboot from there but only did it once.

after I do, the console says it failed to mount /vendor , /product /vendor ( it tries to mount vendor twice, it updates partition details and is unable to mount storage, updates, fails to mount, full selinux support is present then it is unable to mount /data/media/Fox/.foxs, says the storage is encryopted and says im on android 13 and sdk 33?

update : trying twrp and normal fastbootd says this

Related

It's here, TWRP 2.0

http://teamw.in/project/twrp2
Pick Nook Color from right, download file and install from adb.
Or image to a sdcard (winimage or w32imager) to create a bootable sdcard.
Enjoy your new touchscreen recovery.
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
I'm not familiar with TWRP, is it some sort of ClockmodWork Recovery but with GUI?
Any more advantage?
It's recovery that uses the touch screen instead of buttons.
The backups don't appear to be compatible with CWM.
Adb doesn't recognize my NC or I'd install it. I did get to play a bit with it on my Touchpad tho.
Thanks Colchiro,
Another question.
As we all know CwMR v.3.0.2.8 will yield /data format problem on stock 1.2 or above, and that fixed by using CwMr v3.2.0.1 or above.
Does it this GUI TWRP resolve this incompatible issue? I meant, it works for all stock ROM versions?
Good question. I don't make the news, I just report it. I know they test it on many devices and flash, backup and restore many roms. I would think it'd be compatible, but I don't know 100%.
Also note, this is RC0 (release candidate), not a stable release. AFAIK, this is the first version released to the general public.
I see there's a post by eyeballer in the dev section. That'd be a good place for questions.
I want to try and have TWRP as an alternate recovery. However, I can't access a PC at the moment. Is there a way to copy the files to the boot partition by just using the Nook itself? I dunno, some file manager that can access the boot partition (tried File Expert, Astro and Root Explorer to no avail) or some commands that I can put in Terminal Emulator perhaps? Sorry if I'm being too difficult, I just don't have access to a PC and I'm dying to try this out, I've been waiting for these thing to get released since I first saw it.
Tapatalkin' it from my rooted NookColor running CM7 MiRaGe [KANG] [7.2 RC] overclocked @ 1.2 GHz

Update Sultan CM 2016-12-11 to 2016-12-27 does not work for my device.

I had a perfectly running Sultan CM13. (with nano gapps and SuperSU2.79) and twrp3.0.2.0 as recovery.
Now i wanted to install the update ota but had a failuremessage:
Unable to mount storage. See picture.
Phone was doing nothing apparently, so switched it off after over 10 minutes. Lucky me, it rebooted fine into the old system.
Now what is the error? What should I do before trying to update it again?
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
??
Link to the picture: ttps://forum.xda-developers.com/picture.php?albumid=13868&pictureid=54885
(if it is a functional link the forum does change it?!)
https://forums.oneplus.net/threads/solved-help-twrp.320530/
Also, not sure if you understand c++
Code:
void ActionThread::threadActions(GUIAction *act)
{
pthread_mutex_lock(&m_act_lock);
if (m_thread_running) {
pthread_mutex_unlock(&m_act_lock);
LOGERR("Another threaded action is already running -- not running %u actions starting with '%s'\n",
act->mActions.size(), act->mActions[0].mFunction.c_str());
} else {
m_thread_running = true;
pthread_mutex_unlock(&m_act_lock);
ThreadData *d = new ThreadData(this, act);
pthread_create(&m_thread, NULL, &ActionThread_work_wrapper, d);
}
}
Basically it looks like multiple threads are being run. Try just restarting the pone and the installation in twrp and see what happens.
If you still have the same issue, maybe try re-downloading the nougat update.
m0d hipp¥ said:
Basically it looks like multiple threads are being run. Try just restarting the pone and the installation in twrp and see what happens.
If you still have the same issue, maybe try re-downloading the nougat update.
Click to expand...
Click to collapse
Tried it again. It says, it Can't mount storage, than aborts and shows the twrp start screen.
Is there a log anywhere, that I could copy and post to the forum?
AND, what / why / whatever nougat. We are talking about CM sultan.
OP3TDE said:
Tried it again. It says, it Can't mount storage, than aborts and shows the twrp start screen.
Is there a log anywhere, that I could copy and post to the forum?
AND, what / why / whatever nougat. We are talking about CM sultan.
Click to expand...
Click to collapse
Advancded->copy log
Do you have a pattern lock on the phone?
Is the pattern bigger than 3x3?
Is TWRP asking you for a password instead of a pattern for decrypting the system?
nvertigo67 said:
Advancded->copy log
Click to expand...
Click to collapse
Saw this, but than it said copy to SD Card. Made me wonder. But will try it.
Red_M said:
Do you have a pattern lock on the phone?
Is the pattern bigger than 3x3?
Is TWRP asking you for a password instead of a pattern for decrypting the system?
Click to expand...
Click to collapse
no, got a pin with 7 numbers.
But I have done some more reading and now I believe it is because I got still the first TWRP version 3.0.2.0. Installed it on the 16.12.2016.
And this is the one with the encryption problems.

Viper4Android on Oreo 8.1 Roms

Hi All,
I've been able to successfully install Viper on several Oreo Roms - it works fine for internal speaker and wired headphones. However as soon as I connect my Bluetooth Headphones (Sony MDR1000X) the driver state changes to Abnormal and Viper stops processing - meaning I don't get Viper goodness through my Bluetooth headphones.
I've tried every which way to install Viper, various APK's, Flashable Zips, all available in Magisk, ARISE sound system, etc..
The same occurs across all Oreo Roms. Works fine on Nougat Roms...
Any ideas? Anyone else see the same behaviour?
Thanks
Paul
How did you installed V4A on Oreo 8.1? I'm running LOS 15.1 on Mi6 I can't figured it out how to install it. Classic I/O error...
I have this exact same problem, have you found any solution to this yet?

			
				
The only Oreo ROM I was able to get this working on was the MIUI Oreo. I no longer own the Mix, moved to a Note 8. Hope you guys get to the bottom of this!
Using Mi6 with LineageOS 15.1. Perfectly running was at first build but now ( running 3th build ) it gives I/O error still can't able to solve...
Chandler Muriel Bing said:
Using Mi6 with LineageOS 15.1. Perfectly running was at first build but now ( running 3th build ) it gives I/O error still can't able to solve...
Click to expand...
Click to collapse
SOLVED! Just ROOT your device with latest Magisk (using v16 now), open Magisk menu tap downloads and type "viper4android" and then download and install "ViPER4Android FX for Magisk v15" module. Now you are good to go!
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}

Setup failed - Magisk Manager

Hi, I have a problem when running the magisk manager application, it says setup failed after the "require additional setup" does anyone know how I can fix it? Thanks
Install
- TWRP 3.2.1.0 Treble
- Use the "magisk-unistaller-20181208"
- Install the latest version, Magisk v18.0
- Wipe dalvik and cache
My terminal is a moto z play and I am using the rom of android 9.0 xperience-13.0.0-20181126-NIGHTLY-addison.
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
Have you got magisk on an internal or external SD card? What worked for me was to move it to internal storage.
SOLUTION
All you need to do is uninstall Magisk Manager and install it again from the following MagiskManager-v7.1.1.apk.
MOD: Edit Links Removed
Lukss203 said:
All you need to do is uninstall Magisk Manager and install it again from the following MagiskManager-v7.1.1.apk.
MOD: Edit Links Removed
Click to expand...
Click to collapse
Or, instead of downloading and installing a possibly dodgy apk, download straight from the source instead:
https://github.com/topjohnwu/Magisk/releases
Didgeridoohan said:
Or, instead of downloading and installing a possibly dodgy apk, download straight from the source instead:
Click to expand...
Click to collapse
I've tried installing straight from the source github and I still get the exact same problem as OP on my Samsung S5 G900W8
In case anyone is reading this 1 month later, I had the same problem and had removed all remnants of old MM installs. The fix for me was to remove MM, then go into recovery and before running the 19.1 installer, run the official latest uninstaller first and then (without rebooting) install 19.1. After that, I could hide without the "setup failed".
Turn On Internet
Just Turn On Internet
Magisk Downloads some kind of data
So just turn on data or wifi
It will work:fingers-crossed::fingers-crossed:

[SHARED][ROM] SailfishOS 4.X [EXPERIMENTAL]

What is SailfishOS? Info here: https://sailfishos.org/info/
NOT MY ROM!!! I'M JUST SHARING​Author of the project is:
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
0312birdzhang
Sailfish OS port to Redmi Note8 devices, LineageOS 16.0 based, aarch64​
About​
Please read this document fully before planning or starting to use this port.
This is a community port, meaning that there is no official support and extensions included in the paid version:
There is no Android app support
There is no MS exchange support
There is no Jolla Store predictive text support. Use Presage-based keyboards instead
How to install​
download sailfishos zip from here.
download Lineageos 16.0 from here.
download twrp from here.
revert to android9 base miui, and install twrp.
install Lineageos 16.0 and boot up to check if everything is ok.
reboot to fastboot mode, use fastboot format:ext4 userdata to format userdata partition.
reboot to recovery mode, send sailfishos zip to your device.
flash it use twrp, and reboot.
Current state​
Working​
Display
Touch, multitouch
Calls
Cellular network
LED
Bluetooth
GPS
WLAN (connect and hotspot)
GSM (SMS, voice, data)
Keys (Vol +/-, camera, power)
Power management
USB Charging, Network, MTP
Sensors
Vibrator
SD card (not tested)
Not Working​
Audio
Camera
Fingerprint
FM radio
IR remote control
Issues​
https://github.com/sailfish-on-ginkgo/droid-config-ginkgo/issues
gr8Tomato said:
Not Working
Audio
Camera
Click to expand...
Click to collapse
Those are very important, good luck in the future builds
very happy to see that。i thought this project had a long way to go。best wishes for Sailfish OS
This one will be great!
vendor.zip
drive.google.com
With thise vendor, audio works perfect
bius88 said:
vendor.zip
drive.google.com
With thise vendor, audio works perfect
Click to expand...
Click to collapse
It's not working for me :/
0312birdzhang said:
It's not working for me :/
Click to expand...
Click to collapse
Hi! How about update this OS? how can i do it myself?
bius88 said:
Hi! How about update this OS? how can i do it myself?
Click to expand...
Click to collapse
source code can be found at https://github.com/sailfish-on-ginkgo
0312birdzhang said:
source code can be found at https://github.com/sailfish-on-ginkgo
Click to expand...
Click to collapse
Ok! Thank you!

Categories

Resources