F30POST
F30POST
2012-2015 BMW 3-Series and 4-Series Forum
BMW Garage BMW Meets Register Today's Posts
BMW 3-Series and 4-Series Forum (F30 / F32) | F30POST > Technical Forums > Navigation, iDrive, Audio, Video, Bluetooth, Phone, Cameras, Electronics > 10.25" Android 9/10 HU theming and discussion
Extreme Powerhouse
Post Reply
 
Thread Tools Search this Thread
      03-05-2024, 01:11 PM   #1343
pinkycz
New Member
3
Rep
5
Posts

Drives: E90,E91, F20
Join Date: Dec 2017
Location: United Kingdom

iTrader: (0)

Quote:
Originally Posted by elshanguliyev View Post
Hello, have a good time.
I connected the computer to the monitor but can't access root.
No matter how hard I tried to get root, it was not possible.
Has anyone encountered such a problem?
Hi,
I have similar unit 825X_Pro with Android13 and run into the same dead end.
Mine is


Tried the PX6 way from the start of this thread as suggested by RedErik
Upon connecting via adb attempting to root I get
Code:
>adb root
cxj said not suport, 88
that's it.
Trying su in shell gives me "su:not allowed"

will be a bit harder to gain root to these HUs I guess

Any ideas appreciated!
Appreciate 0
      03-06-2024, 04:38 AM   #1344
RedErik
Colonel
RedErik's Avatar
Scotland
1024
Rep
2,366
Posts

Drives: E63 645Ci
Join Date: Oct 2019
Location: Inverness

iTrader: (0)

Garage List
2004 E63 645Ci  [0.00]
Quote:
Originally Posted by pinkycz View Post
Hi,
I have similar unit 825X_Pro with Android13 and run into the same dead end.
Mine is


Tried the PX6 way from the start of this thread as suggested by RedErik
Upon connecting via adb attempting to root I get
Code:
>adb root
cxj said not suport, 88
that's it.
Trying su in shell gives me "su:not allowed"

will be a bit harder to gain root to these HUs I guess

Any ideas appreciated!
Your unit is locked down, you would need to root it first. Unfortunately we don't know much about these so can't help you, sorry. Try looking at XDA or 4PDA.ru forums.
Appreciate 0
      03-14-2024, 09:13 PM   #1345
S EyeLand
Second Lieutenant
159
Rep
202
Posts

Drives: F90 M5C
Join Date: Apr 2022
Location: NYC

iTrader: (1)

Hey guys, I bought this screen for my F90. It's great, resolution is crisp, and the OS is very snappy. Anyway, the default boot animation is the only weak point. The resolution claims to be 2560*720 which seems correct. I'm guessing i would have to create a custom animation. Otherwise, the process would be the same?
Appreciate 0
      03-15-2024, 01:53 AM   #1346
RedErik
Colonel
RedErik's Avatar
Scotland
1024
Rep
2,366
Posts

Drives: E63 645Ci
Join Date: Oct 2019
Location: Inverness

iTrader: (0)

Garage List
2004 E63 645Ci  [0.00]
Quote:
Originally Posted by S EyeLand View Post
Hey guys, I bought this screen for my F90. It's great, resolution is crisp, and the OS is very snappy. Anyway, the default boot animation is the only weak point. The resolution claims to be 2560*720 which seems correct. I'm guessing i would have to create a custom animation. Otherwise, the process would be the same?
That is not a KSW unit. We don't know what the procedure for changing animations is... if there is one at all.
Appreciate 0
      03-22-2024, 06:23 AM   #1347
pinkycz
New Member
3
Rep
5
Posts

Drives: E90,E91, F20
Join Date: Dec 2017
Location: United Kingdom

iTrader: (0)

Quote:
Originally Posted by RedErik View Post
Your unit is locked down, you would need to root it first. Unfortunately we don't know much about these so can't help you, sorry. Try looking at XDA or 4PDA.ru forums.
I have now managed to get bootanimation working on my 825X_Pro unit (8259 chipset). I bought it from Ali seller SZ-KIANDA Official Store - Shenzen Kianda Auto Electronic Co., Ltd. The unit runs Android13, mine is 8GB Ram, 128GB SDRAM.
Anyone who would like to give it a try, I suggest to read the RedErik post on the first page of this thread related to PX6 units.
My 8259 unit was only playing "android" glowing logo at the boot start. Confusingly, I did not find this being a dedicated bootanimation, it appears the system has none, so this is Android OS default.
You need to be able to establish adb connection to your HU. Follow the guide to the point where there is
Code:
adb root
command. This will probably error as did on my unit, so keep reading.
Enter the following commands:
Code:
adb shell
you will now be in HU's shell and enter
Code:
su @#zxcvbnmasdfghjklqwertyuiop1234567890,.
remount
At this point your will be kicked from shell and back to command line.
Insert the USB disk with your bootanimation.zip file and check how is this udentified under your HU (you can use ES Explorer or similar file epxlorer on your HU).
Reconnect back after remount, you should now have RW access to your HU.
Code:
adb shell
If you haven't identified how is your USB stick recognised on your system, you can now check in shell too
Code:
cd /storage/
ls
My stick is detected as udisk1. As it has two partitions, storage list them as udisk1p1 and udisk1p2. I have stored my boot animation on the primary partition, yours might be different so modify the below to match your input device
Code:
 cp /storage/udisk1p1/bootanimation.zip /system/media/bootanimation.zip
