mirror of
https://github.com/shenmintao/aic8800d80.git
synced 2026-09-26 17:44:16 +00:00
fix: fix
This commit is contained in:
@@ -1,7 +1,7 @@
|
|||||||
PACKAGE_NAME="aic8800"
|
PACKAGE_NAME="aic8800"
|
||||||
PACKAGE_VERSION="1.0.0"
|
PACKAGE_VERSION="1.0.0"
|
||||||
MAKE="make -C drivers/aic8800"
|
MAKE="KVER=${kernelver} 'make' -C drivers/aic8800"
|
||||||
CLEAN="make -C drivers/aic8800 clean"
|
CLEAN="KVER=${kernelver} 'make' -C drivers/aic8800 clean"
|
||||||
|
|
||||||
# Main module (aic8800_fdrv)
|
# Main module (aic8800_fdrv)
|
||||||
BUILT_MODULE_NAME[0]="aic8800_fdrv"
|
BUILT_MODULE_NAME[0]="aic8800_fdrv"
|
||||||
|
|||||||
@@ -46,9 +46,9 @@ KDIR = /home/yaya/D/Workspace/CyberQuantum/JinHaoYue/amls905x3/SDK/20191101-0tt-
|
|||||||
endif
|
endif
|
||||||
|
|
||||||
ifeq ($(CONFIG_PLATFORM_UBUNTU), y)
|
ifeq ($(CONFIG_PLATFORM_UBUNTU), y)
|
||||||
KDIR = /lib/modules/$(shell uname -r)/build
|
KVER ?= $(shell uname -r)
|
||||||
|
KDIR = /lib/modules/$(KVER)/build
|
||||||
PWD = $(shell pwd)
|
PWD = $(shell pwd)
|
||||||
KVER = $(shell uname -r)
|
|
||||||
MODDESTDIR = /lib/modules/$(KVER)/kernel/drivers/net/wireless/aic8800
|
MODDESTDIR = /lib/modules/$(KVER)/kernel/drivers/net/wireless/aic8800
|
||||||
SUBARCH = $(shell uname -m | sed -e s/i.86/i386/ -e s/armv.l/arm/ -e s/aarch64/arm64/ -e s/loongarch64/loongarch/ -e s/loong64/loongarch/)
|
SUBARCH = $(shell uname -m | sed -e s/i.86/i386/ -e s/armv.l/arm/ -e s/aarch64/arm64/ -e s/loongarch64/loongarch/ -e s/loong64/loongarch/)
|
||||||
ARCH ?= $(SUBARCH)
|
ARCH ?= $(SUBARCH)
|
||||||
|
|||||||
Reference in New Issue
Block a user