436f99b72a
which is normally set to 0x10 (the current default) and set to 0x80 (the current alternative) where necessary (if romstraps get in the way). For Kconfig, the special case is set per southbridge (as these define the necessity for this workaround), for newconfig it's added to each single board. Signed-off-by: Patrick Georgi <patrick.georgi@coresystems.de> Acked-by: Ronald G. Minnich <rminnich@gmail.com> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@4962 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
15 lines
450 B
C++
15 lines
450 B
C++
.section ".id", "a", @progbits
|
|
|
|
.globl __id_start
|
|
__id_start:
|
|
vendor:
|
|
.asciz CONFIG_MAINBOARD_VENDOR
|
|
part:
|
|
.asciz CONFIG_MAINBOARD_PART_NUMBER
|
|
.long __id_end + CONFIG_ID_SECTION_OFFSET - vendor /* Reverse offset to the vendor id */
|
|
.long __id_end + CONFIG_ID_SECTION_OFFSET - part /* Reverse offset to the part number */
|
|
.long CONFIG_ROM_SIZE /* Size of this romimage */
|
|
.globl __id_end
|
|
|
|
__id_end:
|
|
.previous
|