Register Guidelines E-Books Today's Posts Search

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

Notices

Reply
 
Thread Tools Search this Thread
Old 12-15-2022, 02:17 AM   #31
ottischwenk
Wizard
ottischwenk ought to be getting tired of karma fortunes by now.ottischwenk ought to be getting tired of karma fortunes by now.ottischwenk ought to be getting tired of karma fortunes by now.ottischwenk ought to be getting tired of karma fortunes by now.ottischwenk ought to be getting tired of karma fortunes by now.ottischwenk ought to be getting tired of karma fortunes by now.ottischwenk ought to be getting tired of karma fortunes by now.ottischwenk ought to be getting tired of karma fortunes by now.ottischwenk ought to be getting tired of karma fortunes by now.ottischwenk ought to be getting tired of karma fortunes by now.ottischwenk ought to be getting tired of karma fortunes by now.
 
ottischwenk's Avatar
 
Posts: 2,869
Karma: 3933245
Join Date: Sep 2012
Location: Salzburg AT
Device: Boox 4/14, Like-/Meebook 1/8, Tolino 1/10, Kobo 0/5, Kindle 0/3
Quote:
Originally Posted by rexbanner View Post
Just to add a data point: I synced a "large" folder to my Tab Ultra and timed the ls operation. With roughly 7500 files, it came out at around 13 seconds:

Code:
BOOX:/ $ time ls -Rl sdcard/Documents/ | wc                                                        
7483   51281  464234
0m13.43s real     0m01.17s user     0m03.21s system
I didnt test 7500 files, but 4.000 and 5.000 are shown immediately, but 10.000 need 3 minutes and 16500 more than 7 minutes.
ottischwenk is online now   Reply With Quote
Old 12-15-2022, 07:50 AM   #32
Renate
Wizard
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: 2,318
Karma: 9999999
Join Date: Feb 2012
Device: Nook NST, Glow2, 3, 4, '21, Kobo Aura2, Poke3, Poke5
Quote:
Originally Posted by rexbanner View Post
Thanks! I tried this one first and it worked flawlessly!
Great! Were you using my edl.exe or the Python one?
Verified: Firehose loader for Tab Ultra

Slow listing

Ok, I kind of know what's going on, almost, sort of, possibly.

