blob: 9170a84e6ff8aaf2c53997b23e82df6262557fbb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
SUMMARY = "btwilink module disabling modprobe configuration"
LICENSE = "MIT"
LIC_FILES_CHKSUM = "file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420"
SRC_URI = "file://btwilink-disable.conf"
COMPATIBLE_MACHINE = "m3ulcb"
do_compile[noexec] = "1"
do_install() {
install -d ${D}${sysconfdir}/modprobe.d
install -m 0644 ${WORKDIR}/btwilink-disable.conf ${D}${sysconfdir}/modprobe.d
}
|