Forum RSS Feed Follow @ Twitter Follow On Facebook

Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
[-]
Welcome
You have to register before you can post on our site.

Username:


Password:





[-]
Latest Threads
[Request] Mod Adaptec ARCCONF to allow x...
Last Post: Teetrinker
Yesterday 10:14 AM
» Replies: 0
» Views: 621
[REQUEST] Lenovo G580 (5ECNxxWW) Whiteli...
Last Post: Princeneo
09-12-2025 09:23 AM
» Replies: 1726
» Views: 892686
[REQUEST] Lenovo Ideapad 100-14IBD & 100...
Last Post: Dudu2002
09-12-2025 02:22 AM
» Replies: 26
» Views: 20990
[REQUEST] Acer Nitro 5 AN515-58 BIOS Unl...
Last Post: iku56m22v
09-11-2025 10:02 AM
» Replies: 37
» Views: 23686
3rd Party RAM Mod For HP EliteDesk 705 G...
Last Post: AmyGrrl
09-10-2025 09:40 AM
» Replies: 0
» Views: 2375
MSI PR210 AHCI
Last Post: iday82
09-09-2025 04:40 PM
» Replies: 0
» Views: 2639
Honor Magicbook D14 Ryzen 4800H
Last Post: Altermann
09-09-2025 05:04 AM
» Replies: 0
» Views: 3025
[REQUEST] Thinkpad X60S WiFi WhiteList r...
Last Post: Vigor89
09-08-2025 04:46 PM
» Replies: 0
» Views: 3558
[REQUEST] GIGABYTE G6 MF (2024) Bios Unl...
Last Post: lovesickugh
09-07-2025 09:15 PM
» Replies: 3
» Views: 7290
Gigabyte GA-G33-DS3R: USB Boot
Last Post: dinix
09-04-2025 10:37 AM
» Replies: 0
» Views: 5460
Optiplex 7060 SFF 9th Generation Intel C...
Last Post: DeathBringer
08-31-2025 01:59 AM
» Replies: 68
» Views: 38078
Bios Powered classmate
Last Post: MosheNessi
08-28-2025 08:08 AM
» Replies: 0
» Views: 5568
[REQUEST] Lenovo Thinkpad X12 Detachable...
Last Post: Kokoko123
08-28-2025 12:48 AM
» Replies: 0
» Views: 5817
[REQUEST] Unlock advanced options to HP ...
Last Post: huguito
08-26-2025 02:57 PM
» Replies: 0
» Views: 6040
[REQUEST] Dell Precision T3500 BIOS Unlo...
Last Post: DEX0ZEN
08-25-2025 01:30 PM
» Replies: 45
» Views: 49181
[REQUEST] Samsung NP900X4D AES-NI enable...
Last Post: Vesly
08-23-2025 05:25 PM
» Replies: 63
» Views: 44871
Acer Veriton X2640G Xeon support
Last Post: hercares
08-19-2025 03:21 PM
» Replies: 5
» Views: 2418
[Request] Lenovo v520s sff unit bios sup...
Last Post: DeathBringer
08-17-2025 02:05 PM
» Replies: 15
» Views: 3376
[Success] [Bios Mod] Dell XPS L321X EFI ...
Last Post: tuwumo
08-17-2025 11:37 AM
» Replies: 18
» Views: 27282
Samsung N140 JA05IT AHCI
Last Post: Ranmamez
08-12-2025 05:22 PM
» Replies: 0
» Views: 6644

Unlock EMT64 / 64-bit UEFI support on Intel Atom D2550 (Clientron E850 / Praim U22)
#1
Hi, this is my first time trying to mod a BIOS.
I'm working on a Praim Thin Client (model U22), an OEM Clientron E850. There’s not much info online about it, except for a PDF datasheet (attached)

The issue I’m trying to solve is related to EMT64. The CPU inside (Intel Atom D2550) is 64-bit capable, but the motherboard locks it to a 32-bit UEFI. This makes it hard (or impossible) to run any modern OS or programs, which is unfortunate, because it would make a great little low-power server for basic homelab services.

