INNO-MAKER / CAM-OV9281RAW-V2

Sersor OV9281, RAW-DATA, 2-LAN Output Module
19 stars 4 forks source link

autoinstall.sh error - wrong driverpath for arch arm64 on Linux_5.15.32 #2

Open rongith opened 2 years ago

rongith commented 2 years ago

For Linux_5.15.32, in section case $strArch in:

    *aarch64*)
        arch=arm64
        echo "System is 64 bit arch."
        driverpath=./$version/$arch/pi3_4
    ;;
    *)

Should be

    *aarch64*)
        arch=arm64
        echo "System is 64 bit arch."
        driverpath=./$version/$arch/$model
    ;;
    *)

To refer properly to the repository structure.