2011-02-14 20:04:45 +01:00
|
|
|
#
|
|
|
|
# This file is part of the coreboot project.
|
|
|
|
#
|
|
|
|
#
|
|
|
|
# This program is free software; you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation; version 2 of the License.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
|
2012-01-19 06:18:36 +01:00
|
|
|
ifeq ($(CONFIG_AHCI_BIOS),y)
|
|
|
|
stripped_ahcibios_id = $(call strip_quotes,$(CONFIG_AHCI_BIOS_ID))
|
|
|
|
cbfs-files-$(CONFIG_AHCI_BIOS) += pci$(stripped_ahcibios_id).rom
|
|
|
|
pci$(stripped_ahcibios_id).rom-file := $(call strip_quotes,$(CONFIG_AHCI_BIOS_FILE))
|
|
|
|
pci$(stripped_ahcibios_id).rom-type := optionrom
|
|
|
|
endif
|
|
|
|
|
2020-02-13 17:20:08 +01:00
|
|
|
bootblock-y += bootblock.c
|
|
|
|
|
2011-02-14 20:04:45 +01:00
|
|
|
romstage-y += buildOpts.c
|
|
|
|
romstage-y += BiosCallOuts.c
|
2016-04-27 07:55:41 +02:00
|
|
|
romstage-y += OemCustomize.c
|
2011-02-14 20:04:45 +01:00
|
|
|
|
|
|
|
ramstage-y += buildOpts.c
|
|
|
|
ramstage-y += BiosCallOuts.c
|
2016-04-27 07:55:41 +02:00
|
|
|
ramstage-y += OemCustomize.c
|