summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorDave Parker <dparker@chromium.org>2013-05-22 15:16:55 -0700
committerChromeBot <chrome-bot@google.com>2013-05-23 15:58:51 -0700
commit3443478d7659d8222222c073fb8ed2e6164b93d9 (patch)
treed2e55b646622f9e17342def857bd6077d5da0fce /test
parenta1006865e7f695ddd1c730cc9c6c6a6f109c43b9 (diff)
downloadchrome-ec-3443478d7659d8222222c073fb8ed2e6164b93d9.tar.gz
Create board configuration for peppy bringup
This change copies the slippy board configuration as a starting point for peppy. This change is essentially the same as https://gerrit.chromium.org/gerrit/55820 BUG=chrome-os-partner:19640 BRANCH=none TEST=manual Tested on slippy as there are no peppy-specific changes yet. cros_workon --board peppy start chromeos-ec emerge-peppy chromeos-ec ~/trunk/src/platform/ec/util/flash_ec --board peppy Signed-off-by: Dave Parker <dparker@chromium.org> Change-Id: I4c5f7a77fa55a6364effe838f7a656d56bfad9fb Reviewed-on: https://gerrit.chromium.org/gerrit/56332 Reviewed-by: Olof Johansson <olofj@chromium.org> Commit-Queue: Dave Parker <dparker@chromium.org> Tested-by: Dave Parker <dparker@chromium.org>
Diffstat (limited to 'test')
-rw-r--r--test/build.mk1
-rw-r--r--test/stress.c2
2 files changed, 2 insertions, 1 deletions
diff --git a/test/build.mk b/test/build.mk
index 6a302a6b02..17cb6c9853 100644
--- a/test/build.mk
+++ b/test/build.mk
@@ -24,6 +24,7 @@ test-list-$(BOARD_spring)+=kb_scan flash stress
test-list-$(BOARD_link)=
test-list-$(BOARD_slippy)=
test-list-$(BOARD_falco)=
+test-list-$(BOARD_peppy)=
# Emulator tests
test-list-host=mutex pingpong utils kb_scan kb_mkbp lid_sw power_button hooks
diff --git a/test/stress.c b/test/stress.c
index ce3e671147..4df17844f3 100644
--- a/test/stress.c
+++ b/test/stress.c
@@ -50,7 +50,7 @@ struct i2c_test_param_t {
};
/* Disable I2C test for boards without test configuration */
#if defined(BOARD_bds) || defined(BOARD_mccroskey) || defined(BOARD_slippy) || \
- defined(BOARD_falco)
+ defined(BOARD_falco) || defined(BOARD_peppy)
#undef CONFIG_I2C
#endif