mirror of
https://github.com/archr-linux/Arch-R.git
synced 2026-03-31 14:41:55 -07:00
And add the missing "linux" to PKG_DEPENDS_UNPACK while at it, the tree is required for building kernel modules.
31 lines
955 B
Makefile
31 lines
955 B
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="RTL8192EU"
|
|
PKG_VERSION="83b5aff2a54785608129ac2a7db659a9699508ee"
|
|
PKG_SHA256="09b6bf64ea0686a4ecc6ec25191b32e384b903edf9cc1d2f891c56cf7b7e6d5e"
|
|
PKG_LICENSE="GPL"
|
|
PKG_SITE="https://github.com/Mange/rtl8192eu-linux-driver"
|
|
PKG_URL="https://github.com/Mange/rtl8192eu-linux-driver/archive/$PKG_VERSION.tar.gz"
|
|
PKG_LONGDESC="Realtek RTL8192EU Linux 3.x driver"
|
|
PKG_IS_KERNEL_PKG="yes"
|
|
|
|
pre_make_target() {
|
|
unset LDFLAGS
|
|
}
|
|
|
|
make_target() {
|
|
make V=1 \
|
|
ARCH=$TARGET_KERNEL_ARCH \
|
|
KSRC=$(kernel_path) \
|
|
CROSS_COMPILE=$TARGET_KERNEL_PREFIX \
|
|
CONFIG_POWER_SAVING=n \
|
|
USER_EXTRA_CFLAGS="-Wno-error=date-time"
|
|
}
|
|
|
|
makeinstall_target() {
|
|
mkdir -p $INSTALL/$(get_full_module_dir)/$PKG_NAME
|
|
cp *.ko $INSTALL/$(get_full_module_dir)/$PKG_NAME
|
|
}
|