vmlinux.lds.S (cdd38c5f1ce4398ec58fec95904b75824daab7b5) vmlinux.lds.S (6f4eea90465ad0cd5f3d041b9b2c728426f2b8d4)
1/* SPDX-License-Identifier: GPL-2.0-only */
2/*
3 * Copyright (C) 2012 Regents of the University of California
4 * Copyright (C) 2017 SiFive
5 */
6
7#define LOAD_OFFSET PAGE_OFFSET
8#include <asm/vmlinux.lds.h>

--- 76 unchanged lines hidden (view full) ---

85 }
86 PERCPU_SECTION(L1_CACHE_BYTES)
87
88 .rel.dyn : {
89 *(.rel.dyn*)
90 }
91
92 __init_data_end = .;
1/* SPDX-License-Identifier: GPL-2.0-only */
2/*
3 * Copyright (C) 2012 Regents of the University of California
4 * Copyright (C) 2017 SiFive
5 */
6
7#define LOAD_OFFSET PAGE_OFFSET
8#include <asm/vmlinux.lds.h>

--- 76 unchanged lines hidden (view full) ---

85 }
86 PERCPU_SECTION(L1_CACHE_BYTES)
87
88 .rel.dyn : {
89 *(.rel.dyn*)
90 }
91
92 __init_data_end = .;
93
94 . = ALIGN(8);
95 .alternative : {
96 __alt_start = .;
97 *(.alternative)
98 __alt_end = .;
99 }
93 __init_end = .;
94
95 /* Start of data section */
96 _sdata = .;
97 RO_DATA(SECTION_ALIGN)
98 .srodata : {
99 *(.srodata*)
100 }

--- 34 unchanged lines hidden ---
100 __init_end = .;
101
102 /* Start of data section */
103 _sdata = .;
104 RO_DATA(SECTION_ALIGN)
105 .srodata : {
106 *(.srodata*)
107 }

--- 34 unchanged lines hidden ---