summaryrefslogtreecommitdiffstats
path: root/recipes-connectivity/pi-bluetooth/pi-bluetooth.bb
diff options
context:
space:
mode:
Diffstat (limited to 'recipes-connectivity/pi-bluetooth/pi-bluetooth.bb')
-rw-r--r--recipes-connectivity/pi-bluetooth/pi-bluetooth.bb22
1 files changed, 22 insertions, 0 deletions
diff --git a/recipes-connectivity/pi-bluetooth/pi-bluetooth.bb b/recipes-connectivity/pi-bluetooth/pi-bluetooth.bb
new file mode 100644
index 0000000..e185f25
--- /dev/null
+++ b/recipes-connectivity/pi-bluetooth/pi-bluetooth.bb
@@ -0,0 +1,22 @@
1SUMMARY = "Script to properly configure BT-HCI on Raspberry Pi"
2HOMEPAGE = "https://github.com/RPi-Distro/pi-bluetooth"
3SECTION = "kernel"
4LICENSE = "BSD-3-Clause"
5LIC_FILES_CHKSUM = "\
6 file://debian/copyright;md5=6af8de3c8ee71f8e91e9b22f84ff2022 \
7"
8
9SRC_URI = "git://github.com/RPi-Distro/pi-bluetooth"
10SRCREV = "2a7477966bb3c69838b224f3ea92cb49a88124d5"
11UPSTREAM_VERSION_UNKNOWN = "1"
12
13S = "${WORKDIR}/git"
14
15inherit allarch
16
17do_install() {
18 install -d ${D}${bindir}
19 install -m 0755 ${S}/usr/bin/btuart ${D}${bindir}
20}
21
22FILES_${PN} = "${bindir}"