CH340 driver?
Ubuntu usually has support built in for the CH340(g) chip, which is a USB-serial converter found on arduinos, etc.
But no luck with this distro...
Ideas?
Trying to compile the module from scratch gives
"make *** /lib/modules/1.4.144/build not found!"
Thanks, Andy.
Comments
Got this working!
Install ROC-RK3328-CC_Ubuntu16.04_Arch64_20180514 from http://en.t-firefly.com/doc/download/index/id/34.html using Etcher
sudo apt-get install git
git clone https://github.com/Ozzadar/CH341SER_LINUX.git
cd CH341SER_LINUX
wget https://raw.githubusercontent.com/torvalds/linux/master/arch/arm/include/asm/opcodes.h
sudo mkdir -p /usr/src/linux-headers-4.4.114-00003-g78cbf59-dirty/arch/arm/include/asm
sudo mv opcodes.h /usr/src/linux-headers-4.4.114-00003-g78cbf59-dirty/arch/arm/include/asm/
cd /usr/src/linux-headers-4.4.114-00003-g78cbf59-dirty
sudo make scripts #gives an error, but OK for now
cd -
make
sudo make load
If you haven't discovered this yet, the default kernel that firefly provides is very limited. It would be nice for them to use a slightly modified Ubuntu kernel configuration, especially since they provide their unique ubuntu build. If you need help building and installing a kernel, let me know. I have a document that I am in the process of editing.