From 7aa0451a0837d9f6a11e06ff284c6132b4d375af Mon Sep 17 00:00:00 2001 From: Silvano Seva Date: Sun, 5 Oct 2025 12:14:41 +0200 Subject: [PATCH] meson.build: remove wrap target for Module17 Module17 does not required "wrapped" binaries and this target was added only for compatibility. In the end, it was more confusing than useful. Signed-off-by: Silvano Seva --- meson.build | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/meson.build b/meson.build index ba17e00e..a2588a91 100644 --- a/meson.build +++ b/meson.build @@ -985,13 +985,6 @@ foreach t : targets # Module17 uses dfu-tool for flashing elif name == 'openrtx_mod17' - # Wrap target for Module17 for consistency, same output as bin target - custom_target(name+'_wrap', - output : name+'_wrap', - input : exe, - command : [objcopy, '-O', 'binary', '@INPUT@', '@OUTPUT@']) - - custom_target(name+'_flash', input : bin, output : name+'_flash', @@ -1011,7 +1004,7 @@ foreach t : targets custom_target(name+'_wrap', output : name+'_wrap', input : bin, - command : [cs7000_wrap, '@INPUT@', '@OUTPUT@.bin']) + command : [cs7000_wrap, '@INPUT@', '@OUTPUT@']) custom_target(name+'_flash', input : bin,