sections.c (326ea986ac150acdc7656d57fca647db80b50158) | sections.c (d0b5d9da5de280120b73e776663f6a3024f225f4) |
---|---|
1/* 2 * Copyright 2013 Albert ARIBAUD <albert.u.boot@aribaud.net> 3 * 4 * SPDX-License-Identifier: GPL-2.0+ 5 */ 6 7/** 8 * These two symbols are declared in a C file so that the linker --- 11 unchanged lines hidden (view full) --- 20 */ 21 22char __bss_start[0] __attribute__((section(".__bss_start"))); 23char __bss_end[0] __attribute__((section(".__bss_end"))); 24char __image_copy_start[0] __attribute__((section(".__image_copy_start"))); 25char __image_copy_end[0] __attribute__((section(".__image_copy_end"))); 26char __rel_dyn_start[0] __attribute__((section(".__rel_dyn_start"))); 27char __rel_dyn_end[0] __attribute__((section(".__rel_dyn_end"))); | 1/* 2 * Copyright 2013 Albert ARIBAUD <albert.u.boot@aribaud.net> 3 * 4 * SPDX-License-Identifier: GPL-2.0+ 5 */ 6 7/** 8 * These two symbols are declared in a C file so that the linker --- 11 unchanged lines hidden (view full) --- 20 */ 21 22char __bss_start[0] __attribute__((section(".__bss_start"))); 23char __bss_end[0] __attribute__((section(".__bss_end"))); 24char __image_copy_start[0] __attribute__((section(".__image_copy_start"))); 25char __image_copy_end[0] __attribute__((section(".__image_copy_end"))); 26char __rel_dyn_start[0] __attribute__((section(".__rel_dyn_start"))); 27char __rel_dyn_end[0] __attribute__((section(".__rel_dyn_end"))); |
28char _end[0] __attribute__((section(".__end"))); |
|