mirror of
https://github.com/outbackdingo/klipper-linux.git
synced 2026-01-27 18:19:25 +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
39 lines
1.1 KiB
BlitzBasic
39 lines
1.1 KiB
BlitzBasic
DESCRIPTION = "Tornado is an open source version of the scalable, non-blocking web server and tools that power FriendFeed."
|
|
LICENSE = "Apache-2.0"
|
|
LIC_FILES_CHKSUM = "file://LICENSE;md5=3b83ef96387f14655fc854ddc3c6bd57"
|
|
|
|
PYPI_PACKGE = "tornado"
|
|
#PYPI_SRC_URI = "https://files.pythonhosted.org/packages/e3/7b/e29ab3d51c8df66922fea216e2bddfcb6430fb29620e5165b16a216e0d3c/tornado-${PV}.tar.gz"
|
|
|
|
SRC_URI[sha256sum] = "6d14e47eab0e15799cf3cdcc86b0b98279da68522caace2bd7ce644287685f0a"
|
|
|
|
inherit pypi setuptools
|
|
|
|
RDEPENDS_${PN} += "\
|
|
${PYTHON_PN}-compression \
|
|
${PYTHON_PN}-numbers \
|
|
${PYTHON_PN}-email \
|
|
${PYTHON_PN}-pkgutil \
|
|
${PYTHON_PN}-html \
|
|
${PYTHON_PN}-json \
|
|
${PYTHON_PN}-certifi \
|
|
${PYTHON_PN}-threading \
|
|
${PYTHON_PN}-ctypes \
|
|
${PYTHON_PN}-backports-abc \
|
|
${PYTHON_PN}-backports-ssl \
|
|
${PYTHON_PN}-singledispatch \
|
|
${PYTHON_PN}-subprocess \
|
|
"
|
|
|
|
RDEPENDS_${PN}-test += "${PN} ${PYTHON_PN}-unittest"
|
|
|
|
PACKAGES =+ "\
|
|
${PN}-test \
|
|
"
|
|
|
|
FILES_${PN}-test = " \
|
|
${libdir}/${PYTHON_DIR}/site-packages/*/test \
|
|
${libdir}/${PYTHON_DIR}/site-packages/*/testing.py* \
|
|
"
|
|
|