mirror of
https://github.com/thead-yocto-mirror/meta-openembedded
synced 2026-09-18 13:11:57 +02:00
24 lines
608 B
PHP
24 lines
608 B
PHP
DESCRIPTION = "Universal Hardware Driver Firmware"
|
|
HOMEPAGE = "http://www.ettus.com"
|
|
LICENSE = "GPLv3"
|
|
|
|
INC_PR = "r0"
|
|
|
|
inherit allarch
|
|
|
|
SRC_URI = "http://www.ettus.com/downloads/uhd_releases/${PV}/images-only/UHD-images-${PVdots}.tar.gz"
|
|
|
|
S = "${WORKDIR}/UHD-images-${PVdots}"
|
|
|
|
do_install() {
|
|
install -d ${D}${datadir}/uhd/images
|
|
install -d ${D}${datadir}/uhd/images/bit
|
|
install -m 0644 ${S}/share/uhd/images/bit/* ${D}${datadir}/uhd/images/bit
|
|
rm -rf ${S}/share/uhd/images/bit
|
|
install -m 0644 ${S}/share/uhd/images/* ${D}${datadir}/uhd/images
|
|
}
|
|
|
|
PACKAGES = "${PN}"
|
|
FILES_${PN} = ${datadir}/uhd/images
|
|
|