22 lines
620 B
BlitzBasic
22 lines
620 B
BlitzBasic
SUMMARY = "rtl8188eus external Linux kernel module misc"
|
|
DESCRIPTION = "${SUMMARY}"
|
|
LICENSE = "CLOSED"
|
|
|
|
FILESEXTRAPATHS:prepend := "${THISDIR}/files:"
|
|
|
|
SRC_URI = "file://realtek.conf \
|
|
file://8188eu.conf \
|
|
"
|
|
|
|
FILES:${PN} += "${sysconfdir}/modprobe.d/realtek.conf \
|
|
${sysconfdir}/modules-load.d/8188eu.conf \
|
|
"
|
|
|
|
do_install:append() {
|
|
install -d ${D}${sysconfdir}/modprobe.d
|
|
install -m 0644 ${WORKDIR}/realtek.conf ${D}${sysconfdir}/modprobe.d/
|
|
|
|
install -d ${D}${sysconfdir}/modules-load.d
|
|
install -m 0644 ${WORKDIR}/8188eu.conf ${D}${sysconfdir}/modules-load.d/
|
|
}
|