After this has been brought up many times before, rename src/arch/i386 to
[coreboot.git] / src / arch / x86 / lib / id.inc
1         .section ".id", "a", @progbits
2
3         .globl __id_start
4 __id_start:
5 vendor:
6         .asciz CONFIG_MAINBOARD_VENDOR
7 part:
8         .asciz CONFIG_MAINBOARD_PART_NUMBER
9 .long __id_end + CONFIG_ID_SECTION_OFFSET - vendor  /* Reverse offset to the vendor id */
10 .long __id_end + CONFIG_ID_SECTION_OFFSET - part    /* Reverse offset to the part number */
11 .long CONFIG_ROM_SIZE                               /* Size of this romimage */
12         .globl __id_end
13
14 __id_end:
15 .previous