mirror of
https://github.com/outbackdingo/klipper-linux.git
synced 2026-01-27 10:19:29 +00:00
This is by no means complete, there's a lot to be done on the setup and configuration side and klipper MCU firmware builds are missing as well. The rootfs itself should be device independent (although you'd probably have to pull in machine specific layers), the image recipe is specific to the ASUS TinkerBoard S. Overall goal is to be able to build this distro for any target that is supported by Yocto. The distro should be "single purpose", i.e. no desktop like Armbian etc, but just provide a minimalistic setup for printing with a possibility to select and upload your klipper config. OctoPrint is included but should be optional (i.e. I'd like to be able to turn it off and just "print from SD" via the local LCD menu. TODOs of the top of my head: * add MCU firmware builds (probably via a multiconfig setup) * add lighttpd with a central entry page and a minimalistic web UI For the web UI: * add a possibility to select existing klipper configs and to upload custom klipper configs * add an option to enable/disable OctoPrint * backup/restore configuration To build for the tinker board: $ source setup.sh targets/tinker-board-s/ $ bitbake klipper-image-tinker-board-s Flashable wic/wic.bmap (use bmaptool) will be located in: klipper-linux-build/build/deploy/images/tinker-board-s
17 lines
783 B
BlitzBasic
17 lines
783 B
BlitzBasic
SUMMARY = "Backport/clone of ChainMap for py26, py32, and pypy3."
|
||
DESCRIPTION = "\
|
||
This module is a polyfill, implementing ChainMap for reasonably-recent versions of Python that do not have collections.ChainMap–namely, Python 2.6, Python 3.2, and PyPy3 releases based on Python 3.2. (It will also work as expected on Python 2.7, PyPy, and Python 3.3 and higher, but it is not needed there since those verions’ collections modules contains a ChainMap implementation.)"
|
||
LICENSE = "PSF"
|
||
LIC_FILES_CHKSUM = "file://setup.py;beginline=23;endline=23;md5=fa869eb628865ee985e6a9d306744ac8"
|
||
|
||
SRC_URI[sha256sum] = "e42aaa4b3e2f66102a11bfd563069704bfbfd84fdcb517b564effd736bf53cd9"
|
||
|
||
PYPI_PACKAGE = "chainmap"
|
||
|
||
CLEANBROKEN = "1"
|
||
|
||
BBCLASSEXTEND = "native nativesdk"
|
||
|
||
inherit pypi setuptools
|
||
|