datasone / setup_var.efi

UEFI command-line tool for read/write access of variables
Apache License 2.0
221 stars 8 forks source link

Manage HEX value > 255 #15

Closed lollo78 closed 11 months ago

lollo78 commented 11 months ago

Hi, I'm trying to change the Imon Slope Offset to 31999 and VR Current Limit to 888:

setup_var.efi 0x14C 0x7CFF -n CpuSetup setup_var.efi 0x15B 0x378 -n CpuSetup

but I get the error:

What can I do? Thanks a lot

datasone commented 11 months ago

You need to specify size by adding -s 0x2 in the command

lollo78 commented 11 months ago

Thanks a lot!