-
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d26f0f7
commit 4096a45
Showing
1 changed file
with
32 additions
and
0 deletions.
There are no files selected for viewing
32 changes: 32 additions & 0 deletions
32
recipes-kernel/linux-firmware/linux-firmware-cyw-fmac-utils-imx64_git.bb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
SUMMARY = "Test tools from Cypress" | ||
DESCRIPTION = "Cypress' WLAN test tool bin" | ||
HOMEPAGE = "https://github.com/murata-wireless/cyw-fmac-utils-imx64" | ||
SECTION = "devel" | ||
LICENSE = "Proprietary" | ||
LIC_FILES_CHKSUM = "file://LICENCE;md5=cbc5f665d04f741f1e006d2096236ba7" | ||
|
||
do_configure[noexec] = "1" | ||
do_compile[noexec] = "1" | ||
|
||
INSANE_SKIP:${PN} += "file-rdeps" | ||
|
||
PACKAGE_ARCH = "${MACHINE_ARCH}" | ||
|
||
SRC_URI = "git://github.com/murata-wireless/cyw-fmac-utils-imx64;protocol=https" | ||
SRCREV = "1bc78d68f9609290b2f6578516011c57691f7815" | ||
PV = "20210713" | ||
|
||
S = "${WORKDIR}/git" | ||
|
||
do_install() { | ||
# Copying wl tool binary to /usr/sbin | ||
install -d ${D}/usr/sbin | ||
install -m 755 ${S}/wl ${D}/usr/sbin/wl | ||
} | ||
|
||
FILES:${PN} += "${sbindir}" | ||
|
||
RDEPENDS:${PN} += " libnl-nf" | ||
|
||
COMPATIBLE_MACHINE ?= "^$" | ||
COMPATIBLE_MACHINE:portenta-mx8mm = ".*" |