Question Has normal twrp appeared and are there any roms - Samsung Galaxy A32 4G

samsung a325f the original firmware in the samsung infuriates me, are there any roms for the samsung phone? I don't like it because it lags absolutely everything, even gestures.

TWRP is still in development, but there is a nightly. SHRP is good too. But a final build is not yet released.
For ROMs, there is a workaround to flash GSI ROMs in this post.
Installing GSI by repacking super.img on SM-A127F and SM-A325F (Linux)
repacksuper =========== Copyleft uluruman 2021-2022 (for LINUX/WSL only) This is the minimalistic set of tools + a script for Linux for the automated ground-up repacking and flashing of the Samsung Galaxy super.img, replacing the stock Android...
forum.xda-developers.com

Thank you! I am new to this topic. What are some good gsi firmware? I'll figure it out myself, thanks!

I recommend you phusson, lineage or original google`s

edukardo said:
I recommend you phusson, lineage or original google`s
Click to expand...
Click to collapse
А может туториал, а то я мало что понимаю, многое из статьи выше мне не понятно
Mod translation via GT: Or maybe a tutorial, otherwise I don’t understand much, much of the article above is not clear to me

c22h18o11 said:
А может туториал, а то я мало что понимаю, многое из статьи выше мне не понятно
Mod translation via GT: Or maybe a tutorial, otherwise I don’t understand much, much of the article above is not clear to me
Click to expand...
Click to collapse
The full list of GSI's is available here. Not all of them work without problems though. The most stable and usable seem to be the LineageOS builds maintained by AndyYan and eremitein. Android versions earlier than 11 (or 10?) refuse to boot, at least as far as I remember, I didn't do much experimentation. I remember that I also tried some of the "eye-candy" GSI's, OctaviOS in particular, and it also booted fine (I didn't use it much though).
As of how to install them using my method (I know it's slow and redundant but at least it 100% works) read the step-by-step guide and the first post of the thread. You will need Linux for that with some basic knowledge of the Terminal. IchZerowan also reported successful usage on Windows 10 using WSL 2 in this post but basically it's the same Linux and the same Terminal.

uluruman said:
The full list of GSI's is available here. Not all of them work without problems though. The most stable and usable seem to be the LineageOS builds maintained by AndyYan and eremitein. Android versions earlier than 11 (or 10?) refuse to boot, at least as far as I remember, I didn't do much experimentation. I remember that I also tried some of the "eye-candy" GSI's, OctaviOS in particular, and it also booted fine (I didn't use it much though).
As of how to install them using my method (I know it's slow and redundant but at least it 100% works) read the step-by-step guide and the first post of the thread. You will need Linux for that with some basic knowledge of the Terminal. IchZerowan also reported successful usage on Windows 10 using WSL 2 in this post but basically it's the same Linux and the same Terminal.
Click to expand...
Click to collapse
can I somehow contact you for help (telegram?) I will be very grateful

Related

Porting LineageOS to an Unsupported Device (with no similar devices)

Hi,
I am trying to port LineageOS to an unsupported device, an IBall Slide Cuddle A4.
Here's the guide I'm following : https://fat-tire.github.io/porting-intro.html
This is the part where I need help:
"Add the blobs to the vendor/ directory
Once you have a working recovery, it's now time to get CyanogenMod building and working.
The first thing to do is to get all the proprietary, binary blobs into the vendor/ folder, along with a .mk file that will include them in the final build.
This requires three steps:
Create extract-files.sh and setup-makefiles.sh scripts to pull those blob files from the device using adb and put them in the right /vendor/ directory. There are plenty of examples available for other devices.
Create an .mk Makefile to copy those files to the $OUT folder during the build process and put them in the right place. Again, use other devices as a guide for what this Makefile should look like. An example filename might be BoardConfigVendor.mk
Make sure that the Makefile you just created is included from your main BoardConfig.mk via a command such as -include vendor/[vendor]/[codename]/BoardConfigVendor.mk. Again, existing devices can illustrate how this is done.
Now revise the device/ directory
Since you have a working recovery, go back and start modifying the files in the device/ folder. As always, use other similar devices as a reference.
You now have a easy means to do backups and test your builds. So start tweaking the device folder itself, and see if you get it to boot... Once you do, from there its a matter of building and supporting the various parts and peripherals, one-by-one. "
Click to expand...
Click to collapse
Q #1: Where all should I look on my device for the proprietary blobs, and what do they look like? Can I manually extract them out of my existing ROM and paste them into the proper folder of the new one?
Q #2: What do I modify in the device/ folder?
Q #3: What does it mean to "build and support the various parts and peripherals" Does this mean to add the necessary drivers? If so, can I get these drivers from the stock ROM?
The reason I have to ask this here is because my device has NO similar LineageOS-supported devices with the same chipset for me to refer to. My tablet has a MediaTek MT8392 chipset, and I couldn't find any supported devices with an MT8392 (or an MT6592, which is very similar). Also, there is NO code available from the manufacturer, at all. The only resource I have is a stock ROM.
Are there any other ways in which a device can be similar enough for me to use as reference?
It would be really nice if someone could provide links to articles explaining the above 3 things, or if someone has already gone through this process, share their experience.
Also, will my kernel (v3.4.67) be compatible with the latest LineageOS 16 / Android 9 or will I have to build an earlier version?
I am very new to Android development, but that doesn't mean that I can't learn!
That's a hard task for getting started. A mtk device with no twrp available. I recommend to start with low hanging fruits. Like buying an old phone with dropped lineageOS support and building an updated version.
I understand that it is quite difficult. So instead of doing a full port myself, I am now trying the method of taking an image made for a similar MTK device and transferring the device-specific files from my stock ROM, as shown in the following guide:
https://www.techubng.com/2017/09/how-to-port-lineage-os-14-nougat-rom-on-mtk.html
It says:
"From System/lib/hw: Delete all mt6572.so blobs and replace with these blobs: DOWNLOAD BLOBS
Now copy these files from stock to port:
System/lib/hwcomposer.mt65xx.so
System/lib/gralloc
System/lib/lib.audio.primary.so
Systemlib/lib.mali.soS
System/Etc
System/lib/libcameracustom.so
System/etc/firmware
System/lib/libfeatureio.so
boot/kernel
boot/unventd.rc (only if you are getting stuck at logo)
boot/Replace only camera lines under #Camera from stock boot.img init.rc to init.mt6572.rclib/libcamdrv.solib/libcamalgo.so"
But my stock ROM does not have any of the files he listed uner /system/lib! Can I ignore these files, or is there some other place where these files could be? (I checked /vendor)
Also, what about all the other files in /system/lib? Which ones are device-specific and does anything else need to be copied into the new ROM?
As for the TWRP, I have found tools like Easy Magic TWRP Installer ( https://forum.hovatek.com/thread-5162.html ) which will automatically do the porting given the boot.img and recovery.img from the stock ROM. Are these safe to use, as long as I provide the right info to the tool?
I want to use LineageOS on this tablet because the stock OS has some annoying bugs and is quite old (Android 4.4.2) considering how recent the tablet is and how much capability the tablet's hardware has. The manufacturer (IBall) has provided no updates at all.
Lineage OS on Samsung Galaxy J3 Achieve (SM-J337P)
Can I pay a developer to make a working ROM to put Lineage OS on the Samsung Galaxy J3 Achieve (SM-J337P) ?
If so, how do I find a developer who can do it?
hey, i have a sm-t280 that have a similar supported device. how i port to it?
i have a sm-t280 that i wan't to update the android. the only exit i found it's build linegeos or aosp for it, can anyone help me?
here is the source tree:
vendor tree: huttps://github.com/gtexswifi/android_vendor_samsung_gtexswifi
-----
device tree: huttps://github.com/gtexswifi/android_device_samsung_gtexswifi
-----
kernel tree: huttps://github.com/pfent/sm-t280-kernel
[i writed huttps because i don't have posted 10 posts already]
Porting similar device mt6750t
vinaypundith said:
I understand that it is quite difficult. So instead of doing a full port myself, I am now trying the method of taking an image made for a similar MTK device and transferring the device-specific files from my stock ROM, as shown in the following guide:
https://www.techubng.com/2017/09/how-to-port-lineage-os-14-nougat-rom-on-mtk.html
It says:
"From System/lib/hw: Delete all mt6572.so blobs and replace with these blobs: DOWNLOAD BLOBS
Now copy these files from stock to port:
System/lib/hwcomposer.mt65xx.so
System/lib/gralloc
System/lib/lib.audio.primary.so
Systemlib/lib.mali.soS
System/Etc
System/lib/libcameracustom.so
System/etc/firmware
System/lib/libfeatureio.so
boot/kernel
boot/unventd.rc (only if you are getting stuck at logo)
boot/Replace only camera lines under #Camera from stock boot.img init.rc to init.mt6572.rclib/libcamdrv.solib/libcamalgo.so"
But my stock ROM does not have any of the files he listed uner /system/lib! Can I ignore these files, or is there some other place where these files could be? (I checked /vendor)
Also, what about all the other files in /system/lib? Which ones are device-specific and does anything else need to be copied into the new ROM?
As for the TWRP, I have found tools like Easy Magic TWRP Installer ( https://forum.hovatek.com/thread-5162.html ) which will automatically do the porting given the boot.img and recovery.img from the stock ROM. Are these safe to use, as long as I provide the right info to the tool?
I want to use LineageOS on this tablet because the stock OS has some annoying bugs and is quite old (Android 4.4.2) considering how recent the tablet is and how much capability the tablet's hardware has. The manufacturer (IBall) has provided no updates at all.
Click to expand...
Click to collapse
I saw Lineage OS 16 for HomTom S99….
I have HomTom HT70 with same Chipset of HomTom S99 MT6750T….
Im trying to read and follow carefully your guide but still i have bootloop..
Is it Possible to Port it to Homtom HT70 so we can have Android 9 too??
https://forum.xda-developers.com/ge...tom-ht70-6-0-hd-189-mt6750t-4gb-64gb-t3803052
hey, I have a samsung j7 j700t (t-mobile), and if it has a similar version that is the j700f / h / m, but I have tried it and it does not work for me. What do I have to do to make it work for me? Help me please!!!
AlexRsl1999 said:
hey, I have a samsung j7 j700t (t-mobile), and if it has a similar version that is the j700f / h / m, but I have tried it and it does not work for me. What do I have to do to make it work for me? Help me please!!!
Click to expand...
Click to collapse
Different processsor. J700t is Qualcomm. J700f is exynos
kurtn said:
Different processsor. J700t is Qualcomm. J700f is exynos
Click to expand...
Click to collapse
But my processor is Exynos 7580 to 1.5GHz
AlexRsl1999 said:
But my processor is Exynos 7580 to 1.5GHz
Click to expand...
Click to collapse
If you haven't already, I'd recommend checking in Geekbench as there's a lot of conflicting information on the web. Usually, Samsung only puts the Exynos chip in GSM only devices sold outside the US.
There is a custom rom for a variant of my device (Huawei g760) please how can i make it work on my device (Huawei g7-UL20) they both have the same specs and processor everything is the same
YomaAroriode said:
There is a custom rom for a variant of my device (Huawei g760) please how can i make it work on my device (Huawei g7-UL20) they both have the same specs and processor everything is the same
Click to expand...
Click to collapse
Have you unlocked the bootloader, before huawei stopped allowing it?
kurtn said:
Have you unlocked the bootloader, before huawei stopped allowing it?
Click to expand...
Click to collapse
Yes my bootloader is unlocked
kurtn said:
Have you unlocked the bootloader, befes ore huawei stopped allowing it?
Click to expand...
Click to collapse
Yes my bootloader is unlocked
I followed this guide: https://forum.xda-developers.com/t/guide-porting-twrp-without-source.3843473/
And ported the twrp recovery made for huawei g760 to my g7-UL20
Now how do i modify the custom rom for it to work on my device. Please i need your help!!
kurtn said:
That's a hard task for getting started. A mtk device with no twrp available. I recommend to start with low hanging fruits. Like buying an old phone with dropped lineageOS support and building an updated version.
Click to expand...
Click to collapse
Hi there, I just noticed this reply you had made and I have a question about a device that may have had Lineage support.
What I would like to do, once I have my new phone that is, is to take my current phone Motorola Edge+ (2020) and turn it into a small Lineage tablet.
However, there is one slight problem with this, and that is rhat there is currently no Lineage support for this device, but there is support for it's younger brother the Motorola Edge (2020).
Now I do know that porting is possible between devices, but I've seen a lot of guides says they should have the certain similarities such as processor and such.
However the CPU, GPU and Chipset are slightly different (Same brands though), will this pose a problem in porting?
I of course do realize that I will of course need the proprietary blobs from Motorola for this device and I believe I have found them.
Finally, I am curious if you know of any up to date guides on porting? I will of course continue researching myself, however I thought I would make an enquiry anyway.
Any help you may be able to provide would be greatly appreciated.
Bloodstalker
Bloodstalker82 said:
Hi there, I just noticed this reply you had made and I have a question about a device that may have had Lineage support.
What I would like to do, once I have my new phone that is, is to take my current phone Motorola Edge+ (2020) and turn it into a small Lineage tablet.
However, there is one slight problem with this, and that is rhat there is currently no Lineage support for this device, but there is support for it's younger brother the Motorola Edge (2020).
Now I do know that porting is possible between devices, but I've seen a lot of guides says they should have the certain similarities such as processor and such.
However the CPU, GPU and Chipset are slightly different (Same brands though), will this pose a problem in porting?
I of course do realize that I will of course need the proprietary blobs from Motorola for this device and I believe I have found them.
Finally, I am curious if you know of any up to date guides on porting? I will of course continue researching myself, however I thought I would make an enquiry anyway.
Any help you may be able to provide would be greatly appreciated.
Bloodstalker
Click to expand...
Click to collapse
Install a gsi
GSI Rom´s For Motorola Edge +?
Hi for everyone! I have been looking for custom rom for our Motorola Edge +. But I haven't found any yet. However there is the option of the GSI rom's, this smartphone has an A / B system partition. 64-bit ARM CPU architecture. (information...
forum.xda-developers.com
Thank you very much for your reply. I had seen that I could uae a GSI, however I had not realized it is actually possible with Lineage. I clearly misread the topic.
kurtn said:
That's a hard task for getting started. A mtk device with no twrp available. I recommend to start with low hanging fruits. Like buying an old phone with dropped lineageOS support and building an updated version.
Click to expand...
Click to collapse
yo i have a phone with an unofficial version of lineageos 15.1 (Lenovo K8 Note) how would i go about building that newer version

[ROM]NetHunter arm64-full for OnePlus 3T LineageOS 15.1

ATTENTION!
Code:
[COLOR="red"]!!! I AM NOT RESPONSIBLE FOR ANY POSSIBLE DAMAGE DONE TO YOUR DEVICE AS A RESULT OF FLASHING AND I AM NOT RESPONSIBLE FOR ANY BRICKED PHONES OR LOST DATA! FLASH AT OWN RISK !!![/COLOR]
Introduction
This ROM was created for personal use. It was compiled from last sources with some personal changes and bug fixes. It's based on Lord Boeffla's kernel for LineageOS 15.1 ROM with all Kali NetHunter features included. Unfortunately Lord Boeffla stopped developing for Android so it's possibly the last available kernel from him. This ROM was tested on OnePlus 3T LineageOS 15.1 clean installed ROM with NanoDroid microG and MagiskSU.
Click to expand...
Click to collapse
Features
based on boeffla kernel with config app features support
mac80211 packet injection
usb hid
SYSTEM V support for PostgreSQL & msfconsole functionality
usb bluetooth
usb dongle modem support
modprobe support
built-in drivers for Ralink RT3070I & RTL8192CU chipsets
usb dvb- & radio-receivers support
NetHunter app with last changes & fixes
drive droid v.1.38 (older version) with cd-rom & usb-rw support
binkybear-terminal with notification bar support
other NetHunter's features
Installation instructions
Boot to TWRP recovery.
Flash the nethunter-oneplus3T-los-oreo-kalifs-full.zip
Reboot to system.
Run NetHunter App and apply all requirements & give it root privileges.
Launch DB Feed in SearchSploit section to initialize the exploits db.
Launch Android Terminal & give it root privileges.
Run 'apt update && apt dist-upgrade -y' command to get the latest updates.
Launch other apps to set them up.
Special installation instructions
There are some "issues" I've discovered during the compiling and installation. I don't know if they are general or just specific one and depends on using NanoDroid microG and MagiskSU. But as it is.
1. All apps removes from /data/app/ after ROM installation complete and I have to manually install them to make everything works. So I've attached all apps in the Download section if anybody will face the same issue.
P.S. This issue was fixed in last commits from kali-nethunter git. So I've recompiled it from sources and added to nethunter installer. But haven't tested.
2. After the first clean installation of NetHunter with built in kernel Boeffla Config App can't sometimes to initialize the kernel. In this case you should boot to TWRP recovery and flash standalone kernel's zip. After that everything should work's great.
Downloads
Downloads:
NetHunter Full ROM Installer
NetHunter's Apps
Boeffla-LOS-15.1-NH-Kernel
Sources:
kali-nethunter
nethunter-devices
nethunter-app
boeffla-kernel-los-nethunter-oneplus3T
Thanks to/Credits
Code:
[URL="https://www.boeffla.de/"]Lord Boeffla[/URL]
[URL="https://www.offensive-security.com/"]Offensive Security[/URL]
[URL="https://lineageos.org/"]LineageOS[/URL]
[URL="https://github.com/binkybear"]BinkyBear[/URL]
[URL="https://github.com/pelya"]pelya[/URL]
[URL="https://github.com/Re4son"]Re4son[/URL]
[URL="https://github.com/kimocoder"]kimocoder[/URL]
XDA:DevDB Information
OnePlus3T LineageOS 15.1 NetHunter, ROM for the OnePlus 3T
Contributors
flypatriot
ROM OS Version: 8.x Oreo
ROM Kernel: Linux 3.x
ROM Firmware Required: LineageOS 15.1
Version Information
Status: Testing
Created 2019-04-05
Last Updated 2019-04-11
Reserved
Changes at 2019.04.05:
Replaced NetHunter App with last build from Re4son.
Removed modprobe_fix script and how-to-use-it section from installation guide. We don't need it anymore (all thank's to Re4son).
Rebuild NetHunter installer with new App.
Changes at 2019.04.11:
Fixed bluetooth doesn't power on issue.
Added new compiled chroot with last fixes and updates.
Fixed issue with app's installation in android oreo.
thanks for share :good:
Does the monitor mode work without an external antenna?
jorge705 said:
thanks for share :good:
Does the monitor mode work without an external antenna?
Click to expand...
Click to collapse
No. I was searching a lot of time for custom firmware with monitor mode and packet injection support for QCA6174 model but there is nothing at the moment. So you should use external adapters from recommendation list in official Kali wiki.
It would be pretty neat, if the rom would run on the Oneplus 3 as well... :x
UsPdSr said:
It would be pretty neat, if the rom would run on the Oneplus 3 as well... :x
Click to expand...
Click to collapse
I was thinking about 3 model in the beginning of developing but the thing is I can't publish untested roms. And I don't have a OnePlus 3 model to test everything by myself. But if you want I can compile it just for you. But I can't give you any guarantees.
It would be greatly appreciated if you could compile it for op3 pie, thanks anyway:good:
DoN LoUhI said:
It would be greatly appreciated if you could compile it for op3 pie, thanks anyway:good:
Click to expand...
Click to collapse
You can check Havoc based kernel published here https://forum.xda-developers.com/on...nel-kali-nethunter-oneplus-3t-t3507816/page27 (see last comments from MrM0NS73R).
flypatriot said:
You can check Havoc based kernel published here https://forum.xda-developers.com/on...nel-kali-nethunter-oneplus-3t-t3507816/page27 (see last comments from MrM0NS73R).
Click to expand...
Click to collapse
Thanks man, I would hope finding one for stock oos pie. any suggestions ?!
DoN LoUhI said:
Thanks man, I would hope finding one for stock oos pie. any suggestions ?!
Click to expand...
Click to collapse
Take a look to ZaneZam's threads. I'm sure he's already made some builds. I've been using his kernels earlier and they were really great.
flypatriot said:
I was thinking about 3 model in the beginning of developing but the thing is I can't publish untested roms. And I don't have a OnePlus 3 model to test everything by myself. But if you want I can compile it just for you. But I can't give you any guarantees.
Click to expand...
Click to collapse
I would gladly be the tester if you don't mind the additional work.
We could talk this over Pm or another messaging app if you prefer.
Also congrats to the the successful implementation of your work in the Nethunter repository!
it is compatible with my RTL8188EU ?
flypatriot said:
Take a look to ZaneZam's threads. I'm sure he's already made some builds. I've been using his kernels earlier and they were really great.
Click to expand...
Click to collapse
That great man, I've been using his kernel too on oos Oreo and it was awesome. I hope he would make a build for stock pie as well.
[TWRP]
Failed to install Kali Nethunter!
Updater process ended with ERROR: 1
why?
net hunter
What OS/Kernel/packages combo is neded to get it to work on the 1+3T ?
You have to to make sure you magisks is working or super su before you flash the kalinethuner zip. i had the same problem
i got kalinethunter running with chroot installed but i dont have the nethunter terminal anyone else got a fix for this ?
Can i Flash Nethunter Kernal for OnePlus 3T nougat to OnePlus 3T Android pie? if no then how to get Nethunter kernal for OnePlus 3T Android 9 pie ?
please explain
without any rom installed this Nethunter Rom is not being install, while Having Havoc 2.xx installed this rom is got installed but issues.
is it important to install this rom over other Rom?
is it compatable with Havoc 2.6?
flypatriot said:
No. I was searching a lot of time for custom firmware with monitor mode and packet injection support for QCA6174 model but there is nothing at the moment. So you should use external adapters from recommendation list in official Kali wiki.
Click to expand...
Click to collapse
can you try this tutorial? pls :crying:
https://github.com/The-Cracker-Tech...ki/How-to-enable-monitor-mode-in-all-devices?
DoN LoUhI said:
Thanks man, I would hope finding one for stock oos pie. any suggestions ?!
Click to expand...
Click to collapse
flypatriot said:
Take a look to ZaneZam's threads. I'm sure he's already made some builds. I've been using his kernels earlier and they were really great.
Click to expand...
Click to collapse
See the last post in this thread.. it's stock 9.0.3 kernel with WiFi adapter drivers and other nethunter features.
https://forum.xda-developers.com/oneplus-3/development/kernel-coconut-kernel-oos-oreo5-x-x-t3902040

MIUI 11 20.3.26 [9.0 PIE] ROM for Asus Zenfone Max Pro M1

Introducion
This is the MIUI11 Rom which is ported by Rinkubidhan exclusively for X00TD
Everything is working fine and yes it is flashable not sGSI
pubg runs smooth and you can play it is HD settings
you can use other kernels for better battery backup while default kernel serves well :laugh:
Rom is very smooth and stable you won't find any bug in the rom, if you find out any, you can report in our telegram group :good:
Changelog
Fixed Video Brightness
Fixed Notification Led
Fixed Wifi PlayStore Download Issue
Fixed App Crash Issue
Improved Performance
Added Aod
Added App Drawer
Added Dirac
Added App Behaviour
Added Video Toolbox
Added Lite Mode
Banking Apps Working Without Magisk
Vilte Working
April Security Patch :good:
Bugs
NONE
INSTALLATION PROCEDURE
Flash TWRP​Boot into TWRP​Wipe system+cache+dalvik+data+vendor​Flash the ROM zip as usual as custom ROM​Reboot System​If You Need Root Flash Magisk After Booting in Home Screen:fingers-crossed:​Enjoy ultrasmooth MIUI:fingers-crossed:​
Credits
RinkuBidhan
me for sharing with his permission
Sources
kernel sources
https://github.com/KudProject/kernel_asus_sdm660
Rom Source
https://sourceforge.net/projects/xiaomi-eu-multilang-miui-roms/files/xiaomi.eu/MIUI-WEEKLY-RELEASES/20.3.26/xiaomi.eu_multi_HMNote5Pro_20.3.26_v11-9.zip/download
Donations
You Can Donate us in various ways for the continues development of the Rom​[email protected] [UPI]​https://www.paypal.me/rinkubidhan1 [PayPal]​
Download Links
New Rom 20.3.26 Link--
https://www.androidfilehost.com/?fid=4349826312261757258
Old 9.9.26 Rom Link--
https://www.androidfilehost.com/?fid=1899786940962596702
Our channels
https://t.me/MiUiForX00TD​https://t.me/MiUiPortedForX00TD​Kill the thanks button if you think we helped you :highfive:​
XDA:DevDB Information
MIUI for X00TD, ROM for the Asus ZenFone Max Pro M1
Contributors
shyamkumar1604, RinkuBidhan
ROM OS Version: 9.x Pie
ROM Kernel: Linux 4.x
ROM Firmware Required: PIE FIRMWARE REQ
Based On: MIUI11
Version Information
Status: Stable
Current Stable Version: MIUI11 20.3.26
Stable Release Date: 2020-04-01
Created 2019-09-30
Last Updated 2020-04-01
For Those User Face Using Wifi & Play Store Show Waiting For Network Follow This Guide
Wifi Paystore Waiting For Network Fix(No need any Install Or Flash)
Connect wifi
Play store download not work
Go to wifi setting click arrow your contacted wifi
Scroll down you see
Ip setting change it to statics
Uper righ side
Show click on it
Done you download app on play store using wifi
FLashing it now
include game turbo?
eraditya said:
include game turbo?
Click to expand...
Click to collapse
Yes available in security center/Game Speed Booster
А работает ли NFC?
****************
Mod edit - Translated by DeepL:
Does NFC work?
Can anyone tell me
This rom includes
Samrt charging?
@RinkuBidhan @shyamkumar1604 could you port MIUI for Asus Max Pro M2?
Best rom yet used on asus ...thanks to @RinkuBidhan
DarlinginTheFranXX said:
А работает ли NFC?
****************
Mod edit - Translated by DeepL:
Does NFC work?
Click to expand...
Click to collapse
XDA Forum Rules (excerpt):
...
4. Use the English language.
We understand that with all the different nationalities, not everyone speaks English well, but please try. If you're really unable to post in English, use an online translator. You're free to include your original message in your own language, below the English translation. (This rule covers your posts, profile entries and signature). You could try :- https://translate.google.com/ or https://www.babelfish.com/ or use one of your choice.
...
Click to expand...
Click to collapse
Translated:
4. Используйте английский язык.
Мы понимаем, что не все люди хорошо говорят по-английски, несмотря на различия в национальностях, но, пожалуйста, попробуйте. Если вы действительно не можете разместить сообщение на английском языке, воспользуйтесь услугами онлайн-переводчика. Вы можете поместить свое оригинальное сообщение на своем родном языке под текстом перевода на английский язык. (Это правило распространяется на ваши сообщения, анкетные данные и подписи). Вы можете попробовать :- https://translate.google.com/ или https://www.babelfish.com/ или воспользоваться одним из предложенных вариантов.
Переведено с помощью www.DeepL.com/Translator
Click to expand...
Click to collapse
Its ROM good? Speed? Battery? Charging?
Will this rom has themes store working
Best charging speed ever with the raging beast kernel. Battery backup is ok. I cant say about SOT may be 7 hrs. If you flash old modem files then u can do native video calls.
---------- Post added at 06:07 AM ---------- Previous post was at 05:49 AM ----------
Any body help me to disable DT2W . Even it is disabled in setting still it works. Please help.
mohitkd said:
Will this rom has themes store working
Click to expand...
Click to collapse
Yes
tonoy12345 said:
Best charging speed ever with the raging beast kernel. Battery backup is ok. I cant say about SOT may be 7 hrs. If you flash old modem files then u can do native video calls.
---------- Post added at 06:07 AM ---------- Previous post was at 05:49 AM ----------
Any body help me to disable DT2W . Even it is disabled in setting still it works. Please help.
Click to expand...
Click to collapse
Bro which version of raging beast?
Bankings apps like gpay, phone pe working? Without magisk module??
Idle drain
Battery drained 10% overnight
Any suggestions ?
It was the fingerprint sensor
Removed it
Now there is no battery drain
Also there is an update in the updater app
Can we update through there directly
works well
Screenshot attached for details.
Bugs
Flash button not working in notification panel.
After using this rom for 5-7 i noticed that chrome,gcam are force closing.
Scroll screenshot is broken.
It takes about 3-3½ hoirs to full charge.
But the charging speed is good

[WIP] [Looking for help] PostMarketOS on the Xiaomi Mi A2 Lite

PostMarketOS on the Xiaomi Mi A2 Lite
KEEP IN MIND THIS PROJECT IS VERY WIP AND I'M LOOKING FOR HELPERS TO GET A WORKING OS. THIS IS IN NO WAY SHAPE OR FORM A FUNCTIONAL ROM AS OF NOW.
I'm trying to make progress on running postmarketos, a linux distro for various devices including android phones, on the Mi A2 Lite.
I have gotten a lot of stuff to work such as: ssh, screen, Weston, usb, and more stuff. The repo is not updated yet, but will be updated soon.
My progress is logged on this Github repo: https://github.com/matthew-5pl/pmos-xiaomi-daisy
If you feel like helping, write a comment here! There are instructions on how you can help on the github readme.
The requirements are:
A linux machine with the necessary tools installed (pmbootstrap etc.)
A Xiaomi Mi A2 Lite (i have the 4GB ram model, so if you have the 3GB one your mileage may vary) with an unlocked bootloader and access to fastboot and twrp
20-30 Minutes to compile the kernel
The current focus is getting the touchscreen to work.
If you get any further than I did, make sure to make a pull request on the Github repo!
Thanks for reading and good luck :fingers-crossed:!
Interesting project
interesting
i will look at this project, when i take a time
Update:
Weston works!
Matt 123456789 said:
Update:
Weston works!
Click to expand...
Click to collapse
Congrats! Though I think this project is somehow approached backwards. As I've seen on the wiki page all devices can have a screen but only one does the basic functionality of a phone, calls, wifi, gps, camera, sound and such and it's probably the device for which the OS was developed. Honestly I would've been more enthusiastic about this project if it only worked in terminal but had all those functions working. GUI is the easy part these days (that's not a comment on your work).
celrau said:
Congrats! Though I think this project is somehow approached backwards. As I've seen on the wiki page all devices can have a screen but only one does the basic functionality of a phone, calls, wifi, gps, camera, sound and such and it's probably the device for which the OS was developed. Honestly I would've been more enthusiastic about this project if it only worked in terminal but had all those functions working. GUI is the easy part these days (that's not a comment on your work).
Click to expand...
Click to collapse
This is my first experience dealing with compiling kernels, patching drivers etc. so I'm pretty happy I got the framebuffer to work at all. To each his own though!
Matt 123456789 said:
This is my first experience dealing with compiling kernels, patching drivers etc. so I'm pretty happy I got the framebuffer to work at all. To each his own though!
Click to expand...
Click to collapse
Which is commendable, that's why I said "that's not a comment on your work". I was referring to PostmarketOS project in general.
celrau said:
Which is commendable, that's why I said "that's not a comment on your work". I was referring to PostmarketOS project in general.
Click to expand...
Click to collapse
Oh ok!
Ho Postmarketos is interesting project ))
I will compile and test for curiosity
Matt 123456789 said:
PostMarketOS on the Xiaomi Mi A2 Lite
KEEP IN MIND THIS PROJECT IS VERY WIP AND I'M LOOKING FOR HELPERS TO GET A WORKING OS. THIS IS IN NO WAY SHAPE OR FORM A FUNCTIONAL ROM AS OF NOW.
I'm trying to make progress on running postmarketos, a linux distro for various devices including android phones, on the Mi A2 Lite.
While I have gotten two different kernels to compile, (daisy-q by xiaomi and kernel_loki by Aarqw12) and the device to boot both, I have not been able to get to a desktop environment to load.
My progress is logged on this Github repo: https://github.com/matthew-5pl/pmos-xiaomi-daisy
If you feel like helping, write a comment here! There are instructions on how you can help on the github readme.
The requirements are:
A linux machine with the necessary tools installed (pmbootstrap etc.)
A Xiaomi Mi A2 Lite (i have the 4GB ram model, so if you have the 3GB one your mileage may vary) with an unlocked bootloader and access to fastboot and twrp
20-30 Minutes to compile the kernel
The current focus is getting the display/framebuffer to work, to be able to load a desktop or mobile environment, as well as getting functional ssh and telnet connections.
If you get any further than I did, make sure to make a pull request on the Github repo!
Thanks for reading and good luck :fingers-crossed:!
Click to expand...
Click to collapse
Update: Ssh working. Looking for help with patching the touchscreen drivers.
Hi , I can pm you in xda or discuss in telegram app ?
Matt 123456789 said:
Update: Ssh working. Looking for help with patching the touchscreen drivers.
Click to expand...
Click to collapse
ada12 said:
Hi , I can pm you in xda or discuss in telegram app ?
Click to expand...
Click to collapse
Sure, add me on telegram: matthew5pl
Closing thread as a better port of PMOS has been made for daisy.

