mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-05-09 08:25:44 +02:00
[GH-ISSUE #393] modifying the bootloader #181
Labels
No labels
bug
duplicate
easy
enhancement
enhancement
fixed
fixed
good first issue
hard
invalid
pull-request
wontfix
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/Upsilon#181
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @romain1235 on GitHub (Mar 18, 2026).
Original GitHub issue: https://github.com/UpsilonNumworks/Upsilon/issues/393
I tried modifying the bootloader code and managed to flash it, but afterwards, it wouldn't boot. I modified:
-the colors
-the text
-the image (to keep the default computer.png)
@Yaya-Cout commented on GitHub (Mar 23, 2026):
Hi
Sorry for the late reply. How are you building the bootloader? A common issue is that
make bootloader.bindoesn't work, you should usemake bootloaderinstead. Amake cleanallmay be requiredFor example, when debugging the bootloader, I use the following command:
make bootloader MODEL=n0110 -j8 && dfu-util -i 0 -a 0 -s 0x08000000:leave -D output/release/device/n0110/bootloader.bin@romain1235 commented on GitHub (Mar 23, 2026):
I've used make MODEL=n0110 bootloader_flash
@Yaya-Cout commented on GitHub (Mar 31, 2026):
Does it work with the following commands?
@romain1235 commented on GitHub (Apr 10, 2026):
it works!!