diff options
author | Patrick Georgi <patrick.georgi@secunet.com> | 2012-11-16 14:50:32 +0100 |
---|---|---|
committer | Patrick Georgi <patrick@georgi-clan.de> | 2012-11-27 22:00:49 +0100 |
commit | 23f38cd05c05ed1876febfa59b652cd7171027ca (patch) | |
tree | 1f9ff27e3b427fcca9a60699119ecdd3dbae2372 /src/cpu/via | |
parent | 18607f717eb125f49431da3843c19fcb25f1ee81 (diff) | |
download | coreboot-23f38cd05c05ed1876febfa59b652cd7171027ca.tar.xz |
Get rid of drivers class
The use of ramstage.a required the build system to handle some
object files in a special way, which were put in the drivers
class.
These object files didn't provide any symbols that were used
directly (but only via linker magic), and so the linker never
considered them for inclusion.
With ramstage.a gone, we can drop this special class, too.
Change-Id: I6f1369e08d7d12266b506a5597c3a139c5c41a55
Signed-off-by: Patrick Georgi <patrick.georgi@secunet.com>
Reviewed-on: http://review.coreboot.org/1872
Tested-by: build bot (Jenkins)
Reviewed-by: Ronald G. Minnich <rminnich@gmail.com>
Diffstat (limited to 'src/cpu/via')
-rw-r--r-- | src/cpu/via/c3/Makefile.inc | 2 | ||||
-rw-r--r-- | src/cpu/via/c7/Makefile.inc | 2 | ||||
-rw-r--r-- | src/cpu/via/nano/Makefile.inc | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/src/cpu/via/c3/Makefile.inc b/src/cpu/via/c3/Makefile.inc index e6b889aece..d5e02a95cc 100644 --- a/src/cpu/via/c3/Makefile.inc +++ b/src/cpu/via/c3/Makefile.inc @@ -5,4 +5,4 @@ subdirs-y += ../../x86/cache subdirs-y += ../../x86/smm subdirs-y += ../../intel/microcode -driver-y += c3_init.c +ramstage-y += c3_init.c diff --git a/src/cpu/via/c7/Makefile.inc b/src/cpu/via/c7/Makefile.inc index 5300f5d224..417d762751 100644 --- a/src/cpu/via/c7/Makefile.inc +++ b/src/cpu/via/c7/Makefile.inc @@ -5,6 +5,6 @@ subdirs-y += ../../x86/cache subdirs-y += ../../x86/smm subdirs-y += ../../intel/microcode -driver-y += c7_init.c +ramstage-y += c7_init.c cpu_incs += $(src)/cpu/via/car/cache_as_ram.inc diff --git a/src/cpu/via/nano/Makefile.inc b/src/cpu/via/nano/Makefile.inc index 6b0c1e934a..f08b482a61 100644 --- a/src/cpu/via/nano/Makefile.inc +++ b/src/cpu/via/nano/Makefile.inc @@ -23,7 +23,7 @@ subdirs-y += ../../x86/lapic subdirs-y += ../../x86/cache subdirs-y += ../../x86/smm -driver-y += nano_init.c +ramstage-y += nano_init.c ramstage-y += update_ucode.c # We need to hear from VIA to get permission to include this file in the |