[ROM][UNOFFICIAL][10] e/OS 0.22 q for Motorola One xt1941-4

Following this thread, I recently built e/OS 0.22q for Motorola One xt1941-4 (deen). Please refer to https://e.foundation/e-os/ to learn more about e/OS.
After several weeks of usage this ROM seems to be very useful. Find the zip file with the images of the Andoid 10 version here. Unzip and flash using adb and fastboot. Please use at your own risk!
I used the following repos in my local manifest:
https://github.com/electimon/device_motorola_deen, branch Lineage-17.1
https://github.com/electimon/vendor_motorola_deen, branch Lineage-17.1
https://github.com/100Daisy/android_kernel_motorola_deen, branch android-10-release-qpks30.54-22-13
In addition, I included
https://github.com/LineageOS/android_system_qcom, branch Lineage-17.1
which is obviously needed by some stuff from vendor. Vendor files are from 2019, so if someone could provide a more recent repo, I would be glad to know (last stock rom provided by Motorola is from October 2021)
All credits go to the creators of the LineageOS 17.1 port (link to thread at the top of this post)! Very good job guys!
Works just fine, thanks.
LSV12 said:
Works just fine, thanks.
Click to expand...
Click to collapse
Thanks!
Hi! can you make a tutorial to install this rom? i'm new at the custom roms and idk how to install, and sorry for my bad english, i'm brazillian
01nick07 said:
Hi! can you make a tutorial to install this rom? i'm new at the custom roms and idk how to install, and sorry for my bad english, i'm brazillian
Click to expand...
Click to collapse
I'm sorry, but I have no time and I am not good at making tutorials at all. Please refer to the thread referenced at the beginning of the initial post. There you should find all necessary information. If this is not enough, do some more searching and reading on XDA. If you still feel uncomfortable, stay with the stock rom.
Nice work. You succeeded where I failed
I'm trying to build on top of Q to build a e/os 0.23-R version (I see you actually managed to do this). Are you willing to share your sources (here/github) or just a hint on how to build it?
I tried to compile, but I'm stopped at the beginning of the repo-sync for a duplicate manifest.xml
Thank you.
PS: One thing I stumbled upon and managed to fix is the new way e/os manages the prebuilt apk with git lfs
The build will fail unless these apks are downloaded in a separate step. Here's the relevant info from the docs:
Those building using traditional repo sync method refer android_prebuilts_prebuiltapks_lfs 3
You will have to install git-lfs
sudo apt-get install git-lfs
After completing a repo sync, you will have to run
repo forall -c 'git lfs pull'
xdadevc said:
Nice work. You succeeded where I failed
I'm trying to build on top of Q to build a e/os 0.23-R version (I see you actually managed to do this). Are you willing to share your sources (here/github) or just a hint on how to build it?
I tried to compile, but I'm stopped at the beginning of the repo-sync for a duplicate manifest.xml
Thank you.
PS: One thing I stumbled upon and managed to fix is the new way e/os manages the prebuilt apk with git lfs
The build will fail unless these apks are downloaded in a separate step. Here's the relevant info from the docs:
Those building using traditional repo sync method refer android_prebuilts_prebuiltapks_lfs 3
You will have to install git-lfs
sudo apt-get install git-lfs
After completing a repo sync, you will have to run
repo forall -c 'git lfs pull'
Click to expand...
Click to collapse
Thanks! I wrote a report on the endeavour, where you will find almost everything of what I know.
Motorola One (xt1941-4) „deen“: How to build e/OS 0.22 – Herr Elling
fusselbart.de
Please note that I am not a ROM programmer, nor maintainer, and most of the build process is black box to me. However, I will try to build e/os 1.x after summer...
HerrElling said:
Thanks! I wrote a report on the endeavour, where you will find almost everything of what I know.
Motorola One (xt1941-4) „deen“: How to build e/OS 0.22 – Herr Elling
fusselbart.de
Please note that I am not a ROM programmer, nor maintainer, and most of the build process is black box to me. However, I will try to build e/os 1.x after summer...
Click to expand...
Click to collapse
I read your article and managed to follow it and compile my own e/os. I'm also not an android developer. I did some kernel work in the early days, around Android 2.0 but my path diverged and now I'm completely lost.
Let's keep in touch. If you restart your efforts, I'll be happy to contribute. Meanwhile I'll try my best to get some info from the e/os forums and (pray) the lineageos residual devs.

Categories

Resources