Hi guys...a question on objcopy to create .bin file...i have this memory.x : ``` MEMORY { /* NOTE 1 K = 1 KiBi = 1024 bytes */ /* These values correspond to the NRF52805 with SoftDevices S112 7.2.0 */ FLASH (rx) : ORIGIN = 0x2A000, LENGTH = 24K RAM : ORIGIN = 0x20000008, LENGTH = 24K - 8 mbr_params_page (r) : ORIGIN = 0x0002E000, LENGTH = 4K bootloader_settings_page (r) : ORIGIN = 0x0002F000, LENGTH = 4K uicr_bootloader_start_address (r) : ORIGIN = 0x10001014, LENGTH = 0x4 } SECTIONS { .uicr_bootloader_start_address : { KEEP(*(.uicr_bootloader_start_address)) . = ALIGN(4); } > uicr_bootloader_start_address }; ``` It seems that .bin generated is really huge because of that section which has a "special" to set bootloader base with softdevice. Is there a way to reduce the size using binutils? It gets about 255Mb now...but they are just about 16k. Thanks