├── ArchLinux ├── Makefile ├── bwidget │ └── PKGBUILD ├── linux-raspberrypi-rt │ ├── 60-linux.hook │ ├── 90-linux.hook │ ├── PKGBUILD │ ├── cmdline.txt │ ├── config │ ├── config.txt │ ├── linux-raspberrypi.install │ └── linux.preset ├── mklatencyplot │ ├── latency_4.19.71-1-rt24-ARCH.png │ └── mklatencyplot.bash ├── python2-pyqt5 │ └── PKGBUILD ├── python2-scipy │ ├── python2-scipy-1.2.3-1-armv7h.pkg.tar.xz │ └── python2-scipy-1.2.3-1-armv7h.pkg.tar.xz.sig ├── python2-vtk │ └── PKGBUILD ├── rt-tests │ └── PKGBUILD ├── stamp-h1 ├── stamp-h2 ├── tcllib │ └── PKGBUILD ├── tclx │ ├── PKGBUILD │ ├── interperrorline.patch │ └── pre-commit ├── tif_config.h ├── tiffconf.h ├── tkimg │ └── PKGBUILD └── yapps-source │ └── usr │ ├── bin │ └── yapps │ └── lib │ └── pthon2.7 │ └── site-packages │ └── yapps │ ├── __init__.py │ ├── __init__.pyc │ ├── grammar.py │ ├── grammar.pyc │ ├── parsetree.py │ ├── parsetree.pyc │ ├── runtime.py │ └── runtime.pyc ├── Pi OS └── vtk_7.1.1-qt5py2-1_armhf.deb ├── PyQt5 └── libpyqt5.so ├── README.md ├── docs ├── 1 LinuxCNC Install.md ├── 2 Enable UART.md ├── 3 Faster compiling on RPi.md ├── 4. VTK for QtPyVCP.md ├── _config.yml ├── about.md ├── images │ ├── RaspberryPi.jpg │ ├── header-brand.png │ ├── jekyll.png │ ├── linuxcnc-wizard.gif │ ├── liquid-icon.png │ ├── liquid.png │ ├── markdown.png │ ├── octocat.jpg │ ├── octojekyll.png │ ├── ruby.png │ ├── sass-icon.png │ ├── sass.png │ ├── yaml-icon.png │ └── yaml.png └── index.md ├── kernels └── kernel_4_19_71-rt24-v7 │ └── rt-kernel.tgz └── libtirpc.patch /ArchLinux/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottalford75/LinuxCNC-on-RPi/HEAD/ArchLinux/Makefile -------------------------------------------------------------------------------- /ArchLinux/bwidget/PKGBUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottalford75/LinuxCNC-on-RPi/HEAD/ArchLinux/bwidget/PKGBUILD -------------------------------------------------------------------------------- /ArchLinux/linux-raspberrypi-rt/60-linux.hook: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottalford75/LinuxCNC-on-RPi/HEAD/ArchLinux/linux-raspberrypi-rt/60-linux.hook -------------------------------------------------------------------------------- /ArchLinux/linux-raspberrypi-rt/90-linux.hook: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottalford75/LinuxCNC-on-RPi/HEAD/ArchLinux/linux-raspberrypi-rt/90-linux.hook -------------------------------------------------------------------------------- /ArchLinux/linux-raspberrypi-rt/PKGBUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottalford75/LinuxCNC-on-RPi/HEAD/ArchLinux/linux-raspberrypi-rt/PKGBUILD -------------------------------------------------------------------------------- /ArchLinux/linux-raspberrypi-rt/cmdline.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottalford75/LinuxCNC-on-RPi/HEAD/ArchLinux/linux-raspberrypi-rt/cmdline.txt -------------------------------------------------------------------------------- /ArchLinux/linux-raspberrypi-rt/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottalford75/LinuxCNC-on-RPi/HEAD/ArchLinux/linux-raspberrypi-rt/config -------------------------------------------------------------------------------- /ArchLinux/linux-raspberrypi-rt/config.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottalford75/LinuxCNC-on-RPi/HEAD/ArchLinux/linux-raspberrypi-rt/config.txt -------------------------------------------------------------------------------- /ArchLinux/linux-raspberrypi-rt/linux-raspberrypi.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottalford75/LinuxCNC-on-RPi/HEAD/ArchLinux/linux-raspberrypi-rt/linux-raspberrypi.install -------------------------------------------------------------------------------- /ArchLinux/linux-raspberrypi-rt/linux.preset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottalford75/LinuxCNC-on-RPi/HEAD/ArchLinux/linux-raspberrypi-rt/linux.preset -------------------------------------------------------------------------------- /ArchLinux/mklatencyplot/latency_4.19.71-1-rt24-ARCH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottalford75/LinuxCNC-on-RPi/HEAD/ArchLinux/mklatencyplot/latency_4.19.71-1-rt24-ARCH.png -------------------------------------------------------------------------------- /ArchLinux/mklatencyplot/mklatencyplot.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottalford75/LinuxCNC-on-RPi/HEAD/ArchLinux/mklatencyplot/mklatencyplot.bash -------------------------------------------------------------------------------- /ArchLinux/python2-pyqt5/PKGBUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottalford75/LinuxCNC-on-RPi/HEAD/ArchLinux/python2-pyqt5/PKGBUILD -------------------------------------------------------------------------------- /ArchLinux/python2-scipy/python2-scipy-1.2.3-1-armv7h.pkg.tar.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottalford75/LinuxCNC-on-RPi/HEAD/ArchLinux/python2-scipy/python2-scipy-1.2.3-1-armv7h.pkg.tar.xz -------------------------------------------------------------------------------- /ArchLinux/python2-scipy/python2-scipy-1.2.3-1-armv7h.pkg.tar.xz.sig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottalford75/LinuxCNC-on-RPi/HEAD/ArchLinux/python2-scipy/python2-scipy-1.2.3-1-armv7h.pkg.tar.xz.sig -------------------------------------------------------------------------------- /ArchLinux/python2-vtk/PKGBUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottalford75/LinuxCNC-on-RPi/HEAD/ArchLinux/python2-vtk/PKGBUILD -------------------------------------------------------------------------------- /ArchLinux/rt-tests/PKGBUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottalford75/LinuxCNC-on-RPi/HEAD/ArchLinux/rt-tests/PKGBUILD -------------------------------------------------------------------------------- /ArchLinux/stamp-h1: -------------------------------------------------------------------------------- 1 | timestamp for libtiff/tif_config.h 2 | -------------------------------------------------------------------------------- /ArchLinux/stamp-h2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottalford75/LinuxCNC-on-RPi/HEAD/ArchLinux/stamp-h2 -------------------------------------------------------------------------------- /ArchLinux/tcllib/PKGBUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottalford75/LinuxCNC-on-RPi/HEAD/ArchLinux/tcllib/PKGBUILD -------------------------------------------------------------------------------- /ArchLinux/tclx/PKGBUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottalford75/LinuxCNC-on-RPi/HEAD/ArchLinux/tclx/PKGBUILD -------------------------------------------------------------------------------- /ArchLinux/tclx/interperrorline.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottalford75/LinuxCNC-on-RPi/HEAD/ArchLinux/tclx/interperrorline.patch -------------------------------------------------------------------------------- /ArchLinux/tclx/pre-commit: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | mksrcinfo 4 | git add -f .SRCINFO 5 | exit 0 6 | -------------------------------------------------------------------------------- /ArchLinux/tif_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottalford75/LinuxCNC-on-RPi/HEAD/ArchLinux/tif_config.h -------------------------------------------------------------------------------- /ArchLinux/tiffconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottalford75/LinuxCNC-on-RPi/HEAD/ArchLinux/tiffconf.h -------------------------------------------------------------------------------- /ArchLinux/tkimg/PKGBUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottalford75/LinuxCNC-on-RPi/HEAD/ArchLinux/tkimg/PKGBUILD -------------------------------------------------------------------------------- /ArchLinux/yapps-source/usr/bin/yapps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottalford75/LinuxCNC-on-RPi/HEAD/ArchLinux/yapps-source/usr/bin/yapps -------------------------------------------------------------------------------- /ArchLinux/yapps-source/usr/lib/pthon2.7/site-packages/yapps/__init__.py: -------------------------------------------------------------------------------- 1 | # empty 2 | -------------------------------------------------------------------------------- /ArchLinux/yapps-source/usr/lib/pthon2.7/site-packages/yapps/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottalford75/LinuxCNC-on-RPi/HEAD/ArchLinux/yapps-source/usr/lib/pthon2.7/site-packages/yapps/__init__.pyc -------------------------------------------------------------------------------- /ArchLinux/yapps-source/usr/lib/pthon2.7/site-packages/yapps/grammar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottalford75/LinuxCNC-on-RPi/HEAD/ArchLinux/yapps-source/usr/lib/pthon2.7/site-packages/yapps/grammar.py -------------------------------------------------------------------------------- /ArchLinux/yapps-source/usr/lib/pthon2.7/site-packages/yapps/grammar.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottalford75/LinuxCNC-on-RPi/HEAD/ArchLinux/yapps-source/usr/lib/pthon2.7/site-packages/yapps/grammar.pyc -------------------------------------------------------------------------------- /ArchLinux/yapps-source/usr/lib/pthon2.7/site-packages/yapps/parsetree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottalford75/LinuxCNC-on-RPi/HEAD/ArchLinux/yapps-source/usr/lib/pthon2.7/site-packages/yapps/parsetree.py -------------------------------------------------------------------------------- /ArchLinux/yapps-source/usr/lib/pthon2.7/site-packages/yapps/parsetree.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottalford75/LinuxCNC-on-RPi/HEAD/ArchLinux/yapps-source/usr/lib/pthon2.7/site-packages/yapps/parsetree.pyc -------------------------------------------------------------------------------- /ArchLinux/yapps-source/usr/lib/pthon2.7/site-packages/yapps/runtime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottalford75/LinuxCNC-on-RPi/HEAD/ArchLinux/yapps-source/usr/lib/pthon2.7/site-packages/yapps/runtime.py -------------------------------------------------------------------------------- /ArchLinux/yapps-source/usr/lib/pthon2.7/site-packages/yapps/runtime.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottalford75/LinuxCNC-on-RPi/HEAD/ArchLinux/yapps-source/usr/lib/pthon2.7/site-packages/yapps/runtime.pyc -------------------------------------------------------------------------------- /Pi OS/vtk_7.1.1-qt5py2-1_armhf.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottalford75/LinuxCNC-on-RPi/HEAD/Pi OS/vtk_7.1.1-qt5py2-1_armhf.deb -------------------------------------------------------------------------------- /PyQt5/libpyqt5.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottalford75/LinuxCNC-on-RPi/HEAD/PyQt5/libpyqt5.so -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottalford75/LinuxCNC-on-RPi/HEAD/README.md -------------------------------------------------------------------------------- /docs/1 LinuxCNC Install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottalford75/LinuxCNC-on-RPi/HEAD/docs/1 LinuxCNC Install.md -------------------------------------------------------------------------------- /docs/2 Enable UART.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottalford75/LinuxCNC-on-RPi/HEAD/docs/2 Enable UART.md -------------------------------------------------------------------------------- /docs/3 Faster compiling on RPi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottalford75/LinuxCNC-on-RPi/HEAD/docs/3 Faster compiling on RPi.md -------------------------------------------------------------------------------- /docs/4. VTK for QtPyVCP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottalford75/LinuxCNC-on-RPi/HEAD/docs/4. VTK for QtPyVCP.md -------------------------------------------------------------------------------- /docs/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottalford75/LinuxCNC-on-RPi/HEAD/docs/_config.yml -------------------------------------------------------------------------------- /docs/about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottalford75/LinuxCNC-on-RPi/HEAD/docs/about.md -------------------------------------------------------------------------------- /docs/images/RaspberryPi.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottalford75/LinuxCNC-on-RPi/HEAD/docs/images/RaspberryPi.jpg -------------------------------------------------------------------------------- /docs/images/header-brand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottalford75/LinuxCNC-on-RPi/HEAD/docs/images/header-brand.png -------------------------------------------------------------------------------- /docs/images/jekyll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottalford75/LinuxCNC-on-RPi/HEAD/docs/images/jekyll.png -------------------------------------------------------------------------------- /docs/images/linuxcnc-wizard.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottalford75/LinuxCNC-on-RPi/HEAD/docs/images/linuxcnc-wizard.gif -------------------------------------------------------------------------------- /docs/images/liquid-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottalford75/LinuxCNC-on-RPi/HEAD/docs/images/liquid-icon.png -------------------------------------------------------------------------------- /docs/images/liquid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottalford75/LinuxCNC-on-RPi/HEAD/docs/images/liquid.png -------------------------------------------------------------------------------- /docs/images/markdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottalford75/LinuxCNC-on-RPi/HEAD/docs/images/markdown.png -------------------------------------------------------------------------------- /docs/images/octocat.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottalford75/LinuxCNC-on-RPi/HEAD/docs/images/octocat.jpg -------------------------------------------------------------------------------- /docs/images/octojekyll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottalford75/LinuxCNC-on-RPi/HEAD/docs/images/octojekyll.png -------------------------------------------------------------------------------- /docs/images/ruby.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottalford75/LinuxCNC-on-RPi/HEAD/docs/images/ruby.png -------------------------------------------------------------------------------- /docs/images/sass-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottalford75/LinuxCNC-on-RPi/HEAD/docs/images/sass-icon.png -------------------------------------------------------------------------------- /docs/images/sass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottalford75/LinuxCNC-on-RPi/HEAD/docs/images/sass.png -------------------------------------------------------------------------------- /docs/images/yaml-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottalford75/LinuxCNC-on-RPi/HEAD/docs/images/yaml-icon.png -------------------------------------------------------------------------------- /docs/images/yaml.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottalford75/LinuxCNC-on-RPi/HEAD/docs/images/yaml.png -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottalford75/LinuxCNC-on-RPi/HEAD/docs/index.md -------------------------------------------------------------------------------- /kernels/kernel_4_19_71-rt24-v7/rt-kernel.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottalford75/LinuxCNC-on-RPi/HEAD/kernels/kernel_4_19_71-rt24-v7/rt-kernel.tgz -------------------------------------------------------------------------------- /libtirpc.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottalford75/LinuxCNC-on-RPi/HEAD/libtirpc.patch --------------------------------------------------------------------------------