1 /* SPDX-License-Identifier: GPL-2.0-only */
5 .section ".id", "a", @progbits
8 .asciz COREBOOT_VERSION
10 .asciz CONFIG_MAINBOARD_VENDOR
12 .asciz CONFIG_MAINBOARD_PART_NUMBER
14 #if ENV_X86_64 || defined(__clang__)
15 .long 0xffffffff - ver + 1 /* Reverse offset to the version */
16 .long 0xffffffff - vendor + 1 /* Reverse offset to the vendor id */
17 .long 0xffffffff - part + 1 /* Reverse offset to the part number */
19 .long - ver /* Reverse offset to the version */
20 .long - vendor /* Reverse offset to the vendor id */
21 .long - part /* Reverse offset to the part number */
24 .long CONFIG_ROM_SIZE /* Size of this romimage */