Hello pmt,
The error hints the clue, overflow in segment. This is copied from intram linker command file:
vectorram (RW): ORIGIN = 0x1FFF0000, LENGTH = 0x00000420 # SRAM - Vector table
rom (RX): ORIGIN = 0x1FFF0420, LENGTH = 0x0000FBE0 # SRAM - Code + Const data
ram (RW): ORIGIN = 0x20000000, LENGTH = 0x00010000 # SRAM - RW data
Rom segment size is 0xfbe0. Demos you built were bigger in size than available space in that segment therefore they don't fit.If this case happens, use FLASH target.
Regards,
MartinK