Apu3 and apu5 are additional variants of apu2 board. Apu3 has no LPC connector exposed, but has additional USB header. It has also 2 slots for SIM cards and one of the gpios is used to control switching between them. Apu5 is differing by having 6 SIM card slots (3 SIMSWAP switches). This patch adds support for those other variants by not introducing additional code redundancy. Change-Id: I4fded98fed7a8085062cdea035ecac3d608cd2a0 Signed-off-by: Kamil Wcislo <kamil.wcislo@3mdeb.com> Reviewed-on: https://review.coreboot.org/21981 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Kyösti Mälkki <kyosti.malkki@gmail.com>
29 lines
864 B
Makefile
29 lines
864 B
Makefile
#
|
|
# This file is part of the coreboot project.
|
|
#
|
|
# Copyright (C) 2012 Advanced Micro Devices, Inc.
|
|
#
|
|
# 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.
|
|
#
|
|
|
|
romstage-y += BiosCallOuts.c
|
|
romstage-y += OemCustomize.c
|
|
romstage-y += gpio_ftns.c
|
|
|
|
ramstage-y += BiosCallOuts.c
|
|
ramstage-y += OemCustomize.c
|
|
ramstage-y += gpio_ftns.c
|
|
|
|
# Order of names in SPD_SOURCES is important!
|
|
SPD_SOURCES = HYNIX-2G-1333
|
|
SPD_SOURCES += HYNIX-4G-1333-ECC
|
|
|
|
subdirs-y += variants/$(VARIANT_DIR)
|