We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1f347eb commit 1196a7bCopy full SHA for 1196a7b
port/release.py
@@ -3,13 +3,15 @@
3
OFFSET_BOOTLOADER = 0x1000
4
OFFSET_PARTITIONS = 0x8000
5
OFFSET_APPLICATION = 0x10000
6
+OFFSET_FONT = 0x400000
7
8
files_in = [
9
('bootloader', OFFSET_BOOTLOADER, sys.argv[1]),
10
('partitions', OFFSET_PARTITIONS, sys.argv[2]),
11
('application', OFFSET_APPLICATION, sys.argv[3]),
12
+ ('font', OFFSET_FONT, sys.argv[4]),
13
]
-file_out = sys.argv[4]
14
+file_out = sys.argv[5]
15
16
cur_offset = 0
17
with open(file_out, 'wb') as fout:
0 commit comments