1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
| # Copyright (C) 2019, Fuzhou Rockchip Electronics Co., Ltd
| # Released under the MIT license (see COPYING.MIT for the terms)
|
| DESCRIPTION = "Realtek develop tools"
| SECTION = "devel"
| LICENSE = "GPLv2"
| LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/GPL-2.0;md5=801f80980d171dd6425610833a22dbe6"
|
| SRC_URI = " \
| file://hciattach.c \
| file://hciattach.h \
| file://hciattach_rtk.c \
| file://Makefile \
| "
|
| S = "${WORKDIR}"
|
| do_install() {
| install -d ${D}${bindir}
| install -m 0755 rtk_hciattach ${D}${bindir}
| }
|
|