From 760a3f61457022917c0a8981f473691ef8b84b19 Mon Sep 17 00:00:00 2001 From: Bernhard Bablok Date: Thu, 19 Jan 2023 14:52:26 +0100 Subject: [PATCH] support GENERIC_LINUX_PC (kind off) --- src/board.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/board.py b/src/board.py index aabef89..a77986b 100644 --- a/src/board.py +++ b/src/board.py @@ -11,7 +11,7 @@ See `CircuitPython:board` in CircuitPython for more details. """ -__version__ = "0.0.0+auto.0" +__version__ = "8.12.0" __repo__ = "https://github.com/adafruit/Adafruit_Blinka.git" __blinka__ = True @@ -310,6 +310,9 @@ elif board_id == ap_board.SIEMENS_SIMATIC_IOT2050_ADV: elif board_id == ap_board.AML_S905X_CC: from adafruit_blinka.board.librecomputer.aml_s905x_cc_v1 import * +elif board_id == ap_board.GENERIC_LINUX_PC: + from adafruit_blinka.board.generic_linux_pc import * + elif "sphinx" in sys.modules: pass -- 2.49.0