From ee4a2f86f1f0f9eee3ce4afdcf0228fb237eb04b Mon Sep 17 00:00:00 2001 From: Christian Gromm Date: Fri, 8 Jul 2016 10:46:19 +0200 Subject: src: most: driver: update sources and adapt content This commit updates the driver sources to version 1.3.12 and adds the make and license files to be able to download the sources via the git fetcher from within Yocto. Change-Id: I2622d2ca84c446d4dd21459173695a35fa25ae53 Signed-off-by: Christian Gromm --- driver/aim-network/Makefile | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 driver/aim-network/Makefile (limited to 'driver/aim-network/Makefile') diff --git a/driver/aim-network/Makefile b/driver/aim-network/Makefile new file mode 100644 index 0000000..75314ff --- /dev/null +++ b/driver/aim-network/Makefile @@ -0,0 +1,18 @@ +# Makefile +# + +SRC := $(shell pwd) + +obj-m := aim_network.o +aim_network-y := networking.o +CFLAGS_networking.o := -I$(src)/../../mostcore/files/ + +all: + $(MAKE) -C $(KERNEL_SRC) M=$(SRC) modules + +modules_install: + $(MAKE) -C $(KERNEL_SRC) M=$(SRC) modules_install + +clean: + $(MAKE) -C $(KERNEL_SRC) M=$(SRC) clean + -- cgit 1.2.3-korg