diff options
author | Randall Spangler <rspangler@chromium.org> | 2012-06-26 09:48:04 -0700 |
---|---|---|
committer | Gerrit <chrome-bot@google.com> | 2012-06-26 13:58:54 -0700 |
commit | fb123b48384cdf2eb1c5008324fac6f8d2811e16 (patch) | |
tree | 32f5a582794db1d253fadc2c6427b7905fae3640 /board/bds | |
parent | 90afebac6406e02ce306a4a6eaf7b66097a81931 (diff) | |
download | chrome-ec-fb123b48384cdf2eb1c5008324fac6f8d2811e16.tar.gz |
Only one RW image is now the default
And if RW B isn't enabled, it's not even linked.
BUG=chrome-os-partner:10881
TEST=on link, should be no B image, and 'sysjump B' should fail
On BDS, still should be A and B images
Signed-off-by: Randall Spangler <rspangler@chromium.org>
Change-Id: Icb2af07881cc7e28b9b877f45824486a22fde8d7
Reviewed-on: https://gerrit.chromium.org/gerrit/26116
Diffstat (limited to 'board/bds')
-rw-r--r-- | board/bds/board.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/board/bds/board.h b/board/bds/board.h index 7353cce42f..49a3fc94c4 100644 --- a/board/bds/board.h +++ b/board/bds/board.h @@ -10,10 +10,13 @@ /* Optional features */ #define CONFIG_CONSOLE_CMDHELP +#define CONFIG_RW_B /* RW firmware A *and* B */ #define CONFIG_SYSTEM_UNLOCKED /* Allow dangerous commands */ #define CONFIG_VBOOT #define CONFIG_VBOOT_SIG +#ifndef __ASSEMBLER__ + enum adc_channel { ADC_CH_EC_TEMP = 0, /* EC internal die temperature in degrees K. */ @@ -44,4 +47,6 @@ enum gpio_signal { void configure_board(void); +#endif /* !__ASSEMBLER__ */ + #endif /* __BOARD_H */ |