Get Touchscreen eGalaxy Touch working

@pdcastro Hey, just want to give another update. Turns out we didn’t need the eGalaxy touchscreen drivers after all. All we needed to do was to set ENV UDEV 1, and install xserver packages:

RUN apt-get update && apt-get install -y --no-install-recommends \
    xserver-xorg-legacy \
    xserver-xorg-core \
    xserver-xorg-input-all \
    xserver-xorg-video-fbdev \
    xserver-xorg-input-evdev \
    xorg \
    xinput \
    x11-apps \
    matchbox-window-manager \
    xinit \
    && rm -rf /var/lib/apt/lists/*

as well as carrier board drivers. It makes sense, since the driver is already part of Linux core kernel.

1 Like