blob: a588f1e1dacf054e33eaa5d1d3c61d162d57a483 [file] [log] [blame]
Furquan Shaikh2af76f42014-04-28 16:39:40 -07001#include <build.h>
2
3 .section ".id", "a", %progbits
4
5 .globl __id_start
6__id_start:
7ver:
8 .asciz COREBOOT_VERSION
9vendor:
10 .asciz CONFIG_MAINBOARD_VENDOR
11part:
12 .asciz CONFIG_MAINBOARD_PART_NUMBER
13.long __id_end - ver /* Reverse offset to the vendor id */
14.long __id_end - vendor /* Reverse offset to the vendor id */
15.long __id_end - part /* Reverse offset to the part number */
16.long CONFIG_ROM_SIZE /* Size of this romimage */
17 .globl __id_end
18
19__id_end:
20.previous