This patch unifies the use of config options in v2 to all start with CONFIG_
[coreboot.git] / src / arch / i386 / lib / id.inc
index 46b4424511828febc5c9a52d1c48da57edcac7bb..c2f634ea0035a30aa9e024155227e15f545343f6 100644 (file)
@@ -3,12 +3,12 @@
        .globl __id_start
 __id_start:
 vendor:        
-       .asciz MAINBOARD_VENDOR
+       .asciz CONFIG_MAINBOARD_VENDOR
 part:          
-       .asciz MAINBOARD_PART_NUMBER
+       .asciz CONFIG_MAINBOARD_PART_NUMBER
 .long __id_end + 0x10 - vendor  /* Reverse offset to the vendor id */
 .long __id_end + 0x10 - part    /* Reverse offset to the part number */
-.long PAYLOAD_SIZE + ROM_IMAGE_SIZE  /* Size of this romimage */
+.long CONFIG_PAYLOAD_SIZE + CONFIG_ROM_IMAGE_SIZE  /* Size of this romimage */
        .globl __id_end
 
 __id_end: