Register Guidelines E-Books Search Today's Posts Mark Forums Read

Go Back   MobileRead Forums > E-Book Readers > Onyx Boox

Notices

Reply
 
Thread Tools Search this Thread
Old 03-04-2025, 10:59 PM   #1
alonerbg
Junior Member
alonerbg began at the beginning.
 
Posts: 8
Karma: 10
Join Date: Mar 2025
Device: onyx boox tab8c
[Request] Tab MiniC Firmware Download

Can anyone help me to install the Boox Tab MiniC firmware on my Tabi 8C (minC but for china market). I live outside of China and I cannot connect wifi normally with this device. I tried so many settings, update to latest firmware, change settings for my router, my tab, but nothing worked, I'm desperate now This is my last hope

Last edited by alonerbg; 03-04-2025 at 11:00 PM. Reason: add more information
alonerbg is offline   Reply With Quote
Old 03-07-2025, 06:08 PM   #2
timschneeb
Junior Member
timschneeb began at the beginning.
 
Posts: 1
Karma: 10
Join Date: Mar 2025
Device: Onyx Boox Go Color 7
Firmware download URLs can be requested using the API: http://data.onyx-international.cn/api/firmware/update?where={%22buildNumber%22:0,%22buildType%22: %22user%22,%22deviceMAC%22:%22%22,%22lang%22:%22en _US%22,%22model%22:%22TabMiniC%22,%22submodel%22:% 22%22,%22fingerprint%22:%22%22}

Here's the current link for the Tab Mini C (stable version from 2024): http://firmware-us.boox.com/38d6130a...aa6/update.upx

Use https://github.com/Hagb/decryptBooxUpdateUpx (requires python) to decrypt the upx:
Code:
python DeBooxUpx.py TabMiniC update.upx
Then, boot into the recovery, select Apply update using ADB, connect your phone to the PC and run:
Code:
adb sideload update.zip
Worked for me after I had to recover from a boot loop.


About the WIFI issue: maybe the WIFI country code is still set to China, and it tries to use the different WIFI frequencies that your router doesn't support?

You can force Android to use a WIFI channel list of a specific country using ADB. However, this requires a rooted device.

These commands work for me on a Go Color 7:

Code:
# Log in from your PC and use root
adb shell
su

# To read the current setting:
cmd wifi get-country-code

# To force a custom country code (root required):
cmd wifi force-country-code enabled <2-Letter Country code>

# Then restart the WIFI subsystem
cmd wifi trigger-recovery
It looks like the setting doesn't persist after a reboot. But other people just installed a script that runs it on boot: https://xdaforums.com/t/guide-root-c...id-10.4703941/
timschneeb is offline   Reply With Quote
Old 03-13-2025, 03:59 AM   #3
alonerbg
Junior Member
alonerbg began at the beginning.
 
Posts: 8
Karma: 10
Join Date: Mar 2025
Device: onyx boox tab8c
Quote:
Originally Posted by timschneeb View Post
Firmware download URLs can be requested using the API: http://data.onyx-international.cn/api/firmware/update?where={%22buildNumber%22:0,%22buildType%22: %22user%22,%22deviceMAC%22:%22%22,%22lang%22:%22en _US%22,%22model%22:%22TabMiniC%22,%22submodel%22:% 22%22,%22fingerprint%22:%22%22}

Here's the current link for the Tab Mini C (stable version from 2024): http://firmware-us.boox.com/38d6130a...aa6/update.upx

Use https://github.com/Hagb/decryptBooxUpdateUpx (requires python) to decrypt the upx:
Code:
python DeBooxUpx.py TabMiniC update.upx
Thank you, I was able to sideload the tab miniC fw to my tab8c but still the same wifi problem, and I've tried to find a guide to root Tab MiniC but have not found anything. Any solution for un-root device?

Then, boot into the recovery, select Apply update using ADB, connect your phone to the PC and run:
Code:
adb sideload update.zip
Worked for me after I had to recover from a boot loop.


