I just noticed that from v207 to v208 of the device_support code for the concerto, the area reserved for bootload process has increased to 0x01A0.
So the correct linker cmd-file should include:
BOOT_RSVD : origin = 0x000002, length = 0x0001A0
RAMM0 : origin = 0x0001A2, length = 0x00025E
As opposed to pre v208, when we had:
BOOT_RSVD : origin = 0x000002, length = 0x00009F
RAMM0 : origin = 0x0000A1, length = 0x00035F
Since this change result in 256 bytes less of RAMM0, I wonder whether it is safe to keep the old version or even omit BOOT_RSVD and "take back" all of M0 for an application that always boots from flash?