Every object file with a struct pci_driver ... __pci_driver needs to be marked
as "driver" instead of "object" in order to get the init code actually executed. This patch fixes up all northbridges that did not do this before. Signed-off-by: Stefan Reinauer <stepan@coresystems.de> Acked-by: Joseph Smith <joe@settoplinux.org> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@4027 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
parent
5f28c09ce5
commit
b8e2517055
|
@ -27,7 +27,7 @@ if CONFIG_CHIP_NAME
|
|||
config chip.h
|
||||
end
|
||||
|
||||
object northbridge.o
|
||||
driver northbridge.o
|
||||
driver misc_control.o
|
||||
|
||||
if HAVE_ACPI_TABLES
|
||||
|
|
|
@ -8,7 +8,7 @@ if CONFIG_CHIP_NAME
|
|||
config chip.h
|
||||
end
|
||||
|
||||
object northbridge.o
|
||||
driver northbridge.o
|
||||
driver misc_control.o
|
||||
|
||||
makerule raminit_test
|
||||
|
|
|
@ -1,2 +1,2 @@
|
|||
config chip.h
|
||||
object northbridge.o
|
||||
driver northbridge.o
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
config chip.h
|
||||
object northbridge.o
|
||||
driver northbridge.o
|
||||
object northbridgeinit.o
|
||||
object chipsetinit.o
|
||||
object grphinit.o
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
config chip.h
|
||||
object northbridge.o
|
||||
driver northbridge.o
|
||||
object northbridgeinit.o
|
||||
object grphinit.o
|
||||
|
|
|
@ -19,4 +19,4 @@
|
|||
##
|
||||
|
||||
config chip.h
|
||||
object northbridge.o
|
||||
driver northbridge.o
|
||||
|
|
|
@ -19,4 +19,4 @@
|
|||
##
|
||||
|
||||
config chip.h
|
||||
object northbridge.o
|
||||
driver northbridge.o
|
||||
|
|
|
@ -19,4 +19,4 @@
|
|||
##
|
||||
|
||||
config chip.h
|
||||
object northbridge.o
|
||||
driver northbridge.o
|
||||
|
|
|
@ -20,6 +20,6 @@
|
|||
|
||||
config chip.h
|
||||
object vgabios.o
|
||||
object northbridge.o
|
||||
driver northbridge.o
|
||||
driver agp.o
|
||||
driver vga.o
|
||||
|
|
|
@ -1,2 +1,2 @@
|
|||
config chip.h
|
||||
object northbridge.o
|
||||
driver northbridge.o
|
||||
|
|
|
@ -1,2 +1,2 @@
|
|||
config chip.h
|
||||
object northbridge.o
|
||||
driver northbridge.o
|
||||
|
|
Loading…
Reference in New Issue