-
Notifications
You must be signed in to change notification settings - Fork 33
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Embed Serial Number #4
Comments
UF2 should be able to be concatenated.
|
If we put the serial number at the end of the flash, users won't accidentally overwrite it if they create a bigger binary. The flash chip we use supports locking 4K sections. So we could even lock it to avoid it being overwritten. |
Current solution:
UF2 generation and flashing is done like: echo -n 'FRALDLENA120110001' > serial.bin
./util/uf2conv.py serial.bin -o serial.uf2 -b 0x100ff000 -f rp2040 --convert
sudo cp serial.uf2 /media/zoid/RPI-RP2/ TODO:
|
VIA puts configuration in emulated eeprom at the end of flash. Might conflict with the serial number. |
Put somewhere it won't be overridden by the customer flashing their own firmware.
Two options:
For both we have to create a build script that builds a different variant of the firmware.
The script accepts the serial number and embeds it in the image.
The regular build script that customers would use builds an image that doesn't include this section with the serial number. And it also must avoid overriding the serial number when flashing.
Linker Script
The serial number could be embedded in the executable via a linker script. QMK let's you easily use your own linker script.
@kiram9 you suggested this. How would we avoid the customer overwriting the serial number when they flash their own binary?
WIP branch: https://github.com/FrameworkComputer/qmk_firmware/commits/lotus-ld
UF2
A UF2 file is just a series of independent 512B blocks that each say which address they should be flashed to and include the data.
I think if we put a block at the end it won't interfere with the firmware. But the script must check that there is enough empty space.
We can reserve one of these blocks for the serial number. The factory build script includes this block in the UF2 file, the regular script doesn't.
This way the serial number is preserved if the customer uses the default build script that we'll upstream to QMK.
They could modify it to overwrite the entire flash.
The text was updated successfully, but these errors were encountered: