Changeset 5175


Ignore:
Timestamp:
Feb 28, 2010 9:56:42 PM (3 years ago)
Author:
oxygene
Message:

Use the romstraps build infrastructure created for "tinybootblock"
(chipset_bootblock_inc and chipset_bootblock_lds) instead of using
chipset specific rules for "bigbootblock" in the generic i386 Makefile.

It also adds rules for the romstraps of

  • southbridge/nvidia/ck804
  • southbridge/sis/sis966
  • northbridge/via/vx800

for the benefit of both image layouts.

Signed-off-by: Patrick Georgi <patrick.georgi@…>
Acked-by: Stefan Reinauer <stepan@…>

Location:
trunk/src
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/arch/i386/Makefile.inc

    r5171 r5175  
    155155 
    156156ifeq ($(CONFIG_BIG_BOOTBLOCK),y) 
    157 ifeq ($(CONFIG_SOUTHBRIDGE_NVIDIA_CK804),y) 
    158 crt0s += $(src)/southbridge/nvidia/ck804/romstrap.inc 
    159 ldscripts += $(src)/southbridge/nvidia/ck804/romstrap.lds 
    160 endif 
    161 ifeq ($(CONFIG_SOUTHBRIDGE_NVIDIA_MCP55),y) 
    162 crt0s += $(src)/southbridge/nvidia/mcp55/romstrap.inc 
    163 ldscripts += $(src)/southbridge/nvidia/mcp55/romstrap.lds 
    164 endif 
    165 ifeq ($(CONFIG_SOUTHBRIDGE_VIA_K8T890),y) 
    166 crt0s += $(src)/southbridge/via/k8t890/romstrap.inc 
    167 ldscripts += $(src)/southbridge/via/k8t890/romstrap.lds 
    168 endif 
    169 ifeq ($(CONFIG_NORTHBRIDGE_VIA_VX800),y) 
    170 crt0s += $(src)/northbridge/via/vx800/romstrap.inc 
    171 ldscripts += $(src)/northbridge/via/vx800/romstrap.lds 
    172 endif 
     157crt0s += $(chipset_bootblock_inc) 
     158ldscripts += $(chipset_bootblock_lds) 
    173159endif 
    174160 
  • trunk/src/northbridge/via/vx800/Makefile.inc

    r4673 r5175  
    2626driver-y += vx800_ide.o 
    2727 
     28chipset_bootblock_inc += $(src)/northbridge/via/vx800/romstrap.inc 
     29chipset_bootblock_lds += $(src)/northbridge/via/vx800/romstrap.lds 
  • trunk/src/southbridge/nvidia/ck804/Makefile.inc

    r4778 r5175  
    1515 
    1616obj-$(CONFIG_GENERATE_ACPI_TABLES) += ck804_fadt.o 
     17 
     18chipset_bootblock_inc += $(src)/southbridge/nvidia/ck804/romstrap.inc 
     19chipset_bootblock_lds += $(src)/southbridge/nvidia/ck804/romstrap.lds 
  • trunk/src/southbridge/sis/sis966/Makefile.inc

    r4673 r5175  
    1010driver-y += sis966_aza.o 
    1111obj-y += sis966_reset.o 
     12 
     13chipset_bootblock_inc += $(src)/southbridge/sis/sis966/romstrap.inc 
     14chipset_bootblock_lds += $(src)/southbridge/sis/sis966/romstrap.lds 
Note: See TracChangeset for help on using the changeset viewer.