aboutsummaryrefslogtreecommitdiff
path: root/src/arch/x86/id.ld
blob: b69a8dc1a55946fef3693f4363afa35622a7a9e7 (plain)
1
2
3
4
5
6
7
8
/* SPDX-License-Identifier: GPL-2.0-only */

SECTIONS {
	. = (0xffffffff - CONFIG_ID_SECTION_OFFSET) - (__id_end - __id_start) + 1;
	.id (.): {
		KEEP(*(.id))
	}
}