secondary.S: Fix dropping ramstage.a
This unused code was not silently dropped as before. Change-Id: Ic76c58e233869a60c3a8a27c2efc2182b3a4442d Signed-off-by: Stefan Reinauer <reinauer@google.com> Reviewed-on: http://review.coreboot.org/1863 Tested-by: build bot (Jenkins) Reviewed-by: Ronald G. Minnich <rminnich@gmail.com>
This commit is contained in:
parent
40f36e0d8d
commit
82ecf4c582
|
@ -1,6 +1,7 @@
|
||||||
#include <cpu/x86/mtrr.h>
|
#include <cpu/x86/mtrr.h>
|
||||||
#include <cpu/x86/lapic_def.h>
|
#include <cpu/x86/lapic_def.h>
|
||||||
|
|
||||||
|
#if CONFIG_SMP && CONFIG_MAX_CPUS > 1
|
||||||
.text
|
.text
|
||||||
.globl _secondary_start, _secondary_start_end
|
.globl _secondary_start, _secondary_start_end
|
||||||
.balign 4096
|
.balign 4096
|
||||||
|
@ -62,3 +63,4 @@ __ap_protected_start:
|
||||||
jmp 1b
|
jmp 1b
|
||||||
|
|
||||||
.code32
|
.code32
|
||||||
|
#endif
|
||||||
|
|
Loading…
Reference in New Issue