├── .gitattributes ├── .gitignore ├── README.md ├── Vagrantfile ├── docs ├── INSTALL ├── ani_layers.psd ├── animation.aep ├── pngn_kernelomatic_with_logos.gif └── pngn_kernelomatic_with_logos.png ├── install.sh └── provision.sh /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit-Pi-Kernel-o-Matic/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.swp 2 | *.swo 3 | .DS_Store 4 | .vagrant 5 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit-Pi-Kernel-o-Matic/HEAD/README.md -------------------------------------------------------------------------------- /Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit-Pi-Kernel-o-Matic/HEAD/Vagrantfile -------------------------------------------------------------------------------- /docs/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit-Pi-Kernel-o-Matic/HEAD/docs/INSTALL -------------------------------------------------------------------------------- /docs/ani_layers.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit-Pi-Kernel-o-Matic/HEAD/docs/ani_layers.psd -------------------------------------------------------------------------------- /docs/animation.aep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit-Pi-Kernel-o-Matic/HEAD/docs/animation.aep -------------------------------------------------------------------------------- /docs/pngn_kernelomatic_with_logos.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit-Pi-Kernel-o-Matic/HEAD/docs/pngn_kernelomatic_with_logos.gif -------------------------------------------------------------------------------- /docs/pngn_kernelomatic_with_logos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit-Pi-Kernel-o-Matic/HEAD/docs/pngn_kernelomatic_with_logos.png -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit-Pi-Kernel-o-Matic/HEAD/install.sh -------------------------------------------------------------------------------- /provision.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit-Pi-Kernel-o-Matic/HEAD/provision.sh --------------------------------------------------------------------------------