__noinit in tfm

I understand, it is possible to add variables to a section of ram, that will not be initialized (zeroed) at boot (see for example: https://github.com/nrfconnect/sdk-zephyr/blob/main/samples/boards/nrf/system_off/src/retained.c#L131)
To do this, the variable has to be marked using `__noinit`.

Is it possible to do so in the `tfm` region?
If so, how? When I just move the otherwise working code, then I get compiler errors.

Thanks in advance.

Related