diff options
Diffstat (limited to 'recipes-bsp/multitech/mt-dt-overlay/init-mtcpmhs-sdmfg')
-rw-r--r-- | recipes-bsp/multitech/mt-dt-overlay/init-mtcpmhs-sdmfg | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/recipes-bsp/multitech/mt-dt-overlay/init-mtcpmhs-sdmfg b/recipes-bsp/multitech/mt-dt-overlay/init-mtcpmhs-sdmfg index 2a0e03d..5edb36f 100644 --- a/recipes-bsp/multitech/mt-dt-overlay/init-mtcpmhs-sdmfg +++ b/recipes-bsp/multitech/mt-dt-overlay/init-mtcpmhs-sdmfg @@ -26,12 +26,12 @@ load_overlay() { # Detect PCA9557 I2C GPIO at 0x19 on I2C bus 1 RES_="$(/usr/sbin/i2cdetect -r -y 1 0x19 0x19)" if [[ "$RES_" =~ .*(^10:[[:blank:]]+19).* ]]; then - if ! pushd MTCDT3/0.2 ; then - echo "Can't find MTCDT3/0.2 direcotry" + if ! pushd MTCDT3AC/0.1 ; then + echo "Can't find MTCDT3AC/0.1 direcotry" popd return 1 fi - echo "Loading device tree overlay for MTCDT3 v 0.2" + echo "Loading device tree overlay for MTCDT3AC v 0.1" install_all_dtbo popd fi @@ -39,12 +39,12 @@ load_overlay() { # Detect MCP23008 I2C GPIO at 0x21 on I2C bus 1 RES_="$(/usr/sbin/i2cdetect -r -y 1 0x21 0x21)" if [[ "$RES_" =~ .*(^20:[[:blank:]]+21).* ]]; then - if ! pushd MTCDT3/0.0 ; then - echo "Can't find MTCDT3/0.0 direcotry" + if ! pushd MTCDT3AC/0.0 ; then + echo "Can't find MTCDT3AC/0.0 direcotry" popd return 1 fi - echo "Loading device tree overlay for MTCDT3 v 0.0" + echo "Loading device tree overlay for MTCDT3AC v 0.0" install_all_dtbo popd fi |