MIUI 13 21.12.29/30 - First MIUI 13


Status
Not open for further replies.
this time everything was fine I just hadn't found the cmd-here.exe file.Now I tried it and everything went well. I don't know if the installation should be clean, because some applications crash
Ok, happy for you :emoji_thumbsup:! Useing beta rom's means that from time to time you should do a fresh install or factory reset without reinstalling setings from backup , only data ! That's my opinion !
 
I suggest....

- unlocked bootloader
- install USB drivers & adb and fastboot tools
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
- create a directory c:\test
- download weekly fastboot image for your phone
- extract the fastboot image into this folder c:\test
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
- open "cmd" on your PC
- change to directory were you have installed adb & fastboot eg c:\adb
- there should be this files:
View attachment 40260
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
- connect PC and phone with USB cable
- put phone in fastboot (reboot phone and then holding "Volume - " and " Power " buttons simultaneously)
- you should see a bunny picture and an info "fastboot" on the phone
View attachment 40262
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
- type in cmd window: fastboot devices
- check if you see a number -> then all is fine
View attachment 40261
- if you dont see a number:
change USB port / change USB cable / use USB 2.0 / use an USB Hub / check driver installation
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-

- change to c:\test
- start the appropriate bat-file
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
It depends if you install the xiaomi.eu rom for the first time / you come from stable or as an update
windows_fastboot_first_install_with_data_format.bat (first time or if you come from stable)
windows_fastboot_update_rom.bat (update from another weekly)
Code:
Microsoft Windows [Version 10.0.22000.376]
(c) Microsoft Corporation. Alle Rechte vorbehalten.

C:\Users\Stasc>C:\Test
Der Befehl "C:\Test" ist entweder falsch geschrieben oder
konnte nicht gefunden werden.

C:\Users\Stasc>C:\Test
Der Befehl "C:\Test" ist entweder falsch geschrieben oder
konnte nicht gefunden werden.

C:\Users\Stasc>C:\adb
Der Befehl "C:\adb" ist entweder falsch geschrieben oder
konnte nicht gefunden werden.

C:\Users\Stasc>C:\adb
Der Befehl "C:\adb" ist entweder falsch geschrieben oder
konnte nicht gefunden werden.

C:\Users\Stasc>
C:\Users\Stasc>
C:\Users\Stasc>
C:\Users\Stasc>fastboot devices
65488f6 fastboot

C:\Users\Stasc>windows_fastboot_update_rom.bat
This package is for "alioth" devices; this is a "unknown".

C:\Users\Stasc>windows_fastboot_first_install_with_data_format.bat
This package is for "alioth" devices; this is a "unknown".

C:\Users\Stasc>fastboot devices
65488f6 fastboot

C:\Users\Stasc>windows fastboot update rom.bat
Der Befehl "windows" ist entweder falsch geschrieben oder
konnte nicht gefunden werden.

C:\Users\Stasc>C:\Users\Stasc\windows_fastboot_first_install_with_data_format.bat
This package is for "alioth" devices; this is a "unknown".

C:\Users\Stasc>
So this is as far as i get I have Poco F3.
Can anyone tell me what i am doing wrong?
 
u can find via search function
I was able to install Magisk this way without twrp.

Magisk > Install > Select and Patch a File > choose your boot.img
Copy the created magisk_patched_xxxxx.img back into the firmware folder, rename it to boot.img (keep the original one as backup) and run the update script.
 
Code:
Microsoft Windows [Version 10.0.22000.376]
(c) Microsoft Corporation. Alle Rechte vorbehalten.

C:\Users\Stasc>C:\Test
Der Befehl "C:\Test" ist entweder falsch geschrieben oder
konnte nicht gefunden werden.

C:\Users\Stasc>C:\Test
Der Befehl "C:\Test" ist entweder falsch geschrieben oder
konnte nicht gefunden werden.

C:\Users\Stasc>C:\adb
Der Befehl "C:\adb" ist entweder falsch geschrieben oder
konnte nicht gefunden werden.

C:\Users\Stasc>C:\adb
Der Befehl "C:\adb" ist entweder falsch geschrieben oder
konnte nicht gefunden werden.

C:\Users\Stasc>
C:\Users\Stasc>
C:\Users\Stasc>
C:\Users\Stasc>fastboot devices
65488f6 fastboot

C:\Users\Stasc>windows_fastboot_update_rom.bat
This package is for "alioth" devices; this is a "unknown".

C:\Users\Stasc>windows_fastboot_first_install_with_data_format.bat
This package is for "alioth" devices; this is a "unknown".

