b8fba86b14
Kconfig 4.17 started using the $(..) syntax for environment variable expansion while we want to keep expansion to the build system. Older Kconfig versions (like ours) simply drop the escapes, not changing the behavior. While we could let Kconfig expand some of the variables, that only splits the handling in two places, making debugging harder and potentially messing with reproducible builds (e.g. when paths end up in configs), so escape them all. Change-Id: Ibc4087fdd76089352bd8dd0edb1351ec79ea4faa Signed-off-by: Patrick Georgi <pgeorgi@google.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/42481 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Werner Zeh <werner.zeh@siemens.com> Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net> Reviewed-by: Frans Hendriks <fhendriks@eltan.com> Reviewed-by: Wim Vervoorn <wvervoorn@eltan.com>
60 lines
1.5 KiB
Text
60 lines
1.5 KiB
Text
## SPDX-License-Identifier: GPL-2.0-only
|
|
|
|
if BOARD_ASUS_P2B || BOARD_ASUS_P2B_D || BOARD_ASUS_P2B_DS || BOARD_ASUS_P2B_F || BOARD_ASUS_P2B_LS || BOARD_ASUS_P3B_F
|
|
|
|
config BASE_ASUS_P2B_D
|
|
def_bool n
|
|
select SDRAMPWR_4DIMM
|
|
select HAVE_MP_TABLE
|
|
select IOAPIC
|
|
select SMP
|
|
|
|
config BOARD_SPECIFIC_OPTIONS
|
|
def_bool y
|
|
select CPU_INTEL_SLOT_1
|
|
select NORTHBRIDGE_INTEL_I440BX
|
|
select SOUTHBRIDGE_INTEL_I82371EB
|
|
select SUPERIO_WINBOND_W83977TF
|
|
select HAVE_PIRQ_TABLE
|
|
select BOARD_ROMSIZE_KB_256
|
|
select SDRAMPWR_4DIMM if BOARD_ASUS_P2B_LS || BOARD_ASUS_P3B_F
|
|
select HAVE_ACPI_TABLES if BOARD_ASUS_P2B || BOARD_ASUS_P2B_LS
|
|
select BASE_ASUS_P2B_D if BOARD_ASUS_P2B_D || BOARD_ASUS_P2B_DS
|
|
|
|
config MAX_CPUS
|
|
int
|
|
default 2 if BASE_ASUS_P2B_D
|
|
|
|
config MAINBOARD_DIR
|
|
string
|
|
default "asus/p2b"
|
|
|
|
config MAINBOARD_PART_NUMBER
|
|
string
|
|
default "P2B" if BOARD_ASUS_P2B
|
|
default "P2B-D" if BOARD_ASUS_P2B_D
|
|
default "P2B-DS" if BOARD_ASUS_P2B_DS
|
|
default "P2B-F" if BOARD_ASUS_P2B_F
|
|
default "P2B-LS" if BOARD_ASUS_P2B_LS
|
|
default "P3B-F" if BOARD_ASUS_P3B_F
|
|
|
|
config VARIANT_DIR
|
|
string
|
|
default "p2b" if BOARD_ASUS_P2B
|
|
default "p2b-d" if BOARD_ASUS_P2B_D
|
|
default "p2b-ds" if BOARD_ASUS_P2B_DS
|
|
default "p2b-f" if BOARD_ASUS_P2B_F
|
|
default "p2b-ls" if BOARD_ASUS_P2B_LS
|
|
default "p3b-f" if BOARD_ASUS_P3B_F
|
|
|
|
config OVERRIDE_DEVICETREE
|
|
string
|
|
default "variants/\$(CONFIG_VARIANT_DIR)/overridetree.cb"
|
|
|
|
config IRQ_SLOT_COUNT
|
|
int
|
|
default 8 if BOARD_ASUS_P2B_LS || BOARD_ASUS_P3B_F
|
|
default 7 if BOARD_ASUS_P2B_F || BOARD_ASUS_P2B_DS
|
|
default 6
|
|
|
|
endif
|