SkyConnect stopped working after recent Synology update

I updated my Synology today to DSM 7.2.1-69057 u 2.

Since then, my SkyConnect no longer works. DSM correctly sees that the device is connected:

However, it does not show up in /dev/tty*:

Any ideas on how to fix this?

This is my startup script, and I have the most recent drivers for Geminilake:

case $1 in
  start)
    insmod /lib/modules/usbserial.ko > /dev/null 2>&1
    insmod /lib/modules/ftdi_sio.ko > /dev/null 2>&1
    insmod /lib/modules/cdc-acm.ko > /dev/null 2>&1
    insmod /lib/modules/ch341.ko > /dev/null 2>&1
    insmod /lib/modules/cp210x.ko > /dev/null 2>&1
    insmod /lib/modules/pl2303.ko > /dev/null 2>&1
    insmod /lib/modules/ti_usb_3410_5052.ko > /dev/null 2>&1
    ;;
  stop)
    exit 0
    ;;
  *)
    exit 1
    ;;
esac

I figured it out. Downloading the drivers from github to my windows PC, then uploading them to my DSM was corrupting the files somehow. Probably a difference between Binary and Ascii transfering.

Using wget to download them directly on my DSM in SSH solved the issue.

It is betwee Linux and Windows.
It is the return key that gets converted.
Windows use a CR+LF and Linux use only LF, AFAIR.
Binary will transfer the files unchanged. ASCII will change return key codes.