RTL drivers require some fixes for Linux 5.15 Systemd has also some issues due to changes in headers (on 5.15) While at this, bump Mesa minor release for some extra panfrost fixes
31 lines
1.0 KiB
Makefile
31 lines
1.0 KiB
Makefile
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
# Copyright (C) 2009-2016 Stephan Raue (stephan@openelec.tv)
|
|
# Copyright (C) 2018-present Team LibreELEC (https://libreelec.tv)
|
|
|
|
PKG_NAME="RTL8188EU"
|
|
PKG_VERSION="a69d6361ef0185aa7d2e4c774bc2de36fe83d81e"
|
|
PKG_SHA256="3e0f7506e4fe3c22cb8b7ccccb0cc778360545c5cb248119590912273b0bf8dc"
|
|
PKG_LICENSE="GPL"
|
|
# realtek: PKG_SITE="http://www.realtek.com.tw/downloads/downloadsView.aspx?Langid=1&PFid=48&Level=5&Conn=4&ProdID=274&DownTypeID=3&GetDown=false&Downloads=true"
|
|
PKG_SITE="https://github.com/lwfinger/rtl8188eu"
|
|
PKG_URL="https://github.com/lwfinger/rtl8188eu/archive/${PKG_VERSION}.tar.gz"
|
|
PKG_LONGDESC="Realtek RTL81xxEU Linux 3.x driver"
|
|
PKG_IS_KERNEL_PKG="yes"
|
|
|
|
pre_make_target() {
|
|
unset LDFLAGS
|
|
}
|
|
|
|
make_target() {
|
|
make modules \
|
|
ARCH=${TARGET_KERNEL_ARCH} \
|
|
KSRC=$(kernel_path) \
|
|
CROSS_COMPILE=${TARGET_KERNEL_PREFIX} \
|
|
CONFIG_POWER_SAVING=n
|
|
}
|
|
|
|
makeinstall_target() {
|
|
mkdir -p ${INSTALL}/$(get_full_module_dir)/${PKG_NAME}
|
|
cp *.ko ${INSTALL}/$(get_full_module_dir)/${PKG_NAME}
|
|
}
|