About the WIFI issue: maybe the WIFI country code is still set to China, and it tries to use the different WIFI frequencies that your router doesn't support?

You can force Android to use a WIFI channel list of a specific country using ADB. However, this requires a rooted device.

These commands work for me on a Go Color 7:

Code:
# Log in from your PC and use root
adb shell
su

# To read the current setting:
cmd wifi get-country-code

# To force a custom country code (root required):
cmd wifi force-country-code enabled <2-Letter Country code>

# Then restart the WIFI subsystem
cmd wifi trigger-recovery
It looks like the setting doesn't persist after a reboot. But other people just installed a script that runs it on boot: https://xdaforums.com/t/guide-root-c...id-10.4703941/
thank you, I sideloaded my tab8c with tab miniC firmware, but still the same wifi problem, and I've found no guide to root my device, any suggestion?
alonerbg is offline   Reply With Quote
Old 03-15-2025, 05:28 AM   #4
Renate
Onyx-maniac
Renate ought to be getting tired of karma fortunes by now.Renate ought to be getting tired of karma fortunes by now.Renate ought to be getting tired of karma fortunes by now.Renate ought to be getting tired of karma fortunes by now.Renate ought to be getting tired of karma fortunes by now.Renate ought to be getting tired of karma fortunes by now.Renate ought to be getting tired of karma fortunes by now.Renate ought to be getting tired of karma fortunes by now.Renate ought to be getting tired of karma fortunes by now.Renate ought to be getting tired of karma fortunes by now.Renate ought to be getting tired of karma fortunes by now.
 
Posts: 3,540
Karma: 14705253
Join Date: Feb 2012
Device: Nook NST, Glow2, 3, 4, '21, Kobo Aura2, Poke3, Poke5, Go6
The problem may be because the kernel and the WiFi kernel module don't agree?

Rooting is the same as all Onyx. Get the boot image directly off the device or from an update. Magisk it. Write it to the boot partition using EDL (since fastboot is mostly useless nowadays).
Renate is online now   Reply With Quote
Old 03-19-2025, 03:37 AM   #5
vuanh1408
Junior Member
vuanh1408 began at the beginning.
 
Posts: 5
Karma: 10
Join Date: Jan 2014
Device: nook simple touch with glowlight
Quote:
Originally Posted by timschneeb View Post
Firmware download URLs can be requested using the API: http://data.onyx-international.cn/api/firmware/update?where={%22buildNumber%22:0,%22buildType%22: %22user%22,%22deviceMAC%22:%22%22,%22lang%22:%22en _US%22,%22model%22:%22TabMiniC%22,%22submodel%22:% 22%22,%22fingerprint%22:%22%22}

Here's the current link for the Tab Mini C (stable version from 2024): http://firmware-us.boox.com/38d6130a...aa6/update.upx

Use https://github.com/Hagb/decryptBooxUpdateUpx (requires python) to decrypt the upx:
Code:
python DeBooxUpx.py TabMiniC update.upx
Then, boot into the recovery, select Apply update using ADB, connect your phone to the PC and run:
Code:
adb sideload update.zip
Worked for me after I had to recover from a boot loop.


About the WIFI issue: maybe the WIFI country code is still set to China, and it tries to use the different WIFI frequencies that your router doesn't support?

You can force Android to use a WIFI channel list of a specific country using ADB. However, this requires a rooted device.

These commands work for me on a Go Color 7:

Code:
# Log in from your PC and use root
adb shell
su

# To read the current setting:
cmd wifi get-country-code

# To force a custom country code (root required):
cmd wifi force-country-code enabled <2-Letter Country code>

