rust-raspberrypi-OS-tutorials/20_timer_callbacks/kernel_symbols/kernel_symbols.ld

16 lines
305 B
Plaintext
Raw Normal View History

2022-10-26 20:02:12 +00:00
/* SPDX-License-Identifier: MIT OR Apache-2.0
*
* Copyright (c) 2022 Andre Richter <andre.o.richter@gmail.com>
*/
SECTIONS
{
.rodata : {
ASSERT(. > 0xffffffff00000000, "Expected higher half address")
KEEP(*(.rodata.symbol_desc*))
. = ALIGN(8);
*(.rodata*)
}
}