tree: drop last paragraph of GPL copyright header
[coreboot.git] / src / southbridge / intel / sch / Makefile.inc
bloba963650a5fc58e941b59719966cf430d4ebb599d
1 ##
2 ## This file is part of the coreboot project.
3 ##
4 ## Copyright (C) 2010 coresystems GmbH
5 ##
6 ## This program is free software; you can redistribute it and/or modify
7 ## it under the terms of the GNU General Public License as published by
8 ## the Free Software Foundation; version 2 of the License.
9 ##
10 ## This program is distributed in the hope that it will be useful,
11 ## but WITHOUT ANY WARRANTY; without even the implied warranty of
12 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 ## GNU General Public License for more details.
16 ifeq ($(CONFIG_SOUTHBRIDGE_INTEL_SCH),y)
18 ramstage-y += south.c
19 ramstage-y += audio.c
20 ramstage-y += lpc.c
21 ramstage-y += ide.c
22 ramstage-y += pcie.c
23 ramstage-y += usb.c
24 ramstage-y += usb_ehci.c
25 ramstage-y += usb_client.c
26 ramstage-y += mmc.c
27 ramstage-y += smbus.c
29 ramstage-y += reset.c
31 ramstage-$(CONFIG_HAVE_SMI_HANDLER) += smi.c
32 ramstage-$(CONFIG_HAVE_SMI_HANDLER) += ../../../cpu/x86/smm/smmrelocate.S
33 smm-$(CONFIG_HAVE_SMI_HANDLER) += smihandler.c
35 ramstage-srcs += src/mainboard/$(MAINBOARDDIR)/hda_verb.c
37 # We don't ship that, but booting without it is bound to fail
38 cbfs-files-$(CONFIG_HAVE_CMC) += cmc.bin
39 cmc.bin-file := $(call strip_quotes,$(CONFIG_CMC_FILE))
40 cmc.bin-type := raw
41 cmc.bin-position := 0xfffd0000
43 endif