1e16142997
board_id() returns an integer which is platform-specific. 0 for one port is different from 0 for another port. So there is no default board_id() and hence enabling it on boards other than urara would cause build failure. Not enabling it on urara or just setting id to "(none)" as is default results in board_id() = 0 which means urara and an error message on console. Change-Id: I94618f36a75e7505984bbec345a31fe0fa9cc867 Signed-off-by: Vladimir Serbinenko <phcoder@gmail.com> Reviewed-on: http://review.coreboot.org/10379 Tested-by: build bot (Jenkins) Reviewed-by: Marc Jones <marc@marcjonesconsulting.com>
63 lines
1.4 KiB
Text
63 lines
1.4 KiB
Text
#
|
|
# This file is part of the coreboot project.
|
|
#
|
|
# Copyright (C) 2014 Imagination Technologies
|
|
#
|
|
# 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.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program; if not, write to the Free Software
|
|
# Foundation, Inc.
|
|
#
|
|
|
|
if BOARD_GOOGLE_URARA
|
|
|
|
config BOARD_SPECIFIC_OPTIONS
|
|
def_bool y
|
|
select BOARD_ROMSIZE_KB_512
|
|
select BOOTBLOCK_CONSOLE
|
|
select MAINBOARD_HAS_CHROMEOS
|
|
select SPI_FLASH_WINBOND
|
|
select CPU_IMGTEC_PISTACHIO
|
|
select COMMON_CBFS_SPI_WRAPPER
|
|
select SPI_FLASH
|
|
select BOARD_ID_MANUAL
|
|
|
|
config MAINBOARD_DIR
|
|
string
|
|
default "google/urara"
|
|
|
|
config MAINBOARD_PART_NUMBER
|
|
string
|
|
default "ImgTec Pistachio Virtual Platform"
|
|
|
|
config BOOTBLOCK_MAINBOARD_INIT
|
|
string
|
|
default "mainboard/google/urara/bootblock.c"
|
|
|
|
config DRAM_SIZE_MB
|
|
int
|
|
default 256
|
|
|
|
config TTYS0_LCS
|
|
int
|
|
default 3
|
|
|
|
config CONSOLE_SERIAL_UART_ADDRESS
|
|
hex
|
|
depends on DRIVERS_UART
|
|
default 0xB8101500
|
|
|
|
config BOOT_MEDIA_SPI_BUS
|
|
int
|
|
default 1
|
|
|
|
endif
|