diff options
Diffstat (limited to 'recipes-ti/beagleboard/gadget-init.bb')
-rw-r--r-- | recipes-ti/beagleboard/gadget-init.bb | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/recipes-ti/beagleboard/gadget-init.bb b/recipes-ti/beagleboard/gadget-init.bb index f3300e19..cedb9e82 100644 --- a/recipes-ti/beagleboard/gadget-init.bb +++ b/recipes-ti/beagleboard/gadget-init.bb | |||
@@ -1,5 +1,7 @@ | |||
1 | DESCRIPTION = "Units to initialize usb gadgets" | 1 | DESCRIPTION = "Units to initialize usb gadgets" |
2 | 2 | ||
3 | PR = "r2" | ||
4 | |||
3 | LICENSE = "MIT" | 5 | LICENSE = "MIT" |
4 | LIC_FILES_CHKSUM = "file://${COREBASE}/LICENSE;md5=3f40d7994397109285ec7b81fdeb3b58" | 6 | LIC_FILES_CHKSUM = "file://${COREBASE}/LICENSE;md5=3f40d7994397109285ec7b81fdeb3b58" |
5 | 7 | ||
@@ -7,7 +9,8 @@ COMPATIBLE_MACHINE = "(ti33x)" | |||
7 | PACKAGE_ARCH = "${MACHINE_ARCH}" | 9 | PACKAGE_ARCH = "${MACHINE_ARCH}" |
8 | 10 | ||
9 | SRC_URI = "file://storage-gadget-init.service \ | 11 | SRC_URI = "file://storage-gadget-init.service \ |
10 | file://hokey-pokey.service \ | 12 | file://99-hokey-pokey.rules \ |
13 | file://hokey-pokey.sh \ | ||
11 | " | 14 | " |
12 | 15 | ||
13 | do_install() { | 16 | do_install() { |
@@ -17,6 +20,13 @@ do_install() { | |||
17 | install -m 0644 $i ${D}${base_libdir}/systemd/system | 20 | install -m 0644 $i ${D}${base_libdir}/systemd/system |
18 | ln -sf ../$(basename $i) ${D}${base_libdir}/systemd/system/basic.target.wants/ | 21 | ln -sf ../$(basename $i) ${D}${base_libdir}/systemd/system/basic.target.wants/ |
19 | done | 22 | done |
23 | |||
24 | install -d ${D}${sysconfdir}/udev/rules.d | ||
25 | install -m 0644 ${WORKDIR}/*.rules ${D}${sysconfdir}/udev/rules.d | ||
26 | |||
27 | install -d ${D}${bindir} | ||
28 | install -m 0755 ${WORKDIR}/*.sh ${D}${bindir} | ||
29 | |||
20 | } | 30 | } |
21 | 31 | ||
22 | FILES_${PN} = "${base_libdir}/systemd" | 32 | FILES_${PN} = "${base_libdir}/systemd ${sysconfdir} ${bindir}" |