Skip to content

Commit 172195e

Browse files
committed
Add a few projects to the release
1 parent d64420d commit 172195e

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

test/info.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@
4040
("lpc4322_lpc55s69xpresso_if", False, 0x10000, "bin" ),
4141
("lpc11u35_ssci1114_if", False, 0x0000, "bin" ),
4242
("sam3u2c_mkit_dk_dongle_nrf5x_if", True, 0x5000, "bin" ),
43+
("sam3u2c_nrf5x_dk_ext_if", True, 0x5000, "bin" ),
4344
("k20dx_frdmk20dx_if", True, 0x8000, "bin" ),
4445
("k20dx_frdmkw24d_if", True, 0x8000, "bin" ),
4546
("k20dx_frdmkw41z_if", True, 0x8000, "bin" ),
@@ -60,6 +61,8 @@
6061
("k20dx_mimxrt1020_evk_qspi_if", True, 0x8000, "bin" ),
6162
("k20dx_mimxrt1050_evk_hyper_if", True, 0x8000, "bin" ),
6263
("k20dx_mimxrt1050_evk_qspi_if", True, 0x8000, "bin" ),
64+
("lpc4322_mimxrt1060_evk_qspi_if", False, 0x10000, "bin" ),
65+
("lpc4322_mimxrt1170_evk_qspi_if", False, 0x10000, "bin" ),
6366
('k20dx_ep_agora_if', True, 0x0000, "bin" ),
6467
('k20dx_ep_kairos_if', True, 0x0000, "bin" ),
6568
("k26f_frdmk32w042_if", False, 0x8000, "bin" ),
@@ -100,6 +103,7 @@
100103
('lpc11u35_if', False, 0x0000, "bin" ),
101104
('lpc4322_if', False, 0x0000, "bin" ),
102105
('lpc55s69_if', False, 0x10000, "bin" ),
106+
('lpc55s69_mculink_if', False, 0x10000, "bin" ),
103107
('max32620_if', False, 0x0000, "bin" ),
104108
('max32625_if', False, 0x0000, "bin" ),
105109
('nrf52820_if', False, 0x0000, "bin" ),

tools/progen_compile.py

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,10 @@ def get_core_count():
9090

9191
# armcc does not support Cortex-M33 and lpc55s69 is not ported to armclang
9292
if 'armc' in toolchain:
93-
project_list = filter(lambda p: not p.startswith("lpc55"), project_list)
93+
project_list = list(filter(lambda p: not p.startswith("lpc55"), project_list))
94+
# musca projects are too large to fit when compiled with gcc. LTO should fix that but it does not work (yet)
95+
if 'gcc' in toolchain and args.release:
96+
project_list = list(filter(lambda p: "musca" not in p, project_list))
9497

9598
logging_level = logging.DEBUG if args.verbosity >= 2 else (logging.INFO if args.verbosity >= 1 else logging.WARNING)
9699
logging.basicConfig(format="%(asctime)s %(name)020s %(levelname)s\t%(message)s", level=logging_level)
@@ -173,7 +176,7 @@ def get_core_count():
173176
except yaml.YAMLError as ex:
174177
print("Found yaml parse error", ex)
175178

176-
release_dir = args.release_folder + "_%04i" % release_version
179+
release_dir = args.release_folder + "_%04i" % release_version
177180
if os.path.exists(release_dir):
178181
logger.info("Deleting: %s" % release_dir)
179182
shutil.rmtree(release_dir, ignore_errors=True)

0 commit comments

Comments
 (0)