For #1, use the NOLOAD section type. Read more about that here.
For #2, you can create an uninitialized section in the linker command file. Something like ...
special_buffer
{
. += 0x1000;
} run = RAM, RUN_START(_buffer_symbol)
Hope this helps ...
-George