The Android Chimera (malware detection) running in the background is trying to do something. To keep doing it it's trying to get a Wake Lock. It's not allowed. That causes the System Server to write a error log for DropBox (why?) which it does to the staging area in /data/system/dropbox/ but then the DropBoxService tries to inform the DropBox provider (in KCB) with a broadcast intent (which it's not allowed to do).

This will certainly fix it:
Code:
pm disable com.google.android.gms/.chimera.GmsIntentOperationService
But you'd have to be root to do it.

All this junk is in /system/priv-app/PrebuiltGmsCore/PrebuiltGmsCore.apk

In any case, you can do a quick check that everything works beautifully with Android stopped (but again, you need root for that).

Last edited by Renate; 12-15-2022 at 07:57 AM.
Renate is offline   Reply With Quote
Advert
Old 12-15-2022, 11:32 AM   #33
rexbanner
Member
rexbanner began at the beginning.
 
Posts: 24
Karma: 10
Join Date: Dec 2022
Device: none
Quote:
Originally Posted by Renate View Post
Great! Were you using my edl.exe or the Python one?
I did this on a linux machine so I used the Python one.

Quote:
Originally Posted by Renate View Post
Slow listing

Ok, I kind of know what's going on, almost, sort of, possibly.

The Android Chimera (malware detection) running in the background is trying to do something. To keep doing it it's trying to get a Wake Lock. It's not allowed. That causes the System Server to write a error log for DropBox (why?) which it does to the staging area in /data/system/dropbox/ but then the DropBoxService tries to inform the DropBox provider (in KCB) with a broadcast intent (which it's not allowed to do).

This will certainly fix it:
Code:
pm disable com.google.android.gms/.chimera.GmsIntentOperationService
But you'd have to be root to do it.

All this junk is in /system/priv-app/PrebuiltGmsCore/PrebuiltGmsCore.apk

In any case, you can do a quick check that everything works beautifully with Android stopped (but again, you need root for that).
Out of curiosity, I just tried this and even with chimera disabled as you said, the time ls takes is the same

Code:
BOOX:/sdcard/Documents $ time ls -Rl tmp/ | wc
  14054  112419  852684    
2m59.88s real     0m00.72s user     0m03.72s system
BOOX:/sdcard/Documents $ su
BOOX:/storage/emulated/0/Documents # pm disable com.google.android.gms/.chimera.GmsIntentOperationService
Component {com.google.android.gms/com.google.android.gms.chimera.GmsIntentOperationService} new state: disabled
BOOX:/storage/emulated/0/Documents # time ls -Rl tmp/ | wc
  14464  115699  877236    
3m08.95s real     0m00.54s user     0m03.98s system
(The different file numbers are because it was still syncing, it's a folder with 20000 empty files.)

After stopping android I get an error message:
Code:
BOOX:/storage/emulated/0/Documents # stop
BOOX:/storage/emulated/0/Documents # ls
ls: .: Transport endpoint is not connected
rexbanner is offline   Reply With Quote
Old 12-15-2022, 11:53 AM   #34
Renate
Wizard
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: 2,318
Karma: 9999999
Join Date: Feb 2012
Device: Nook NST, Glow2, 3, 4, '21, Kobo Aura2, Poke3, Poke5
Quote:
Originally Posted by rexbanner View Post
Code:
BOOX:/storage/emulated/0/Documents # ls
ls: .: Transport endpoint is not connected
Well, that's weird. I guess it stopped the fuse/sdcard/whatever daemon.
You're rooted, just try this:
Code:
Poke3:/data/media/0 # time ls -Rl | wc
  15613  111760  983059
    0m00.55s real     0m00.28s user     0m00.47s system

Last edited by Renate; 12-15-2022 at 11:57 AM.
Renate is offline   Reply With Quote
Old 12-15-2022, 11:57 AM   #35
rexbanner
Member
rexbanner began at the beginning.
 
Posts: 24
Karma: 10
Join Date: Dec 2022
Device: none
Quote:
Originally Posted by Renate View Post
Well, that's weird. I guess it stopped the fuse/sdcard/whatever daemon.
You're rooted, just try this:
Code:
# cd /data/media/0
# time ls -Rl | wc
That works and listing is as fast as one would hope:

Code:
BOOX:/data/media/0/Documents # time ls -Rl tmp/ | wc
20002  160003 1268908
0m00.69s real     0m00.33s user     0m00.38s system
rexbanner is offline   Reply With Quote
Advert
Old 12-15-2022, 12:05 PM   #36
Renate
Wizard
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: 2,318
Karma: 9999999
Join Date: Feb 2012
Device: Nook NST, Glow2, 3, 4, '21, Kobo Aura2, Poke3, Poke5
So, start Android again and check /data/media/0 (and not anything sdcard-ish).
Renate is offline   Reply With Quote
Old 12-15-2022, 12:09 PM   #37
rexbanner
Member
rexbanner began at the beginning.
 
Posts: 24
Karma: 10
Join Date: Dec 2022
Device: none
Same fast listing with started android:

Code:
BOOX:/data/media/0/Documents/tmp # time ls -Rl  | wc
20002  160003 1268905
0m00.69s real     0m00.30s user     0m00.41s system
rexbanner is offline   Reply With Quote
Old 12-15-2022, 12:20 PM   #38
Renate
Wizard
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: 2,318
Karma: 9999999
Join Date: Feb 2012
Device: Nook NST, Glow2, 3, 4, '21, Kobo Aura2, Poke3, Poke5
So, you're saying stop/start fixed it?

Maybe restart and check the whole scenario again?
Renate is offline   Reply With Quote
Old 12-15-2022, 12:30 PM   #39
ottischwenk
Wizard
ottischwenk ought to be getting tired of karma fortunes by now.ottischwenk ought to be getting tired of karma fortunes by now.ottischwenk ought to be getting tired of karma fortunes by now.ottischwenk ought to be getting tired of karma fortunes by now.ottischwenk ought to be getting tired of karma fortunes by now.ottischwenk ought to be getting tired of karma fortunes by now.ottischwenk ought to be getting tired of karma fortunes by now.ottischwenk ought to be getting tired of karma fortunes by now.ottischwenk ought to be getting tired of karma fortunes by now.ottischwenk ought to be getting tired of karma fortunes by now.ottischwenk ought to be getting tired of karma fortunes by now.
 
ottischwenk's Avatar
 
Posts: 2,869
Karma: 3933245
Join Date: Sep 2012
Location: Salzburg AT
Device: Boox 4/14, Like-/Meebook 1/8, Tolino 1/10, Kobo 0/5, Kindle 0/3
Code:
d:\_Reader-Smartphone\ADB>adb shell
BOOX:/ $ cd /storage/emulated/0/Calibre_Companion
BOOX:/storage/emulated/0/Calibre_Companion $ time ls -Rl | wc
  16550  240759 1746789
    0m47.39s real     0m00.60s user     0m00.89s system
BOOX:/storage/emulated/0/Calibre_Companion $ time ls -Rl | wc
  16550  240759 1746789
    4m09.59s real     0m01.91s user     0m09.67s system
BOOX:/storage/emulated/0/Calibre_Companion $ time ls -Rl | wc
  16550  240759 1746789
    4m10.37s real     0m01.89s user     0m09.95s system
BOOX:/storage/emulated/0/Calibre_Companion $ logcat -f /storage/emulated/0/aa/logcat.txt
^C
130|BOOX:/storage/emulated/0/Calibre_Companion $
The first time command was after booting the Tab Ultra.
Before the second, I loaded the Calibre_Companion folder to view the contents.
Before the third one, I turned off WiFi.
And then I created a logcat.txt while opening Calibre_Companion.
After I was able to see the content of Calibre_Companion, I checked "aa" to see if there was logcat.txt.
ottischwenk is online now   Reply With Quote
Old 12-15-2022, 12:35 PM   #40
rexbanner
Member
rexbanner began at the beginning.
 
Posts: 24
Karma: 10
Join Date: Dec 2022
Device: none
Quote:
Originally Posted by Renate View Post
So, you're saying stop/start fixed it?

Maybe restart and check the whole scenario again?
Listing via data/media is fast and listing via sdcard/ is still extremely slow (and this is also the case after restarting):

Code:
BOOX:/ # time ls -Rl data/media/0/Documents/tmp/ | wc
20002  160003 1268931
0m00.69s real     0m00.24s user     0m00.47s system

BOOX:/ # time ls -Rl sdcard/Documents/tmp/ | wc
20002  160003 1208925
7m10.38s real     0m00.81s user     0m06.06s system
rexbanner is offline   Reply With Quote
Old 12-15-2022, 12:47 PM   #41
Renate
Wizard
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: 2,318
Karma: 9999999
Join Date: Feb 2012
Device: Nook NST, Glow2, 3, 4, '21, Kobo Aura2, Poke3, Poke5
So open another window with logcat and see if you can see the difference.
Renate is offline   Reply With Quote
Old 12-15-2022, 03:38 PM   #42
rexbanner
Member
rexbanner began at the beginning.
 
Posts: 24
Karma: 10
Join Date: Dec 2022
Device: none
Did that and I couldn't spot anything that looked interesting or different between the two operations.
rexbanner is offline   Reply With Quote
Old 12-15-2022, 06:53 PM   #43
Renate
Wizard
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: 2,318
Karma: 9999999
Join Date: Feb 2012
Device: Nook NST, Glow2, 3, 4, '21, Kobo Aura2, Poke3, Poke5
Well, how about comparing the two with:
Code:
# dmesg -w

Last edited by Renate; 12-15-2022 at 07:00 PM.
Renate is offline   Reply With Quote
Old 12-16-2022, 01:42 AM   #44
rexbanner
Member
rexbanner began at the beginning.
 
Posts: 24
Karma: 10
Join Date: Dec 2022
Device: none
I also did that and couldn't spot anything. I did not see anything different in dmesg when running the ls command compared to dmesg without running anything. It seems to be almost completely about charging and health checks.

If you want to take a look yourself, I printed the last dmesg line before and after the ls command in order to see what happened in between.

Listing via /sdcard

Code:
BOOX:/ # dmesg -T | tail -1 && time ls -Rl /sdcard/Documents/tmp/ | wc && dmesg -T | tail -1
[Fri Dec 16 04:28:15 2022] onyx_charging_temp_check_work: batt temp: 373, charger temp: 532, current charger level: 0
20002  160003 1208926
5m49.35s real     0m01.79s user     0m11.04s system
[Fri Dec 16 04:34:04 2022] healthd: battery l=92 v=4356 t=35.7 h=2 st=2 c=1754151 fc=6478000 cc=1 chg=a
Code:
[Fri Dec 16 04:28:14 2022] onyx_charging_temp_check_work: batt temp: 373, charger temp: 532, current charger level: 0
[Fri Dec 16 04:28:21 2022] healthd: battery l=89 v=4355 t=37.3 h=2 st=2 c=2235109 fc=6478000 cc=1 chg=a
[Fri Dec 16 04:28:21 2022] sde_plane_set_fb_marker(): fb_vaddr[0000000073380176]  marker[55774] cmd[0x0]
[Fri Dec 16 04:28:21 2022] healthd: battery l=89 v=4355 t=37.3 h=2 st=2 c=2233277 fc=6478000 cc=1 chg=a
[Fri Dec 16 04:28:24 2022] onyx_charging_temp_check_work: batt temp: 373, charger temp: 532, current charger level: 0
[Fri Dec 16 04:28:26 2022] ONYX: Pending Wakeup Sources: onyx_charging_lock 4e00000.ssusb
[Fri Dec 16 04:28:29 2022] healthd: battery l=89 v=4356 t=37.4 h=2 st=2 c=2231599 fc=6478000 cc=1 chg=a
[Fri Dec 16 04:28:29 2022] sde_plane_set_fb_marker(): fb_vaddr[0000000015f1f6b7]  marker[55774] cmd[0x0]
[Fri Dec 16 04:28:34 2022] onyx_charging_temp_check_work: batt temp: 374, charger temp: 529, current charger level: 0
[Fri Dec 16 04:28:34 2022] healthd: battery l=89 v=4355 t=37.4 h=2 st=2 c=2187043 fc=6478000 cc=1 chg=a
[Fri Dec 16 04:28:34 2022] sde_plane_set_fb_marker(): fb_vaddr[0000000073380176]  marker[55774] cmd[0x0]
[Fri Dec 16 04:28:37 2022] healthd: battery l=89 v=4354 t=37.4 h=2 st=2 c=2179414 fc=6478000 cc=1 chg=a
[Fri Dec 16 04:28:37 2022] sde_plane_set_fb_marker(): fb_vaddr[0000000015f1f6b7]  marker[55774] cmd[0x0]
[Fri Dec 16 04:28:44 2022] onyx_charging_temp_check_work: batt temp: 373, charger temp: 527, current charger level: 0
[Fri Dec 16 04:28:45 2022] healthd: battery l=89 v=4355 t=37.3 h=2 st=2 c=2192231 fc=6478000 cc=1 chg=a
[Fri Dec 16 04:28:45 2022] sde_plane_set_fb_marker(): fb_vaddr[0000000073380176]  marker[55774] cmd[0x0]
[Fri Dec 16 04:28:48 2022] healthd: battery l=89 v=4356 t=37.3 h=2 st=2 c=2203828 fc=6478000 cc=1 chg=a
[Fri Dec 16 04:28:48 2022] sde_plane_set_fb_marker(): fb_vaddr[0000000015f1f6b7]  marker[55774] cmd[0x0]
[Fri Dec 16 04:28:54 2022] healthd: battery l=89 v=4356 t=37.3 h=2 st=2 c=2191163 fc=6478000 cc=1 chg=a
[Fri Dec 16 04:28:55 2022] onyx_charging_temp_check_work: batt temp: 373, charger temp: 527, current charger level: 0
[Fri Dec 16 04:28:56 2022] ONYX: Pending Wakeup Sources: onyx_charging_lock 4e00000.ssusb
[Fri Dec 16 04:29:01 2022] healthd: battery l=89 v=4356 t=37.3 h=2 st=2 c=2179414 fc=6478000 cc=1 chg=a
[Fri Dec 16 04:29:02 2022] healthd: battery l=89 v=4356 t=37.3 h=2 st=2 c=2178498 fc=6478000 cc=1 chg=a
[Fri Dec 16 04:29:02 2022] sde_plane_set_fb_marker(): fb_vaddr[0000000073380176]  marker[55774] cmd[0x0]
[Fri Dec 16 04:29:03 2022] healthd: battery l=89 v=4356 t=37.3 h=2 st=2 c=2176515 fc=6478000 cc=1 chg=a
[Fri Dec 16 04:29:05 2022] onyx_charging_temp_check_work: batt temp: 373, charger temp: 524, current charger level: 0
[Fri Dec 16 04:29:10 2022] healthd: battery l=89 v=4356 t=37.3 h=2 st=2 c=2159272 fc=6478000 cc=1 chg=a
[Fri Dec 16 04:29:15 2022] onyx_charging_temp_check_work: batt temp: 373, charger temp: 521, current charger level: 0
[Fri Dec 16 04:29:15 2022] healthd: battery l=89 v=4356 t=37.3 h=2 st=2 c=2151643 fc=6478000 cc=1 chg=a
[Fri Dec 16 04:29:15 2022] sde_plane_set_fb_marker(): fb_vaddr[0000000015f1f6b7]  marker[55774] cmd[0x0]
[Fri Dec 16 04:29:16 2022] healthd: battery l=89 v=4356 t=37.3 h=2 st=2 c=2154542 fc=6478000 cc=1 chg=a
[Fri Dec 16 04:29:16 2022] sde_plane_set_fb_marker(): fb_vaddr[0000000073380176]  marker[55774] cmd[0x0]
[Fri Dec 16 04:29:18 2022] healthd: battery l=89 v=4356 t=37.3 h=2 st=2 c=2146455 fc=6478000 cc=1 chg=a
[Fri Dec 16 04:29:25 2022] onyx_charging_temp_check_work: batt temp: 372, charger temp: 519, current charger level: 0
[Fri Dec 16 04:29:26 2022] ONYX: Pending Wakeup Sources: onyx_charging_lock 4e00000.ssusb
[Fri Dec 16 04:29:26 2022] healthd: battery l=89 v=4356 t=37.2 h=2 st=2 c=2136537 fc=6478000 cc=1 chg=a
[Fri Dec 16 04:29:34 2022] healthd: battery l=89 v=4357 t=37.2 h=2 st=2 c=2126466 fc=6478000 cc=1 chg=a
[Fri Dec 16 04:29:36 2022] onyx_charging_temp_check_work: batt temp: 371, charger temp: 516, current charger level: 0
[Fri Dec 16 04:29:43 2022] healthd: battery l=89 v=4356 t=37.1 h=2 st=2 c=2106324 fc=6478000 cc=1 chg=a
[Fri Dec 16 04:29:46 2022] onyx_charging_temp_check_work: batt temp: 371, charger temp: 513, current charger level: 0
[Fri Dec 16 04:29:51 2022] healthd: battery l=89 v=4356 t=37.1 h=2 st=2 c=2097627 fc=6478000 cc=1 chg=a
[Fri Dec 16 04:29:56 2022] ONYX: Pending Wakeup Sources: onyx_charging_lock 4e00000.ssusb
[Fri Dec 16 04:29:56 2022] onyx_charging_temp_check_work: batt temp: 370, charger temp: 513, current charger level: 0
[Fri Dec 16 04:29:57 2022] healthd: battery l=90 v=4356 t=37.0 h=2 st=2 c=2085572 fc=6478000 cc=1 chg=a
[Fri Dec 16 04:29:57 2022] healthd: battery l=90 v=4356 t=37.0 h=2 st=2 c=2085572 fc=6478000 cc=1 chg=a
[Fri Dec 16 04:29:57 2022] onyx_tcon_update_image(): tcon_update_cnt[55783] vaddr[0000000015f1f6b7] marker[55775] w[1872] h[1404] w_virt[1920] upd_cnt[1] rect[1713 14 123 44] wavefrom[255] full[0] flag[0x0] source[0]
[Fri Dec 16 04:29:57 2022] sde_plane_set_fb_marker(): fb_vaddr[0000000015f1f6b7]  marker[55775] cmd[0xdf1007]
[Fri Dec 16 04:29:57 2022] onyx_tcon_cmd_triger(): triger cmd_desc[00000000ae3d69e6] marker[55775]  from cmd_pending_list. caller[vblank-event]. Interval[12 ms].
[Fri Dec 16 04:29:57 2022] onyx_tcon_send_cmd(): [UI] update_marker[55775] waveform[2] update_mode[0]
[Fri Dec 16 04:29:57 2022] lfe5u_ctrl_send_cmd(): [CMD_TCON_UI_MODE_SET] cmd[0x7] data[0xdf10]
[Fri Dec 16 04:29:57 2022] sde_plane_set_fb_marker(): fb_vaddr[0000000073380176]  marker[55775] cmd[0x0]
[Fri Dec 16 04:29:59 2022] healthd: battery l=90 v=4356 t=37.0 h=2 st=2 c=2084352 fc=6478000 cc=1 chg=a
[Fri Dec 16 04:30:01 2022] healthd: battery l=90 v=4356 t=37.0 h=2 st=2 c=2078248 fc=6478000 cc=1 chg=a
[Fri Dec 16 04:30:06 2022] onyx_charging_temp_check_work: batt temp: 370, charger temp: 514, current charger level: 0
[Fri Dec 16 04:30:07 2022] healthd: battery l=90 v=4356 t=37.0 h=2 st=2 c=2075196 fc=6478000 cc=1 chg=a
[Fri Dec 16 04:30:15 2022] healthd: battery l=90 v=4356 t=37.0 h=2 st=2 c=2052461 fc=6478000 cc=1 chg=a
[Fri Dec 16 04:30:17 2022] onyx_charging_temp_check_work: batt temp: 370, charger temp: 514, current charger level: 0
[Fri Dec 16 04:30:23 2022] healthd: battery l=90 v=4356 t=37.0 h=2 st=2 c=2047120 fc=6478000 cc=1 chg=a
[Fri Dec 16 04:30:26 2022] ONYX: Pending Wakeup Sources: onyx_charging_lock 4e00000.ssusb
[Fri Dec 16 04:30:27 2022] onyx_charging_temp_check_work: batt temp: 369, charger temp: 512, current charger level: 0
[Fri Dec 16 04:30:32 2022] healthd: battery l=90 v=4356 t=36.9 h=2 st=2 c=2032777 fc=6478000 cc=1 chg=a
[Fri Dec 16 04:30:37 2022] onyx_charging_temp_check_work: batt temp: 369, charger temp: 509, current charger level: 0
[Fri Dec 16 04:30:40 2022] healthd: battery l=90 v=4357 t=36.9 h=2 st=2 c=2024537 fc=6478000 cc=1 chg=a
[Fri Dec 16 04:30:46 2022] sde_plane_set_fb_marker(): fb_vaddr[0000000015f1f6b7]  marker[55775] cmd[0x0]
[Fri Dec 16 04:30:47 2022] onyx_charging_temp_check_work: batt temp: 368, charger temp: 507, current charger level: 0
[Fri Dec 16 04:30:48 2022] healthd: battery l=90 v=4356 t=36.8 h=2 st=2 c=2007142 fc=6478000 cc=1 chg=a
[Fri Dec 16 04:30:56 2022] healthd: battery l=90 v=4356 t=36.8 h=2 st=2 c=2000276 fc=6478000 cc=1 chg=a
[Fri Dec 16 04:30:56 2022] ONYX: Pending Wakeup Sources: onyx_charging_lock 4e00000.ssusb
[Fri Dec 16 04:30:58 2022] onyx_charging_temp_check_work: batt temp: 368, charger temp: 504, current charger level: 0
[Fri Dec 16 04:31:01 2022] healthd: battery l=91 v=4356 t=36.8 h=2 st=2 c=1989594 fc=6478000 cc=1 chg=a
[Fri Dec 16 04:31:01 2022] healthd: battery l=91 v=4356 t=36.8 h=2 st=2 c=1989594 fc=6478000 cc=1 chg=a
[Fri Dec 16 04:31:01 2022] onyx_tcon_update_image(): tcon_update_cnt[55784] vaddr[0000000073380176] marker[55776] w[1872] h[1404] w_virt[1920] upd_cnt[1] rect[1713 14 123 44] wavefrom[255] full[0] flag[0x0] source[0]
[Fri Dec 16 04:31:01 2022] sde_plane_set_fb_marker(): fb_vaddr[0000000073380176]  marker[55776] cmd[0xe01007]
[Fri Dec 16 04:31:01 2022] onyx_tcon_cmd_triger(): triger cmd_desc[00000000493d1507] marker[55776]  from cmd_pending_list. caller[vblank-event]. Interval[13 ms].
[Fri Dec 16 04:31:01 2022] onyx_tcon_send_cmd(): [UI] update_marker[55776] waveform[2] update_mode[0]
[Fri Dec 16 04:31:01 2022] lfe5u_ctrl_send_cmd(): [CMD_TCON_UI_MODE_SET] cmd[0x7] data[0xe010]
[Fri Dec 16 04:31:01 2022] healthd: battery l=91 v=4356 t=36.8 h=2 st=2 c=2087861 fc=6478000 cc=1 chg=a
[Fri Dec 16 04:31:04 2022] healthd: battery l=91 v=4356 t=36.8 h=2 st=2 c=1987611 fc=6478000 cc=1 chg=a
[Fri Dec 16 04:31:08 2022] onyx_charging_temp_check_work: batt temp: 367, charger temp: 504, current charger level: 0
[Fri Dec 16 04:31:12 2022] healthd: battery l=91 v=4356 t=36.7 h=2 st=2 c=1971894 fc=6478000 cc=1 chg=a
[Fri Dec 16 04:31:18 2022] onyx_charging_temp_check_work: batt temp: 367, charger temp: 501, current charger level: 0
[Fri Dec 16 04:31:20 2022] healthd: battery l=91 v=4356 t=36.7 h=2 st=2 c=1959229 fc=6478000 cc=1 chg=a
[Fri Dec 16 04:31:26 2022] ONYX: Pending Wakeup Sources: onyx_charging_lock 4e00000.ssusb
[Fri Dec 16 04:31:28 2022] onyx_charging_temp_check_work: batt temp: 366, charger temp: 499, current charger level: 0
[Fri Dec 16 04:31:29 2022] healthd: battery l=91 v=4356 t=36.6 h=2 st=2 c=1949769 fc=6478000 cc=1 chg=a
[Fri Dec 16 04:31:37 2022] healthd: battery l=91 v=4356 t=36.6 h=2 st=2 c=1942597 fc=6478000 cc=1 chg=a
[Fri Dec 16 04:31:39 2022] onyx_charging_temp_check_work: batt temp: 366, charger temp: 494, current charger level: 0
[Fri Dec 16 04:31:45 2022] healthd: battery l=91 v=4356 t=36.5 h=2 st=2 c=1927796 fc=6478000 cc=1 chg=a
[Fri Dec 16 04:31:49 2022] onyx_charging_temp_check_work: batt temp: 365, charger temp: 493, current charger level: 0
[Fri Dec 16 04:31:53 2022] healthd: battery l=91 v=4355 t=36.5 h=2 st=2 c=1915284 fc=6478000 cc=1 chg=a
[Fri Dec 16 04:31:56 2022] ONYX: Pending Wakeup Sources: onyx_charging_lock 4e00000.ssusb
[Fri Dec 16 04:31:59 2022] onyx_charging_temp_check_work: batt temp: 364, charger temp: 491, current charger level: 0
[Fri Dec 16 04:32:01 2022] healthd: battery l=91 v=4356 t=36.4 h=2 st=2 c=1905976 fc=6478000 cc=1 chg=a
[Fri Dec 16 04:32:01 2022] healthd: battery l=91 v=4356 t=36.4 h=2 st=2 c=1905976 fc=6478000 cc=1 chg=a
[Fri Dec 16 04:32:09 2022] onyx_charging_temp_check_work: batt temp: 364, charger temp: 490, current charger level: 0
[Fri Dec 16 04:32:09 2022] healthd: battery l=91 v=4356 t=36.4 h=2 st=2 c=1896821 fc=6478000 cc=1 chg=a
[Fri Dec 16 04:32:10 2022] sde_plane_set_fb_marker(): fb_vaddr[0000000015f1f6b7]  marker[55776] cmd[0x0]
[Fri Dec 16 04:32:18 2022] healthd: battery l=91 v=4356 t=36.3 h=2 st=2 c=1887818 fc=6478000 cc=1 chg=a
[Fri Dec 16 04:32:20 2022] onyx_charging_temp_check_work: batt temp: 363, charger temp: 487, current charger level: 0
[Fri Dec 16 04:32:26 2022] healthd: battery l=91 v=4356 t=36.3 h=2 st=2 c=1876984 fc=6478000 cc=1 chg=a
[Fri Dec 16 04:32:27 2022] ONYX: Pending Wakeup Sources: onyx_charging_lock 4e00000.ssusb
[Fri Dec 16 04:32:30 2022] onyx_charging_temp_check_work: batt temp: 363, charger temp: 486, current charger level: 0
[Fri Dec 16 04:32:34 2022] healthd: battery l=91 v=4356 t=36.2 h=2 st=2 c=1865540 fc=6478000 cc=1 chg=a
[Fri Dec 16 04:32:40 2022] onyx_charging_temp_check_work: batt temp: 362, charger temp: 482, current charger level: 0
[Fri Dec 16 04:32:42 2022] healthd: battery l=91 v=4356 t=36.2 h=2 st=2 c=1853944 fc=6478000 cc=1 chg=a
[Fri Dec 16 04:32:50 2022] healthd: battery l=91 v=4356 t=36.1 h=2 st=2 c=1842500 fc=6478000 cc=1 chg=a
[Fri Dec 16 04:32:50 2022] onyx_charging_temp_check_work: batt temp: 361, charger temp: 480, current charger level: 0
[Fri Dec 16 04:32:57 2022] ONYX: Pending Wakeup Sources: onyx_charging_lock 4e00000.ssusb
[Fri Dec 16 04:32:58 2022] healthd: battery l=91 v=4356 t=36.1 h=2 st=2 c=1835633 fc=6478000 cc=1 chg=a
[Fri Dec 16 04:33:00 2022] onyx_charging_temp_check_work: batt temp: 361, charger temp: 478, current charger level: 0
[Fri Dec 16 04:33:01 2022] healthd: battery l=91 v=4356 t=36.1 h=2 st=2 c=1831818 fc=6478000 cc=1 chg=a
[Fri Dec 16 04:33:07 2022] healthd: battery l=91 v=4356 t=36.0 h=2 st=2 c=1821290 fc=6478000 cc=1 chg=a
[Fri Dec 16 04:33:09 2022] healthd: battery l=92 v=4356 t=36.0 h=2 st=2 c=1824952 fc=6478000 cc=1 chg=a
[Fri Dec 16 04:33:09 2022] healthd: battery l=92 v=4356 t=36.0 h=2 st=2 c=1824952 fc=6478000 cc=1 chg=a
[Fri Dec 16 04:33:09 2022] onyx_tcon_update_image(): tcon_update_cnt[55785] vaddr[0000000073380176] marker[55777] w[1872] h[1404] w_virt[1920] upd_cnt[1] rect[1713 14 123 44] wavefrom[255] full[0] flag[0x0] source[0]
[Fri Dec 16 04:33:09 2022] sde_plane_set_fb_marker(): fb_vaddr[0000000073380176]  marker[55777] cmd[0xe11007]
[Fri Dec 16 04:33:09 2022] onyx_tcon_cmd_triger(): triger cmd_desc[00000000ae3d69e6] marker[55777]  from cmd_pending_list. caller[vblank-event]. Interval[14 ms].
[Fri Dec 16 04:33:09 2022] onyx_tcon_send_cmd(): [UI] update_marker[55777] waveform[2] update_mode[0]
[Fri Dec 16 04:33:09 2022] lfe5u_ctrl_send_cmd(): [CMD_TCON_UI_MODE_SET] cmd[0x7] data[0xe110]
[Fri Dec 16 04:33:09 2022] sde_plane_set_fb_marker(): fb_vaddr[0000000015f1f6b7]  marker[55777] cmd[0x0]
[Fri Dec 16 04:33:11 2022] onyx_charging_temp_check_work: batt temp: 360, charger temp: 476, current charger level: 0
[Fri Dec 16 04:33:15 2022] healthd: battery l=92 v=4356 t=36.0 h=2 st=2 c=1811524 fc=6478000 cc=1 chg=a
[Fri Dec 16 04:33:21 2022] onyx_charging_temp_check_work: batt temp: 359, charger temp: 472, current charger level: 0
[Fri Dec 16 04:33:23 2022] healthd: battery l=92 v=4356 t=35.9 h=2 st=2 c=1808167 fc=6478000 cc=1 chg=a
[Fri Dec 16 04:33:27 2022] ONYX: Pending Wakeup Sources: onyx_charging_lock 4e00000.ssusb
[Fri Dec 16 04:33:31 2022] healthd: battery l=92 v=4355 t=35.9 h=2 st=2 c=1795502 fc=6478000 cc=1 chg=a
[Fri Dec 16 04:33:31 2022] onyx_charging_temp_check_work: batt temp: 359, charger temp: 473, current charger level: 0
[Fri Dec 16 04:33:39 2022] healthd: battery l=92 v=4356 t=35.8 h=2 st=2 c=1783753 fc=6478000 cc=1 chg=a
[Fri Dec 16 04:33:41 2022] sde_plane_set_fb_marker(): fb_vaddr[0000000073380176]  marker[55777] cmd[0x0]
[Fri Dec 16 04:33:41 2022] onyx_charging_temp_check_work: batt temp: 358, charger temp: 470, current charger level: 0
[Fri Dec 16 04:33:47 2022] healthd: battery l=92 v=4356 t=35.8 h=2 st=2 c=1779176 fc=6478000 cc=1 chg=a
[Fri Dec 16 04:33:52 2022] onyx_charging_temp_check_work: batt temp: 358, charger temp: 467, current charger level: 0
[Fri Dec 16 04:33:56 2022] healthd: battery l=92 v=4356 t=35.8 h=2 st=2 c=1766358 fc=6478000 cc=1 chg=a
[Fri Dec 16 04:33:57 2022] ONYX: Pending Wakeup Sources: onyx_charging_lock 4e00000.ssusb
[Fri Dec 16 04:34:01 2022] healthd: battery l=92 v=4356 t=35.7 h=2 st=2 c=1754456 fc=6478000 cc=1 chg=a
[Fri Dec 16 04:34:02 2022] onyx_charging_temp_check_work: batt temp: 357, charger temp: 463, current charger level: 0
[Fri Dec 16 04:34:04 2022] healthd: battery l=92 v=4356 t=35.7 h=2 st=2 c=1754151 fc=6478000 cc=1 chg=a
[Fri Dec 16 04:34:12 2022] healthd: battery l=92 v=4356 t=35.6 h=2 st=2 c=1746674 fc=6478000 cc=1 chg=a
[Fri Dec 16 04:34:12 2022] onyx_charging_temp_check_work: batt temp: 356, charger temp: 459, current charger level: 0
[Fri Dec 16 04:34:20 2022] healthd: battery l=92 v=4356 t=35.4 h=2 st=2 c=1733552 fc=6478000 cc=1 chg=a
[Fri Dec 16 04:34:20 2022] sde_plane_set_fb_marker(): fb_vaddr[0000000015f1f6b7]  marker[55777] cmd[0x0]
[Fri Dec 16 04:34:22 2022] onyx_charging_temp_check_work: batt temp: 354, charger temp: 454, current charger level: 0
Listing via /data

Code:
BOOX:/ # dmesg -T | tail -1 && time ls -Rl /data/media/0/Documents/tmp/ | wc && dmesg -T | tail -1
[Fri Dec 16 04:39:30 2022] healthd: battery l=94 v=4356 t=33.2 h=2 st=2 c=1404572 fc=6478000 cc=1 chg=a
20002  160003 1268932
0m00.71s real     0m00.28s user     0m00.45s system
[Fri Dec 16 04:39:30 2022] healthd: battery l=94 v=4356 t=33.2 h=2 st=2 c=1404572 fc=6478000 cc=1 chg=a
So there was no output in dmesg during the command. Here are a few lines following:

Code:
[Fri Dec 16 04:39:30 2022] healthd: battery l=94 v=4356 t=33.2 h=2 st=2 c=1404572 fc=6478000 cc=1 chg=a
[Fri Dec 16 04:39:38 2022] healthd: battery l=94 v=4356 t=33.2 h=2 st=2 c=1395875 fc=6478000 cc=1 chg=a
[Fri Dec 16 04:39:40 2022] onyx_charging_temp_check_work: batt temp: 332, charger temp: 400, current charger level: 0
[Fri Dec 16 04:39:46 2022] healthd: battery l=94 v=4356 t=33.2 h=2 st=2 c=1385499 fc=6478000 cc=1 chg=a
[Fri Dec 16 04:39:50 2022] onyx_charging_temp_check_work: batt temp: 331, charger temp: 399, current charger level: 0
[Fri Dec 16 04:39:54 2022] healthd: battery l=94 v=4356 t=33.1 h=2 st=2 c=1377106 fc=6478000 cc=1 chg=a
[Fri Dec 16 04:39:58 2022] ONYX: Pending Wakeup Sources: onyx_charging_lock 4e00000.ssusb
[Fri Dec 16 04:40:00 2022] onyx_charging_temp_check_work: batt temp: 331, charger temp: 396, current charger level: 0
[Fri Dec 16 04:40:01 2022] healthd: battery l=94 v=4355 t=33.1 h=2 st=2 c=1369935 fc=6478000 cc=1 chg=a
[Fri Dec 16 04:40:02 2022] healthd: battery l=94 v=4356 t=33.1 h=2 st=2 c=1374054 fc=6478000 cc=1 chg=a
[Fri Dec 16 04:40:03 2022] sde_plane_set_fb_marker(): fb_vaddr[0000000073380176]  marker[55779] cmd[0x0]
rexbanner is offline   Reply With Quote
Old 12-16-2022, 07:00 AM   #45
Renate
Wizard
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: 2,318
Karma: 9999999
Join Date: Feb 2012
Device: Nook NST, Glow2, 3, 4, '21, Kobo Aura2, Poke3, Poke5
This is crazy. It's a speed ratio of 500.

Ok, here's a boring test you can make to see if there is some threshold for when it gets slow.
I'm running it on my Poke3. I see that the "touch" file creation is pretty darn slow, but the "ls" seems fast (so far).

Here's the script. Copy paste it into alpha.sh
Code:
#!/system/bin/sh

for a in a b c d e f g h i j k l m n o p q r s t u v w x y z
do
i=0; while [ $((i)) -lt 1000 ]; do touch $a$i; i=$(($i+1)); done;
time ls -l | wc
done
Then:
Code:
C:\>adb push alpha.sh /data/local/tmp
C:\>adb shell
$ cd /sdcard
$ mkdir Test
$ cd Test
$ chmod 755 /data/local/tmp/alpha.sh
$ /data/local/tmp/alpha.sh
Then go and make breakfast.

This is my Poke3 on 3.2.4. It seems pretty linear.
Code:
Poke3:/sdcard/Test # /data/local/tmp/alpha.sh
   1001    8002   51898
    0m00.06s real     0m00.04s user     0m00.04s system
   2001   16002  103788
    0m00.08s real     0m00.07s user     0m00.05s system
   3001   24002  155678
    0m00.15s real     0m00.10s user     0m00.09s system
   4001   32002  207568
    0m00.13s real     0m00.07s user     0m00.12s system
   5001   40002  259458
    0m00.21s real     0m00.13s user     0m00.15s system
   6001   48002  311348
    0m00.22s real     0m00.16s user     0m00.15s system
   7001   56002  363238
    0m00.22s real     0m00.15s user     0m00.16s system
   8001   64002  415128
    0m00.25s real     0m00.14s user     0m00.21s system
   9001   72002  467018
    0m00.29s real     0m00.15s user     0m00.26s system
  10001   80002  518908
    0m00.30s real     0m00.20s user     0m00.22s system
  11001   88002  570798
    0m00.34s real     0m00.16s user     0m00.33s system
  12001   96002  622688
    0m00.35s real     0m00.22s user     0m00.27s system
  13001  104002  674578
    0m00.42s real     0m00.20s user     0m00.38s system
  14001  112002  726468
    0m00.45s real     0m00.29s user     0m00.34s system
  15001  120002  778358
    0m00.48s real     0m00.33s user     0m00.33s system
  16001  128002  830248
    0m00.49s real     0m00.26s user     0m00.41s system
  17001  136002  882138
    0m00.53s real     0m00.30s user     0m00.42s system
  18001  144002  934028
    0m00.58s real     0m00.34s user     0m00.45s system
  19001  152002  985918
    0m00.56s real     0m00.29s user     0m00.49s system
  20001  160002 1037808
    0m00.59s real     0m00.27s user     0m00.56s system
  21001  168002 1089698
    0m00.63s real     0m00.26s user     0m00.61s system
  22001  176002 1141588
    0m00.66s real     0m00.43s user     0m00.47s system
  23001  184002 1193478
    0m00.66s real     0m00.43s user     0m00.49s system
  24001  192002 1245368
    0m00.71s real     0m00.37s user     0m00.60s system
  25001  200002 1297258
    0m00.72s real     0m00.39s user     0m00.61s system
  26001  208002 1349148
    0m00.79s real     0m00.41s user     0m00.67s system

Last edited by Renate; 12-16-2022 at 07:19 AM.
Renate is offline   Reply With Quote
Reply


Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Onyx Tab Ultra 10 inch, — as fast as a computer? norweger Onyx Boox 3 11-26-2022 01:03 PM
Onyx Tab Ultra WillAdams News 2 11-22-2022 04:50 PM
Pocketbook Ultra beachwanderer PocketBook 73 11-18-2014 02:37 PM
Ultra-cheap ultra-mobile laptop comparison matrix branko News 48 09-03-2007 06:23 PM


All times are GMT -4. The time now is 04:44 AM.


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