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