C:\Users\Stasc>fastboot devices
65488f6 fastboot

C:\Users\Stasc>windows fastboot update rom.bat
Der Befehl "windows" ist entweder falsch geschrieben oder
konnte nicht gefunden werden.

C:\Users\Stasc>C:\Users\Stasc\windows_fastboot_first_install_with_data_format.bat
This package is for "alioth" devices; this is a "unknown".

C:\Users\Stasc>
So this is as far as i get I have Poco F3.
Can anyone tell me what i am doing wrong?
everything… if you want to upgrade any longer please add this address to your addressbook for unbrick…

https://t.me/*spam*paid*service*

I have described it in very detail…

to change a directory in windows…
cd c:\test

without any words….
 
  • Like
Reactions: Poney70 and @APan
I was able to install Magisk this way without twrp.

Magisk > Install > Select and Patch a File > choose your boot.img
Copy the created magisk_patched_xxxxx.img back into the firmware folder, rename it to boot.img (keep the original one as backup) and run the update script.
this is one way… the complicated. on the other hand magisk is not a topic in the weekly thread…
 
everything… if you want to upgrade any longer please add this address to your addressbook for unbrick…

https://t.me/*spam*paid*service*

I have described it in very detail…

to change a directory in windows…
cd c:\test

without any words….
Thank you for the help, but no matter how i try it still shows in cmd my poco f3 as an unknown so i guess i will have to wait for recovery rom.
I am getting an ota update notification for latest stable today, will it install by itself or will it only work through fastboot?
Also, after getting error in cmd that the script is looking for alioth device, could the script be updated so that it searches for redmi k40 instead?
I opened up the script and it looked easy enough to edit for whoever edits scripts.
alioth is shown two times in the script and i´m not sure if changing it to redmi k40 would even work, but i am not going to expirement with failure.

Here is the script to see:

@echo off
cd %~dp0
set DEVICE=unknown
for /f "tokens=2" %%D in ('platform-tools-windows\fastboot %* getvar product 2^>^&1 ^| findstr /l /b /c:"product:"') do set DEVICE=%%D
if "%DEVICE%" neq "alioth" echo This package is for "alioth" devices; this is a "%DEVICE%". & exit /B 1

set /p CHOICE=You are going to wipe your data and internal storage. It will delete all your files and photos stored on internal storage. Do you agree? (Y/N)
if /i "%CHOICE%" neq "y" exit /B 0

platform-tools-windows\fastboot %* set_active a
platform-tools-windows\fastboot %* flash dsp_ab images\dsp.img
platform-tools-windows\fastboot %* flash xbl_config_ab images\xbl_config.img
platform-tools-windows\fastboot %* flash boot_ab images\boot.img
platform-tools-windows\fastboot %* flash modem_ab images\modem.img
platform-tools-windows\fastboot %* flash vbmeta_system_ab images\vbmeta_system.img
platform-tools-windows\fastboot %* flash tz_ab images\tz.img
platform-tools-windows\fastboot %* flash vbmeta_ab images\vbmeta.img
platform-tools-windows\fastboot %* flash bluetooth_ab images\bluetooth.img
platform-tools-windows\fastboot %* flash abl_ab images\abl.img
platform-tools-windows\fastboot %* flash dtbo_ab images\dtbo.img
platform-tools-windows\fastboot %* flash featenabler_ab images\featenabler.img
platform-tools-windows\fastboot %* flash vendor_boot_ab images\vendor_boot.img
platform-tools-windows\fastboot %* flash keymaster_ab images\keymaster.img
platform-tools-windows\fastboot %* flash uefisecapp_ab images\uefisecapp.img
platform-tools-windows\fastboot %* flash qupfw_ab images\qupfw.img
platform-tools-windows\fastboot %* flash xbl_ab images\xbl.img
platform-tools-windows\fastboot %* flash cmnlib_ab images\cmnlib.img
platform-tools-windows\fastboot %* flash cmnlib64_ab images\cmnlib64.img
platform-tools-windows\fastboot %* flash devcfg_ab images\devcfg.img
platform-tools-windows\fastboot %* flash hyp_ab images\hyp.img
platform-tools-windows\fastboot %* flash imagefv_ab images\imagefv.img
platform-tools-windows\fastboot %* flash aop_ab images\aop.img
platform-tools-windows\fastboot %* flash cust images\cust.img
platform-tools-windows\fastboot %* flash super images\super.img
platform-tools-windows\fastboot %* erase metadata
platform-tools-windows\fastboot -w
platform-tools-windows\fastboot %* set_active a
platform-tools-windows\fastboot %* reboot
 
