Files
tqma6-yocto-mirror/sources/meta-openembedded/meta-oe/recipes-devtools/ssd1306/ssd1306_git.bb
Siggi (OpenClaw Agent) 16accb6b24 Complete Yocto mirror with license table for TQMa6UL (2038-compliance)
- 264 license table entries with exact download URLs (224/264 resolved)
- Complete sources/ directory with all BitBake recipes
- Build configuration: tqma6ul-multi-mba6ulx, spaetzle (musl)
- Full traceability for Softwarefreigabeantrag
- GCC 13.4.0, Linux 6.6.102, U-Boot 2023.04, musl 1.2.4
- License distribution: GPL-2.0 (24), MIT (23), GPL-2.0+ (18), BSD-3 (16)
2026-03-01 21:14:11 +00:00

25 lines
691 B
BlitzBasic

SUMMARY="SSD1306 OLED I2C drive"
DESCRIPTION = "SSD1306 OLED I2C driver working in Linux"
HOMEPAGE = "https://github.com/armlabs/ssd1306_linux"
SECTION = "console/utils"
LICENSE = "MIT"
LIC_FILES_CHKSUM = "file://LICENSE;md5=7b694e603a996c3bfdc6093ed1f70c8f"
SRC_URI = " \
git://github.com/armlabs/ssd1306_linux.git;protocol=https;branch=master \
"
SRCREV = "34b42992a43fda69c6ba2557b718601cafe16251"
S = "${WORKDIR}/git"
# coreutils provides fmt which is used in the Makefile
DEPENDS = "i2c-tools coreutils-native"
EXTRA_OEMAKE = "CC='${CC}' CFLAGS='${CFLAGS}' LDFLAGS='${LDFLAGS}'"
do_install() {
install -d ${D}${bindir}
install -m 0755 ${B}/ssd1306_bin ${D}${bindir}
}