vmlinux.lds.S (262b5cae67a672404da0dcbd009efc1227ad51e4) vmlinux.lds.S (e544ea57ac0734bca752eb2d8635fecbe932c356)
1/* SPDX-License-Identifier: GPL-2.0 */
2#include <asm-generic/vmlinux.lds.h>
3
4OUTPUT_FORMAT(CONFIG_OUTPUT_FORMAT)
5
6#undef i386
7
8#include <asm/cache.h>

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

76 }
77#endif
78 . = ALIGN(PAGE_SIZE); /* keep ZO size page aligned */
79 _end = .;
80
81 DISCARDS
82}
83
1/* SPDX-License-Identifier: GPL-2.0 */
2#include <asm-generic/vmlinux.lds.h>
3
4OUTPUT_FORMAT(CONFIG_OUTPUT_FORMAT)
5
6#undef i386
7
8#include <asm/cache.h>

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

76 }
77#endif
78 . = ALIGN(PAGE_SIZE); /* keep ZO size page aligned */
79 _end = .;
80
81 DISCARDS
82}
83
84ASSERT(SIZEOF(.got) == 0, "Unexpected GOT entries detected!")
84#ifdef CONFIG_X86_64
85ASSERT(SIZEOF(.got.plt) == 0 || SIZEOF(.got.plt) == 0x18, "Unexpected GOT/PLT entries detected!")
86#else
87ASSERT(SIZEOF(.got.plt) == 0 || SIZEOF(.got.plt) == 0xc, "Unexpected GOT/PLT entries detected!")
88#endif
85#ifdef CONFIG_X86_64
86ASSERT(SIZEOF(.got.plt) == 0 || SIZEOF(.got.plt) == 0x18, "Unexpected GOT/PLT entries detected!")
87#else
88ASSERT(SIZEOF(.got.plt) == 0 || SIZEOF(.got.plt) == 0xc, "Unexpected GOT/PLT entries detected!")
89#endif