1
0
mirror of https://git.yoctoproject.org/meta-ti synced 2026-06-06 02:42:34 +00:00

beaglebone-capes: userspace support for capes

Not everything can be done inside the kernel yet, so have a script that does the userspace portion.
Only the LCD3 cape is supported currently, more will follow later.

Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
Signed-off-by: Denys Dmytriyenko <denys@ti.com>
This commit is contained in:
Koen Kooi
2012-04-17 14:47:42 +02:00
committed by Denys Dmytriyenko
parent 41053c22a7
commit f026aa7bd0
3 changed files with 43 additions and 0 deletions
@@ -0,0 +1,23 @@
DESCRIPTION = "Userspace setup for beaglebone capes"
LICENSE = "MIT"
LIC_FILES_CHKSUM = "file://${COREBASE}/LICENSE;md5=3f40d7994397109285ec7b81fdeb3b58"
inherit allarch
SRC_URI = "file://cape.service \
file://cape.sh \
"
do_install() {
install -d ${D}${base_libdir}/systemd/system/
install -m 0644 ${WORKDIR}/cape.service ${D}${base_libdir}/systemd/system
install -d ${D}${base_libdir}/systemd/system/basic.target.wants
ln -sf ../cape.service ${D}${base_libdir}/systemd/system/basic.target.wants/
install -d ${D}${bindir}
install -m 0755 ${WORKDIR}/cape.sh ${D}${bindir}
}
FILES_${PN} += "${base_libdir}/systemd/system"
@@ -0,0 +1,8 @@
[Unit]
Description=Beaglebone cape support
[Service]
ExecStart=/usr/bin/cape.sh
[Install]
WantedBy=basic.target
+12
View File
@@ -0,0 +1,12 @@
#!/bin/sh
for eeprom in /sys/bus/i2c/devices/3-005*/eeprom ; do
PARTNUMBER=$(hexdump -e '8/1 "%c"' $eeprom -s 58 -n16)
case $PARTNUMBER in
"BB-BONE-LCD3-01.")
echo "Turning on backlight for LCD3 cape"
i2cset -f -y 1 0x24 0x07 0x09
i2cset -f -y 1 0x24 0x08 0x60;;
*)
echo "unknown cape: $PARTNUMBER";;
esac
done