That's it. I did not need to adjust permissions using CHMOD so this was the finish for me.
You can now reboot your unit and your effort be rewarded by desired bootanimation playing.



thanks to RedErik for his work, I hope my bit will allow few more guys to enjoy it on their units too now.

Last edited by pinkycz; 03-22-2024 at 06:28 AM..
Appreciate 2
      03-23-2024, 07:49 AM   #1348
RedErik
Colonel
RedErik's Avatar
Scotland
1024
Rep
2,366
Posts

Drives: E63 645Ci
Join Date: Oct 2019
Location: Inverness

iTrader: (0)

Garage List
2004 E63 645Ci  [0.00]
Quote:
Originally Posted by pinkycz View Post
I have now managed to get bootanimation working on my 825X_Pro unit (8259 chipset). I bought it from Ali seller SZ-KIANDA Official Store - Shenzen Kianda Auto Electronic Co., Ltd. The unit runs Android13, mine is 8GB Ram, 128GB SDRAM.
Anyone who would like to give it a try, I suggest to read the RedErik post on the first page of this thread related to PX6 units.
My 8259 unit was only playing "android" glowing logo at the boot start. Confusingly, I did not find this being a dedicated bootanimation, it appears the system has none, so this is Android OS default.
You need to be able to establish adb connection to your HU. Follow the guide to the point where there is
Code:
adb root
command. This will probably error as did on my unit, so keep reading.
Enter the following commands:
Code:
adb shell
you will now be in HU's shell and enter
Code:
su @#zxcvbnmasdfghjklqwertyuiop1234567890,.
remount
At this point your will be kicked from shell and back to command line.
Insert the USB disk with your bootanimation.zip file and check how is this udentified under your HU (you can use ES Explorer or similar file epxlorer on your HU).
Reconnect back after remount, you should now have RW access to your HU.
Code:
adb shell
If you haven't identified how is your USB stick recognised on your system, you can now check in shell too
Code:
cd /storage/
ls
My stick is detected as udisk1. As it has two partitions, storage list them as udisk1p1 and udisk1p2. I have stored my boot animation on the primary partition, yours might be different so modify the below to match your input device
Code:
 cp /storage/udisk1p1/bootanimation.zip /system/media/bootanimation.zip
That's it. I did not need to adjust permissions using CHMOD so this was the finish for me.
You can now reboot your unit and your effort be rewarded by desired bootanimation playing.



thanks to RedErik for his work, I hope my bit will allow few more guys to enjoy it on their units too now.
Excellent work! I will include your guide in the post about changing animations. I'm sure it will help a lot of people. Thanks again for sharing that!
Appreciate 0
      03-25-2024, 01:22 PM   #1349
ypolyachenko
New Member
2
Rep
6
Posts

Drives: 2004 E61 530d
Join Date: Mar 2024
Location: UA

iTrader: (0)

Quote:
Originally Posted by LuQ View Post
I have Windows 11 Home.
What if I try to change it manually, by factory menu?
I need bootlogo.zip file in OEM folder.
If I make just bootlogo.zip with imagefv.bmp inside, and press "Import", I get information that logo is changed successfully, but really nothing changes, so i think that in bootlogo.zip file should be more specific folders or files (like in bootanimation.zip) to do it right.
I was fighting with bootlogo for some time.
At first, I successfully changed the boot animation part. The rest of the attempts were with a "Success" message, but no real effect.

Then I reset the current boot animation with bootanimation_clear.zip.
Reboot and one more attempt with success for both bootlogo and bootanimation parts.

The content of the OEM folder in my case was
OEM\
imagefv.bmp <-- image created using MaPaint
bootanimation.zip <-- archive created using BootAnimator tool

voila

you can check my bootlogo and bootanimation here
Appreciate 0
      03-25-2024, 01:28 PM   #1350
ypolyachenko
New Member
2
Rep
6
Posts

Drives: 2004 E61 530d
Join Date: Mar 2024
Location: UA

iTrader: (0)

Quote:
Originally Posted by elshanguliyev View Post
PX6 guide can you write to me?
Thank you for your help.
Possibly this recent guide will help in your case
Appreciate 0
      04-20-2024, 06:37 PM   #1351
petrutaursu
Registered
0
Rep
1
Posts

Drives: bmw e90
Join Date: Apr 2024
Location: france

iTrader: (0)

Talking Guys I made a custom M sport animation for bmw

I couldn't find a nice one online so I made my own. Link here: https://youtu.be/bjXrH2QU0o8
Appreciate 0
Post Reply

Bookmarks


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off



All times are GMT -5. The time now is 04:57 AM.




f30post
Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2024, vBulletin Solutions Inc.
1Addicts.com, BIMMERPOST.com, E90Post.com, F30Post.com, M3Post.com, ZPost.com, 5Post.com, 6Post.com, 7Post.com, XBimmers.com logo and trademark are properties of BIMMERPOST