pit: Rename pit to peach_pit.
The name pit goes by in many places in chromeos is peach_pit, where peach is the base name and pit is the name of this particular variant. To make it easier to work with within chromeos and to make the board names a little less ambiguous, this change renames the pit board to peach_pit, and from Pit to Peach Pit. Change-Id: I51c89ba3785cf4cb9769a989b1cac71bcd1b0a05 Signed-off-by: Gabe Black <gabeblack@google.com> Reviewed-on: https://chromium-review.googlesource.com/183552 Reviewed-by: David Hendricks <dhendrix@chromium.org> Commit-Queue: Gabe Black <gabeblack@chromium.org> Tested-by: Gabe Black <gabeblack@chromium.org> (cherry picked from commit cbbe1e9f04e34436a1bbae28628e0b5630d41054) Signed-off-by: Isaac Christensen <isaac.christensen@se-eng.com> Reviewed-on: http://review.coreboot.org/6928 Tested-by: build bot (Jenkins) Reviewed-by: Ronald G. Minnich <rminnich@gmail.com> Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
This commit is contained in:
parent
7756fe70eb
commit
04bfbf5095
|
@ -37,10 +37,10 @@ config BOARD_GOOGLE_PANTHER
|
||||||
bool "Panther"
|
bool "Panther"
|
||||||
config BOARD_GOOGLE_PARROT
|
config BOARD_GOOGLE_PARROT
|
||||||
bool "Parrot"
|
bool "Parrot"
|
||||||
|
config BOARD_GOOGLE_PEACH_PIT
|
||||||
|
bool "Peach Pit"
|
||||||
config BOARD_GOOGLE_PEPPY
|
config BOARD_GOOGLE_PEPPY
|
||||||
bool "Peppy"
|
bool "Peppy"
|
||||||
config BOARD_GOOGLE_PIT
|
|
||||||
bool "Pit"
|
|
||||||
config BOARD_GOOGLE_RAMBI
|
config BOARD_GOOGLE_RAMBI
|
||||||
bool "Rambi"
|
bool "Rambi"
|
||||||
config BOARD_GOOGLE_SAMUS
|
config BOARD_GOOGLE_SAMUS
|
||||||
|
@ -62,8 +62,8 @@ source "src/mainboard/google/nyan/Kconfig"
|
||||||
source "src/mainboard/google/nyan_big/Kconfig"
|
source "src/mainboard/google/nyan_big/Kconfig"
|
||||||
source "src/mainboard/google/panther/Kconfig"
|
source "src/mainboard/google/panther/Kconfig"
|
||||||
source "src/mainboard/google/parrot/Kconfig"
|
source "src/mainboard/google/parrot/Kconfig"
|
||||||
|
source "src/mainboard/google/peach_pit/Kconfig"
|
||||||
source "src/mainboard/google/peppy/Kconfig"
|
source "src/mainboard/google/peppy/Kconfig"
|
||||||
source "src/mainboard/google/pit/Kconfig"
|
|
||||||
source "src/mainboard/google/rambi/Kconfig"
|
source "src/mainboard/google/rambi/Kconfig"
|
||||||
source "src/mainboard/google/samus/Kconfig"
|
source "src/mainboard/google/samus/Kconfig"
|
||||||
source "src/mainboard/google/slippy/Kconfig"
|
source "src/mainboard/google/slippy/Kconfig"
|
||||||
|
|
|
@ -17,7 +17,7 @@
|
||||||
## Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
## Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||||
##
|
##
|
||||||
|
|
||||||
if BOARD_GOOGLE_PIT
|
if BOARD_GOOGLE_PEACH_PIT
|
||||||
|
|
||||||
config BOARD_SPECIFIC_OPTIONS # dummy
|
config BOARD_SPECIFIC_OPTIONS # dummy
|
||||||
def_bool y
|
def_bool y
|
||||||
|
@ -32,11 +32,11 @@ config BOARD_SPECIFIC_OPTIONS # dummy
|
||||||
|
|
||||||
config MAINBOARD_DIR
|
config MAINBOARD_DIR
|
||||||
string
|
string
|
||||||
default google/pit
|
default google/peach_pit
|
||||||
|
|
||||||
config MAINBOARD_PART_NUMBER
|
config MAINBOARD_PART_NUMBER
|
||||||
string
|
string
|
||||||
default "Pit"
|
default "Peach Pit"
|
||||||
|
|
||||||
config DRAM_SIZE_MB
|
config DRAM_SIZE_MB
|
||||||
int
|
int
|
||||||
|
@ -50,4 +50,4 @@ config UART_FOR_CONSOLE
|
||||||
int
|
int
|
||||||
default 3
|
default 3
|
||||||
|
|
||||||
endif # BOARD_GOOGLE_PIT
|
endif # BOARD_GOOGLE_PEACH_PIT
|
|
@ -448,7 +448,7 @@ static void mainboard_init(device_t dev)
|
||||||
|
|
||||||
/* this might get more dynamic in future ... */
|
/* this might get more dynamic in future ... */
|
||||||
memset(&device_info, 0, sizeof(device_info));
|
memset(&device_info, 0, sizeof(device_info));
|
||||||
device_info.disp_info.name = (char *)"Pit display";
|
device_info.disp_info.name = (char *)"Peach Pit display";
|
||||||
device_info.disp_info.h_total = 1366;
|
device_info.disp_info.h_total = 1366;
|
||||||
device_info.disp_info.v_total = 768;
|
device_info.disp_info.v_total = 768;
|
||||||
device_info.video_info = dp_video_info;
|
device_info.video_info = dp_video_info;
|
Loading…
Reference in New Issue