Last edited:
You want to lock the security app using the security app? :emoji_laughing:
What sort of loop are you trying to create?
That is just not done anywhere... it's common sense.
I dont think you quite understood me sir. All im saying is that if you open the security application at the home screen you get access to the toolbox - to the cleaner - to permissions..and of course other stuff.

Im just trying to prevent -my kids- to mess up things by mistake. Thats why i want to lock "app" also so it will need a fingerprint to open.

But ok, maybe im just a mad guy right? lets laugh...lets all laugh.


Goodnight by me.
 
  • Like
  • Haha
Reactions: biscoot and @APan
Hello.. recently I bought a Mi11 (venus) and I unlock the bootloader. I'm on global stable with stock recovery. I read about twrp issues for A12 and so my question is: can I install via fastboot + format data (with stock recovery)? No other steps, it's correct?
Thanks to all
 
Hello.. recently I bought a Mi11 (venus) and I unlock the bootloader. I'm on global stable with stock recovery. I read about twrp issues for A12 and so my question is: can I install via fastboot + format data (with stock recovery)? No other steps, it's correct?
Thanks to all
Since it is a fastboot rom, you are right.
 
  • Like
Reactions: mycro_7 and KGVER
in the end, I do factory reset and the storage issue is solved.
So i suggest to all of you to do a factory reset
i have mi11
 
  • Like
Reactions: KGVER
I Installed MIUI 13 21.12.30 version on my Mi 10 and now I am realising that I can't install APKs. The install just fails, so I can only i.stall stuff via playstore
 
Please see the screenshot and run the command i put in red box in fastboot mode, the output should be alioth. What is your output?

1641437449623.png


Thank you for the help, but no matter how i try it still shows in cmd my poco f3 as an unknown so i guess i will have to wait for recovery rom.
I am getting an ota update notification for latest stable today, will it install by itself or will it only work through fastboot?
Also, after getting error in cmd that the script is looking for alioth device, could the script be updated so that it searches for redmi k40 instead?
I opened up the script and it looked easy enough to edit for whoever edits scripts.
alioth is shown two times in the script and i´m not sure if changing it to redmi k40 would even work, but i am not going to expirement with failure.
 
  • Like
Reactions: @APan and biscoot
I Installed MIUI 13 21.12.30 version on my Mi 10 and now I am realising that I can't install APKs. The install just fails, so I can only i.stall stuff via playstore
if its because u want to install 3 part app u can just get package installer a12 from google from apkmirror an install it then u can install thoose apps u want
 
Hello. Sorry but i need help.
I bought the mi 11 pro, with xiaomi.eu ROM via trwp.
Yesterday the system said that i have a new version to update, but when i try to download, it takes to long, and return the error :the update not respondi g (error in português attached).
With trwp the seller said that the update is automatic.
Can Anyone help me?
Thanks.
José Miguel Costa.
Portugal
 

Attachments

  • Screenshot_2022-01-06-08-17-25-170_com.android.updater.jpg
    Screenshot_2022-01-06-08-17-25-170_com.android.updater.jpg
    290.2 KB · Views: 243
  • Screenshot_2022-01-06-08-17-10-265_com.android.updater.jpg
    Screenshot_2022-01-06-08-17-10-265_com.android.updater.jpg
    310.8 KB · Views: 239
I'm happy: after factory reset from settings menu, my mi11 is perfect. Storage issue is solved!!!
The only things that not works is the VPN connection to my home (to my fritzbox router). has someone this issue?

A NOOB QUSTION:
when next weekly will be release, to upgrade, have I first to reflash TWRP recovery? Or can I execute the update file .bat (without format data) directly without reflash twrp? Thanks
 
I'm happy: after factory reset from settings menu, my mi11 is perfect. Storage issue is solved!!!
The only things that not works is the VPN connection to my home (to my fritzbox router). has someone this issue?

A NOOB QUSTION:
when next weekly will be release, to upgrade, have I first to reflash TWRP recovery? Or can I execute the update file .bat (without format data) directly without reflash twrp? Thanks
if its for fastboot an u are on weekly u just execute .bat without format
 
  • Like
Reactions: biscoot and geoorg
Status
Not open for further replies.

Similar threads

  • Locked
HyperOS 1.0 24.3.4
Replies
150
Views
42K
  • Locked
HyperOS 1.0 24.2.26
Replies
161
Views
49K
Replies
470
Views
130K
Replies
378
Views
125K