Skip to content

Commit 1196a7b

Browse files
committed
执行make release合并字库。
1 parent 1f347eb commit 1196a7b

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

port/release.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,15 @@
33
OFFSET_BOOTLOADER = 0x1000
44
OFFSET_PARTITIONS = 0x8000
55
OFFSET_APPLICATION = 0x10000
6+
OFFSET_FONT = 0x400000
67

78
files_in = [
89
('bootloader', OFFSET_BOOTLOADER, sys.argv[1]),
910
('partitions', OFFSET_PARTITIONS, sys.argv[2]),
1011
('application', OFFSET_APPLICATION, sys.argv[3]),
12+
('font', OFFSET_FONT, sys.argv[4]),
1113
]
12-
file_out = sys.argv[4]
14+
file_out = sys.argv[5]
1315

1416
cur_offset = 0
1517
with open(file_out, 'wb') as fout:

0 commit comments

Comments
 (0)