summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/board.sh9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/board.sh b/src/board.sh
index 12b86cf..42a123d 100644
--- a/src/board.sh
+++ b/src/board.sh
@@ -19,6 +19,8 @@ board_functions='get_name get_id match get_dists'
boards=''
+board_chip=''
+
register_board()
{
local board="${1}"
@@ -46,7 +48,14 @@ find_board()
for fn in ${board_functions}; do
eval "board_${fn}() { board_${board}_${fn} \"\${@}\"; }"
done
+ board_chip="${chip}"
return 0
done
return 1
}
+
+board_get_chip()
+{
+ printf '%s' "${board_chip}"
+ return 0
+}