.. | .. |
---|
| 1 | +/* SPDX-License-Identifier: GPL-2.0-or-later */ |
---|
1 | 2 | /* |
---|
2 | 3 | * Copyright (C) 2009 Thomas Chou <thomas@wytron.com.tw> |
---|
3 | | - * |
---|
4 | | - * This program is free software; you can redistribute it and/or modify |
---|
5 | | - * it under the terms of the GNU General Public License as published by |
---|
6 | | - * the Free Software Foundation; either version 2 of the License, or |
---|
7 | | - * (at your option) any later version. |
---|
8 | | - * |
---|
9 | | - * This program is distributed in the hope that it will be useful, |
---|
10 | | - * but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
11 | | - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
---|
12 | | - * GNU General Public License for more details. |
---|
13 | | - * |
---|
14 | | - * You should have received a copy of the GNU General Public License |
---|
15 | | - * along with this program. If not, see <http://www.gnu.org/licenses/>. |
---|
16 | | - * |
---|
17 | 4 | */ |
---|
18 | 5 | #include <asm/page.h> |
---|
19 | 6 | #include <asm-generic/vmlinux.lds.h> |
---|
.. | .. |
---|
62 | 49 | __init_end = .; |
---|
63 | 50 | |
---|
64 | 51 | _sdata = .; |
---|
65 | | - RO_DATA_SECTION(PAGE_SIZE) |
---|
66 | | - RW_DATA_SECTION(L1_CACHE_BYTES, PAGE_SIZE, THREAD_SIZE) |
---|
| 52 | + RO_DATA(PAGE_SIZE) |
---|
| 53 | + RW_DATA(L1_CACHE_BYTES, PAGE_SIZE, THREAD_SIZE) |
---|
67 | 54 | _edata = .; |
---|
68 | 55 | |
---|
69 | 56 | BSS_SECTION(0, 0, 0) |
---|
.. | .. |
---|
71 | 58 | |
---|
72 | 59 | STABS_DEBUG |
---|
73 | 60 | DWARF_DEBUG |
---|
74 | | - NOTES |
---|
| 61 | + ELF_DETAILS |
---|
75 | 62 | |
---|
76 | 63 | DISCARDS |
---|
77 | 64 | } |
---|