As currently many systems would be barely functional without ACPI, always generate ACPI tables if supported. Change-Id: I372dbd03101030c904dab153552a1291f3b63518 Signed-off-by: Vladimir Serbinenko <phcoder@gmail.com> Reviewed-on: http://review.coreboot.org/4609 Tested-by: build bot (Jenkins) Reviewed-by: Aaron Durbin <adurbin@google.com>
30 lines
935 B
Makefile
30 lines
935 B
Makefile
ramstage-y += northbridge.c
|
|
ramstage-y += misc_control.c
|
|
ramstage-y += get_sblk_pci1234.c
|
|
ramstage-$(CONFIG_HAVE_ACPI_TABLES) += acpi.c
|
|
|
|
# Enable this if you want to check the values of the PCI routing registers.
|
|
# Call show_all_routes() anywhere amdk8.h is included.
|
|
#ramstage-y += util.c
|
|
|
|
# Not sure what to do with these yet. How did raminit_test even work?
|
|
# Should be a target in -y form.
|
|
#if CONFIG_K8_REV_F_SUPPORT
|
|
#
|
|
#makerule raminit_test
|
|
# depends "$(TOP)/src/northbridge/amd/amdk8/raminit_test.c"
|
|
# depends "$(TOP)/src/northbridge/amd/amdk8/raminit_f.c"
|
|
# action "$(HOSTCC) $(HOSTCFLAGS) $(CPUFLAGS) -Wno-unused-function -I$(TOP)/src/include -g $< -o $@"
|
|
#end
|
|
#
|
|
#else
|
|
#
|
|
#makerule raminit_test
|
|
# depends "$(TOP)/src/northbridge/amd/amdk8/raminit_test.c"
|
|
# depends "$(TOP)/src/northbridge/amd/amdk8/raminit.c"
|
|
# action "$(HOSTCC) $(HOSTCFLAGS) $(CPUFLAGS) -Wno-unused-function -I$(TOP)/src/include -g $< -o $@"
|
|
#end
|
|
#
|
|
#end
|
|
#
|