guowenxue
2024-07-17 35deaefe2a198508903c5657a0fa7cb2ad60f56d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
DESCRIPTION = "Realtek RTL8188FU USB Wi-Fi driver"
 
LICENSE = "GPL-2.0-or-later"
LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/GPL-2.0-or-later;md5=fed54355545ffd980b814dab4a3b312c"
 
# Git repository and branch
SRC_URI = "git://github.com/kelebek333/rtl8188fu.git;branch=master;protocol=https"
SRCREV = "${AUTOREV}"
 
# Specify where the source files will be fetched to
S = "${WORKDIR}/git"
 
# Inherit the module class to handle kernel module compilation
inherit module
 
do_configure() {
    sed -i 's|^ARCH.*|ARCH ?= arm|' ${S}/Makefile
    sed -i 's|^CROSS_COMPILE.*|CROSS_COMPILE ?= ${TARGET_PREFIX}|' ${S}/Makefile
    sed -i 's|^KVER.*|KVER ?= ${KERNEL_VERSION}|' ${S}/Makefile
    sed -i 's|^KSRC.*|KSRC ?= ${STAGING_KERNEL_DIR}|' ${S}/Makefile
}
 
# Define the compile task
do_compile() {
    unset CFLAGS CPPFLAGS CXXFLAGS LDFLAGS
    oe_runmake all
}
 
# Define where to install the kernel module
do_install() {
    install -d ${D}${base_libdir}/modules/${KERNEL_VERSION}/extra/
    install -m 0644 ${S}/rtl8188fu.ko ${D}${base_libdir}/modules/${KERNEL_VERSION}/extra/
}
 
# Add the driver to the kernel modules list
KERNEL_MODULE_PROBECONF = "rtl8188fu"