mirror of
git://git.openembedded.org/meta-openembedded
synced 2026-08-13 23:45:54 +00:00
Update to the latest version of the source code in GitHub: - Use snprintf to replace strncpy without null string at last Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> (cherry picked from commit c8ef8ccd8d8ea061cf95c56e441bd696750b3598) Signed-off-by: Ankur Tyagi <ankur.tyagi85@gmail.com> Signed-off-by: Gyorgy Sarvari <skandigraun@gmail.com>
25 lines
693 B
BlitzBasic
25 lines
693 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 = "19128ed4b6108408fea05b9d0551236b6d638dbc"
|
|
|
|
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}
|
|
}
|