aboutsummaryrefslogtreecommitdiff
path: root/linker_list.lds
blob: b00b7b303f0dd7737e738cb65d0d9816e41ff69b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/*
 * This file is a derivative work of arch/mips/cpu/u-boot.lds from the U-Boot
 * project <https://www.denx.de/wiki/U-Boot> and is licensed under GPL-2.0+.
 *
 * Copyright (C) 2003 Wolfgang Denk Engineering, <wd@denx.de>
 */
SECTIONS {
	__test_runner_list_start = .;
	.test_runner_list : {
		KEEP(*(SORT(.test_runner_list*)));
	}
	__test_runner_list_end = .;
}
INSERT BEFORE .bss;