change default CONSOLE_VARIANT to "pocketgo"

the one using st7789sfb driver
This commit is contained in:
Apaczer
2023-03-24 20:20:57 +01:00
committed by GitHub
parent 68a6988d9c
commit a3b8303307
2 changed files with 3 additions and 3 deletions

View File

@@ -1 +1 @@
CONSOLE_VARIANT=v90_q90
CONSOLE_VARIANT=pocketgo

View File

@@ -15,9 +15,9 @@ export LOGS # so that subshells can use this as well
if test -r "${BOOTDIR}/console.cfg"; then
source "${BOOTDIR}/console.cfg"
fi
# sanity checks - we default to V90/Q90
# sanity checks - we default to PocketGO
if test -z "${CONSOLE_VARIANT}"; then
CONSOLE_VARIANT="v90_q90"
CONSOLE_VARIANT="pocketgo"
fi
export CONSOLE_VARIANT