forked from zephyrproject-rtos/zephyr
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
boards: em_starterkit: Add board firmware version config option
Signed-off-by: Huaqi Fang <[email protected]>
- Loading branch information
Showing
3 changed files
with
26 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# Kconfig - DesignWare ARC EM Starter Kit board configuration options | ||
|
||
# | ||
# Copyright (c) 2017 Synopsys, Inc. All rights reserved. | ||
# | ||
# SPDX-License-Identifier: Apache-2.0 | ||
# | ||
|
||
if BOARD_EM_STARTERKIT | ||
|
||
choice | ||
prompt "Board Firmware Version" | ||
default BOARD_EM_STARTERKIT_R23 | ||
|
||
config BOARD_EM_STARTERKIT_R22 | ||
bool "2.2" | ||
|
||
config BOARD_EM_STARTERKIT_R23 | ||
bool "2.3" | ||
|
||
endchoice | ||
|
||
endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters