contrib: add GPL license tag on files that miss it
[fw/openocd] / contrib / loaders / flash / fespi / riscv.lds
1 /* SPDX-License-Identifier: GPL-2.0-or-later */
2
3 OUTPUT_ARCH( "riscv" )
4
5 SECTIONS
6 {
7   . = 0x12340000;
8   .text :
9   {
10     *(.text.entry)
11     *(.text)
12   }
13   .data : { *(.data) }
14 }