From 1ab0cac2bdc797f84cec28f3d545cb9d37921fc4 Mon Sep 17 00:00:00 2001 From: Waldemar Brodkorb Date: Mon, 25 May 2015 08:55:24 -0500 Subject: add 4.0 separate file --- mk/modules-4.0.mk | 6 ++++++ mk/modules.mk | 4 ++++ 2 files changed, 10 insertions(+) create mode 100644 mk/modules-4.0.mk (limited to 'mk') diff --git a/mk/modules-4.0.mk b/mk/modules-4.0.mk new file mode 100644 index 000000000..425c180ac --- /dev/null +++ b/mk/modules-4.0.mk @@ -0,0 +1,6 @@ +# This file is part of the OpenADK project. OpenADK is copyrighted +# material, please see the LICENCE file in the top-level directory. + +USBMODULES+=drivers/usb/common/usb-common +USBMODULES+=drivers/usb/core/usbcore +USBUDC:=gadget/udc diff --git a/mk/modules.mk b/mk/modules.mk index 91b31f0dd..0b14a5443 100644 --- a/mk/modules.mk +++ b/mk/modules.mk @@ -1,6 +1,10 @@ # This file is part of the OpenADK project. OpenADK is copyrighted # material, please see the LICENCE file in the top-level directory. +ifeq ($(ADK_KERNEL_VERSION_4_0),y) +include $(ADK_TOPDIR)/mk/modules-4.0.mk +endif + ifeq ($(ADK_KERNEL_VERSION_3_19),y) include $(ADK_TOPDIR)/mk/modules-3.19.mk endif -- cgit v1.2.3 From cc0c042aafec40d93b06be3b6d7e94f38c5ac69f Mon Sep 17 00:00:00 2001 From: Waldemar Brodkorb Date: Mon, 25 May 2015 10:58:22 -0500 Subject: update kernel to 3.14.43 --- mk/kernel-ver.mk | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'mk') diff --git a/mk/kernel-ver.mk b/mk/kernel-ver.mk index aae245026..437c9986d 100644 --- a/mk/kernel-ver.mk +++ b/mk/kernel-ver.mk @@ -16,11 +16,11 @@ KERNEL_MOD_VERSION:= $(KERNEL_VERSION) KERNEL_RELEASE:= 1 KERNEL_HASH:= 82eab56bd3e416b12771908edbe000a8bf58d78da88457f716aab00dc07b8e1b endif -ifeq ($(ADK_KERNEL_VERSION_3_14_40),y) -KERNEL_VERSION:= 3.14.40 +ifeq ($(ADK_KERNEL_VERSION_3_14_43),y) +KERNEL_VERSION:= 3.14.43 KERNEL_MOD_VERSION:= $(KERNEL_VERSION) KERNEL_RELEASE:= 1 -KERNEL_HASH:= 2a89cce6ca7c574f17d44dcb541036d29725a102dd047963b850ede2ed28b2f0 +KERNEL_HASH:= 6ecfa347c78b31b96a2ad282e2835315bc94d4ec52955e2e11b51be2dc6fafd4 endif ifeq ($(ADK_KERNEL_VERSION_3_12_40),y) KERNEL_VERSION:= 3.12.40 -- cgit v1.2.3