mirror of
https://git.code.sf.net/p/openocd/code
synced 2024-11-26 02:16:26 +00:00
25a374a187
Put the SPDX tag alone in a comment in the first line of the file. Replace the obsolete GPL-2.0+ tag The SPDX tag on files *.c is incorrect, as it should use the C99 single line comment using '//'. But current checkpatch doesn't allow C99 comments, so keep using standard C comments, by now. Change-Id: Ia91b0f7da42c439b6340bbe81983b86b68f6d65c Signed-off-by: Antonio Borneo <borneo.antonio@gmail.com> Reviewed-on: https://review.openocd.org/c/openocd/+/7156 Tested-by: jenkins
14 lines
235 B
Plaintext
14 lines
235 B
Plaintext
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
OUTPUT_FORMAT("elf32-littlearm", "elf32-littlearm", "elf32-littlearm")
|
|
OUTPUT_ARCH(arm)
|
|
ENTRY(_start)
|
|
SECTIONS
|
|
{
|
|
. = 0x0;
|
|
. = ALIGN(4);
|
|
.text : {
|
|
sh_qspi.o (.text*)
|
|
*(.text*)
|
|
}
|
|
}
|