I dumped the BIOS using flashrom in FreeDOS and tried a couple of things:
- Used AMIBCP to change the EMT64 option to USER (didn't brick, but didn’t work)
- Replaced the CpuPei and Microcode modules with ones from another BIOS where EMT64 was working (found on Win-Raid, from what I understand someone had success with this, same CPU as this thin client)

I tried flashing that last modified BIOS and bricked the device. Luckily, I have another identical unit and a backup dump. I'm currently waiting for a CH341A programmer to arrive (should take about 6-7 days), so I can unbrick it and keep testing.

If anyone could mod the BIOS properly, or at least help me with it, I’d appreciate it. I’m still new to this and don’t have much assembly or BIOS modding experience.


Attached Files
.pdf   E850.pdf (Size: 94.38 KB / Downloads: 1)
.rom   E850.ROM (Size: 2 MB / Downloads: 3)
find
quote
#2
Hi, are you really interested in this or just hit and run?
EM64T lock is in CpuPei/PE32 image section at body-offset 508h and body-offset 1164h.

if (CPUID & FFFFFFF0h == 30660h){
WRMSR 0x122 0x3
}
find
quote
#3
(06-11-2025, 11:57 PM)Maxinator500 Wrote: Hi, are you really interested in this or just hit and run?
EM64T lock is in CpuPei/PE32 image section at body-offset 508h and body-offset 1164h.

if (CPUID & FFFFFFF0h == 30660h){
  WRMSR 0x122 0x3
}

Yes, I'm interested, not just hit and run
I’m still really new to BIOS modding, so keep that in mind.

I’ve tried patching the CpuPei module, but didn’t get it right. I probably missed something, or maybe there's more. (Maybe got it completely wrong)
Unfortunately, this last attempt resulted in bricking the second system as well (had already taken a dump of that one too).
So now I’m waiting for my CH341A programmer to arrive before I can recover both devices and keep testing.

Here’s what I did in this latest attempt:
  1. Extracted the CpuPei module (of the first bios I dumped) body using UEFITool NE
  2. Edited the binary with Cutter
  3. Replaced the modified module into the BIOS image using UEFITool (non-NE), since NE doesn’t support editing yet
  4. Flashed the BIOS using Flashrom under FreeDOS (via internal programmer)


[Image: diff.png]

(changed from jni to jmp)

I’ll attach the following:
  • Modded and stock CpuPei
  • BIOS dump from the second system
  • My modded bios (that DOESN'T WORK, based on the first system's dump)

If you ever have some free time, and you'd be willing to take a look, maybe you could help me patch the BIOS properly? Not really confident I did it right, and you definitely have more experience than me.


Attached Files
.rom   E850 2.ROM (Size: 2 MB / Downloads: 2)
.rom   E850 MOD (not working).rom (Size: 2 MB / Downloads: 0)
.zip   CpuPei.zip (Size: 17.97 KB / Downloads: 3)
find
quote
#4
(06-12-2025, 05:43 AM)ordi Wrote: Unfortunately, this last attempt resulted in bricking the second system as well
You patched only 1 location out of 2. This could be the reason why it bricked.

(06-12-2025, 05:43 AM)ordi Wrote: maybe you could help me patch the BIOS properly? Not really confident I did it right, and you definitely have more experience than me.
I'm neither sure if I can get it right. I hesitate to provide new patch suggestions, besides those already known working patches from other threads.

I had bad experience with modding one of these Atom laptops, Lenovo Ideapad S110. I could not for life get it support 64bit, spent too much time and eventually gave up.
find
quote
#5
(06-12-2025, 07:32 AM)Maxinator500 Wrote:
(06-12-2025, 05:43 AM)ordi Wrote: Unfortunately, this last attempt resulted in bricking the second system as well
You patched only 1 location out of 2. This could be the reason why it bricked.

(06-12-2025, 05:43 AM)ordi Wrote: maybe you could help me patch the BIOS properly? Not really confident I did it right, and you definitely have more experience than me.
I'm neither sure if I can get it right. I hesitate to provide new patch suggestions, besides those already known working patches from other threads.

I had bad experience with modding one of these Atom laptops, Lenovo Ideapad S110. I could not for life get it support 64bit, spent too much time and eventually gave up.

Yeah, that could definitely be the reason.
I saw a post on the Win-Raid forum (same CPU, and what looks like the same AMI BIOS) where someone mentioned that patching both instances of "or eax, 3" to "or eax, 0" should work. I'm gonna try this when I get the programmer.

What I’m unsure about is whether I actually replaced the module correctly, or if UEFITool might have done something strange during the replacement.
As I've said, not really into this stuff.

Oh, and no worries if you’re not able to do it. I appreciate the help.
find
quote


Forum Jump:


Users browsing this thread: 1 Guest(s)