diff options
Diffstat (limited to 'include/asm-generic')
-rw-r--r-- | include/asm-generic/vmlinux.lds.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/include/asm-generic/vmlinux.lds.h b/include/asm-generic/vmlinux.lds.h index 7440a0dceddb..3d8e472a09c8 100644 --- a/include/asm-generic/vmlinux.lds.h +++ b/include/asm-generic/vmlinux.lds.h | |||
@@ -52,7 +52,10 @@ | |||
52 | . = ALIGN(8); \ | 52 | . = ALIGN(8); \ |
53 | VMLINUX_SYMBOL(__start___markers) = .; \ | 53 | VMLINUX_SYMBOL(__start___markers) = .; \ |
54 | *(__markers) \ | 54 | *(__markers) \ |
55 | VMLINUX_SYMBOL(__stop___markers) = .; | 55 | VMLINUX_SYMBOL(__stop___markers) = .; \ |
56 | VMLINUX_SYMBOL(__start___tracepoints) = .; \ | ||
57 | *(__tracepoints) \ | ||
58 | VMLINUX_SYMBOL(__stop___tracepoints) = .; | ||
56 | 59 | ||
57 | #define RO_DATA(align) \ | 60 | #define RO_DATA(align) \ |
58 | . = ALIGN((align)); \ | 61 | . = ALIGN((align)); \ |
@@ -61,6 +64,7 @@ | |||
61 | *(.rodata) *(.rodata.*) \ | 64 | *(.rodata) *(.rodata.*) \ |
62 | *(__vermagic) /* Kernel version magic */ \ | 65 | *(__vermagic) /* Kernel version magic */ \ |
63 | *(__markers_strings) /* Markers: strings */ \ | 66 | *(__markers_strings) /* Markers: strings */ \ |
67 | *(__tracepoints_strings)/* Tracepoints: strings */ \ | ||
64 | } \ | 68 | } \ |
65 | \ | 69 | \ |
66 | .rodata1 : AT(ADDR(.rodata1) - LOAD_OFFSET) { \ | 70 | .rodata1 : AT(ADDR(.rodata1) - LOAD_OFFSET) { \ |