Skip to content

Commit 2826418

Browse files
committed
include/dts-functions.sh: Add config for minnowboard platform
Signed-off-by: Pawel Langowski <[email protected]>
1 parent 098102e commit 2826418

File tree

1 file changed

+18
-5
lines changed

1 file changed

+18
-5
lines changed

include/dts-functions.sh

Lines changed: 18 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -834,11 +834,24 @@ board_config() {
834834
return 1
835835
;;
836836
esac
837-
838-
BIOS_LINK_DPP="$FW_STORE_URL_DPP/$DASHARO_REL_NAME/v$DASHARO_REL_VER_DPP/${DASHARO_REL_NAME}_v$DASHARO_REL_VER_DPP.rom"
839-
BIOS_HASH_LINK_DPP="${BIOS_LINK_DPP}.sha256"
840-
BIOS_SIGN_LINK_DPP="${BIOS_LINK_DPP}.sha256.sig"
841-
;;
837+
"Intel")
838+
shopt -s nocasematch
839+
case "$SYSTEM_MODEL" in
840+
"Minnow Max")
841+
DASHARO_REL_NAME="minnowboard_turbot"
842+
DASHARO_REL_VER_DES="TBD"
843+
HAVE_EC="false"
844+
NEED_EC_RESET="false"
845+
BIOS_LINK_DES="${FW_STORE_URL_DES}/minnowboard/v${DASHARO_REL_VER_DES}/${DASHARO_REL_NAME}_v${DASHARO_REL_VER_DES}.rom"
846+
FLASH_CHIP_LIST="W25Q64JV-.Q"
847+
PROGRAMMER_BIOS="internal"
848+
;;
849+
*)
850+
print_error "Board model $SYSTEM_MODEL is currently not supported"
851+
return 1
852+
;;
853+
esac
854+
shopt -u nocasematch
842855
*)
843856
print_error "Board vendor: $SYSTEM_VENDOR is currently not supported"
844857
return 1

0 commit comments

Comments
 (0)