It does. You can connect USB flash drive for e.g. You have to ssh and manually mount the drive though. Unfortunately, the existing xochitl app doesn't seem to show additional mounts. However, you can write your own scripts/code to take advantage of it.
The OS has udev and systemd support and it's very easy to cross compile code with arm-linux-gnueabihf-gcc. I was able to build static binaries of packages with just the following option:
./configure --target=arm-linux-gnueabi --host=arm-linux-gnueabi --build=x86_64-linux CFLAGS="-static"
make LDFLAGS="-static"
You have low level access to buttons, framebuffer, touch events etc as well. You can do all kinds of interesting things with that.
The OS has udev and systemd support and it's very easy to cross compile code with arm-linux-gnueabihf-gcc. I was able to build static binaries of packages with just the following option:
You have low level access to buttons, framebuffer, touch events etc as well. You can do all kinds of interesting things with that.