From be62a9e70b3c69784ebbf8ced1aec28925850448 Mon Sep 17 00:00:00 2001 From: ChenLing Date: Fri, 12 Jul 2019 09:49:08 +0800 Subject: [PATCH] =?UTF-8?q?ADD=20=20aaa-12=20=E5=A2=9E=E5=8A=A0=E5=86=85?= =?UTF-8?q?=E6=A0=B8=E6=80=81netlink=E9=80=9A=E9=81=93=E6=8E=A5=E6=94=B6?= =?UTF-8?q?=E9=85=8D=E7=BD=AE=E4=BF=A1=E6=81=AFMakefile=E6=96=87=E4=BB=B6?= =?UTF-8?q?=20RCA=EF=BC=9A=20SOL=EF=BC=9A=20=E4=BF=AE=E6=94=B9=E4=BA=BA?= =?UTF-8?q?=EF=BC=9Achenling=20=E6=A3=80=E8=A7=86=E4=BA=BA=EF=BC=9A?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Product/modules/usercfgrcv/Makefile | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100755 Product/modules/usercfgrcv/Makefile diff --git a/Product/modules/usercfgrcv/Makefile b/Product/modules/usercfgrcv/Makefile new file mode 100755 index 000000000..6a01d1c6b --- /dev/null +++ b/Product/modules/usercfgrcv/Makefile @@ -0,0 +1,11 @@ +ifneq ($(KERNELRELEASE), ) +obj-m := usercfg_kinit.o +else +#KDIR ?= /opt/fsl-kernel/x86/linux-4.9.140 +KDIR ?= /opt/fsl-kernel/arm64/linux-4.9.140 +#PWD := $(shell pwd) +all: + make -C $(KDIR) M=$(PWD) modules +clean: + make -C $(KDIR) M=$(PWD) clean +endif