# Then restart the WIFI subsystem
cmd wifi trigger-recovery
It looks like the setting doesn't persist after a reboot. But other people just installed a script that runs it on boot: https://xdaforums.com/t/guide-root-c...id-10.4703941/
Hi. I have a Tab 8c (chinese version of Mini C) and want to convert to Mini C firmware as well. My 8c is running on 3.5.4 version. I'm not sure what firmware version your download link is, so i tried the API link you gave but it return Internal Server Error. Could you help. Thanks alot
vuanh1408 is offline   Reply With Quote
Old 03-19-2025, 09:13 AM   #6
Renate
Onyx-maniac
Renate ought to be getting tired of karma fortunes by now.Renate ought to be getting tired of karma fortunes by now.Renate ought to be getting tired of karma fortunes by now.Renate ought to be getting tired of karma fortunes by now.Renate ought to be getting tired of karma fortunes by now.Renate ought to be getting tired of karma fortunes by now.Renate ought to be getting tired of karma fortunes by now.Renate ought to be getting tired of karma fortunes by now.Renate ought to be getting tired of karma fortunes by now.Renate ought to be getting tired of karma fortunes by now.Renate ought to be getting tired of karma fortunes by now.
 
Posts: 3,540
Karma: 14705253
Join Date: Feb 2012
Device: Nook NST, Glow2, 3, 4, '21, Kobo Aura2, Poke3, Poke5, Go6
Quote:
Originally Posted by vuanh1408 View Post
I tried the API link you gave but it return Internal Server Error.
The link works for me.
Renate is online now   Reply With Quote
Old 03-19-2025, 09:44 AM   #7
vuanh1408
Junior Member
vuanh1408 began at the beginning.
 
Posts: 5
Karma: 10
Join Date: Jan 2014
Device: nook simple touch with glowlight
Quote:
Originally Posted by Renate View Post
The link works for me.
Hi, i means this API
Code:
http://data.onyx-international.cn/api/firmware/update?where={%22buildNumber%22:0,%22buildType%22: %22user%22,%22deviceMAC%22:%22%22,%22lang%22:%22en _US%22,%22model%22:%22TabMiniC%22,%22submodel%22:% 22%22,%22fingerprint%22:%22%22}
I want to use this API because it also show which version this is.

This link works for me too: http://firmware-us.boox.com/38d6130a...aa6/update.upx
But i just dont know which version is it? Is it 3.5.4?
vuanh1408 is offline   Reply With Quote
Old 03-19-2025, 12:51 PM   #8
Renate
Onyx-maniac
Renate ought to be getting tired of karma fortunes by now.Renate ought to be getting tired of karma fortunes by now.Renate ought to be getting tired of karma fortunes by now.Renate ought to be getting tired of karma fortunes by now.Renate ought to be getting tired of karma fortunes by now.Renate ought to be getting tired of karma fortunes by now.Renate ought to be getting tired of karma fortunes by now.Renate ought to be getting tired of karma fortunes by now.Renate ought to be getting tired of karma fortunes by now.Renate ought to be getting tired of karma fortunes by now.Renate ought to be getting tired of karma fortunes by now.
 
Posts: 3,540
Karma: 14705253
Join Date: Feb 2012
Device: Nook NST, Glow2, 3, 4, '21, Kobo Aura2, Poke3, Poke5, Go6
Code:
Model:  TabMiniC (English)
Finger: Onyx/TabMiniC/TabMiniC:11/2024-09-11_09-13_3.5.4_fbdec6b69a/47380:user/release-keys
Link:   http://firmware-us.boox.com/38d6130aca3ff28b72cff4b036c2daa6/update.upx
Size:   1,799,849,396
MD5:    38d6130aca3ff28b72cff4b036c2daa6
Renate is online now   Reply With Quote
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
BOOX Firmware 4.0 Beta for Tab Ultra C Pro stetre_76 Onyx Boox 2 01-17-2025 02:58 AM
Request: Note2 firmware v3.2.4 logman012 Onyx Boox 1 02-14-2023 08:50 PM
Firmware request kretalon Onyx Boox 1 08-18-2019 04:10 PM
Feature Request: Download from Url khahoon Calibre 1 05-25-2013 01:18 PM
PRS-T1 Future Firmware Request bibahbuzemann Sony Reader 32 01-21-2012 02:54 PM


All times are GMT -4. The time now is 12:30 PM.


MobileRead.com is a privately owned, operated and funded community.