aboutsummaryrefslogtreecommitdiff
path: root/linker_list.lds
diff options
context:
space:
mode:
Diffstat (limited to 'linker_list.lds')
-rw-r--r--linker_list.lds14
1 files changed, 14 insertions, 0 deletions
diff --git a/linker_list.lds b/linker_list.lds
new file mode 100644
index 0000000..b00b7b3
--- /dev/null
+++ b/linker_list.lds
@@ -0,0 +1,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;