From 0d078e45a74de11a317be854d73388be873d27cd Mon Sep 17 00:00:00 2001 From: Hector Palacios Date: Tue, 17 Feb 2026 10:55:42 +0100 Subject: [PATCH] sysinfo: add support to retrieve MCA version for cc95 Signed-off-by: Hector Palacios --- meta-digi-dey/recipes-digi/sysinfo/sysinfo/sysinfo | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/meta-digi-dey/recipes-digi/sysinfo/sysinfo/sysinfo b/meta-digi-dey/recipes-digi/sysinfo/sysinfo/sysinfo index 54e7df828..bfaafd9c1 100755 --- a/meta-digi-dey/recipes-digi/sysinfo/sysinfo/sysinfo +++ b/meta-digi-dey/recipes-digi/sysinfo/sysinfo/sysinfo @@ -3,7 +3,7 @@ # # sysinfo # -# Copyright (C) 2016-2024 by Digi International Inc. +# Copyright (C) 2016-2026 by Digi International Inc. # All rights reserved. # # This program is free software; you can redistribute it and/or modify it @@ -317,6 +317,8 @@ if grep -qs '\' /proc/device-tree/compatible; then MCA_NODE="/sys/bus/i2c/devices/0-007e" elif grep -qs '\' /proc/device-tree/compatible; then MCA_NODE="/sys/bus/i2c/devices/0-0063" +elif grep -qs '\' /proc/device-tree/compatible; then + MCA_NODE="/sys/bus/i2c/devices/7-0020" fi if [ -d "$MCA_NODE" ]; then MCA_HW_VERSION=$(cat ${MCA_NODE}/hw_version 2>/dev/null | tr -d '\0') || MCA_HW_VERSION="??"