Module: meta-ti Branch: master Commit: c5e5c304b86a398d65330f430330ce5f730b56c5 URL: http://arago-project.org/git/meta-ti.git?a=commit;h=c5e5c304b86a398d65330f430330ce5f730b56c5
Author: Koen Kooi <[email protected]> Date: Thu Jun 7 17:40:43 2012 +0200 beaglebone-capes: add support for 4.3" LCD cape Signed-off-by: Koen Kooi <[email protected]> Signed-off-by: Denys Dmytriyenko <[email protected]> --- recipes-ti/beagleboard/beaglebone-capes.bb | 2 +- .../beagleboard/beaglebone-capes/cape-stop.sh | 3 +++ recipes-ti/beagleboard/beaglebone-capes/cape.sh | 4 ++++ 3 files changed, 8 insertions(+), 1 deletions(-) diff --git a/recipes-ti/beagleboard/beaglebone-capes.bb b/recipes-ti/beagleboard/beaglebone-capes.bb index f128924..2a9f1fb 100644 --- a/recipes-ti/beagleboard/beaglebone-capes.bb +++ b/recipes-ti/beagleboard/beaglebone-capes.bb @@ -3,7 +3,7 @@ DESCRIPTION = "Userspace setup for beaglebone capes" LICENSE = "MIT" LIC_FILES_CHKSUM = "file://${COREBASE}/LICENSE;md5=3f40d7994397109285ec7b81fdeb3b58" -PR = "r1" +PR = "r2" inherit allarch diff --git a/recipes-ti/beagleboard/beaglebone-capes/cape-stop.sh b/recipes-ti/beagleboard/beaglebone-capes/cape-stop.sh index a08498d..4950017 100755 --- a/recipes-ti/beagleboard/beaglebone-capes/cape-stop.sh +++ b/recipes-ti/beagleboard/beaglebone-capes/cape-stop.sh @@ -5,6 +5,9 @@ for eeprom in /sys/bus/i2c/devices/3-005*/eeprom ; do "BB-BONE-LCD3-01.") echo "Turning off backlight for LCD3 cape" i2cset -f -y 1 0x24 0x07 0x00;; + "BB-BONE-LCD4-01.") + echo "Turning off backlight for LCD3 cape" + i2cset -f -y 1 0x24 0x07 0x00;; *) echo "unknown cape: $PARTNUMBER";; esac diff --git a/recipes-ti/beagleboard/beaglebone-capes/cape.sh b/recipes-ti/beagleboard/beaglebone-capes/cape.sh index 69accff..61240a5 100755 --- a/recipes-ti/beagleboard/beaglebone-capes/cape.sh +++ b/recipes-ti/beagleboard/beaglebone-capes/cape.sh @@ -6,6 +6,10 @@ for eeprom in /sys/bus/i2c/devices/3-005*/eeprom ; do echo "Turning on backlight for LCD3 cape" i2cset -f -y 1 0x24 0x07 0x09 i2cset -f -y 1 0x24 0x08 0x60;; + "BB-BONE-LCD4-01.") + echo "Turning on backlight for LCD4 cape" + i2cset -f -y 1 0x24 0x07 0x09 + i2cset -f -y 1 0x24 0x08 0x60;; *) echo "unknown cape: $PARTNUMBER";; esac _______________________________________________ meta-ti mailing list [email protected] https://lists.yoctoproject.org/listinfo/meta-ti
