diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2015-08-01 10:41:19 +0200 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2015-08-01 10:42:22 +0200 |
commit | 8904b7659a3fff94637af328dae415110b6f46d7 (patch) | |
tree | f8388766fa798f5f328c09a584dd9bf248afb990 /mk | |
parent | ce515b6da73e7b2cfbfb4de79b6c293b3257d47a (diff) |
update to 4.1.3, which will be the base for stable branch
Diffstat (limited to 'mk')
-rw-r--r-- | mk/kernel-ver.mk | 6 | ||||
-rw-r--r-- | mk/modules-4.1.mk | 6 | ||||
-rw-r--r-- | mk/modules.mk | 4 |
3 files changed, 13 insertions, 3 deletions
diff --git a/mk/kernel-ver.mk b/mk/kernel-ver.mk index 7f59ff489..2b9a1de32 100644 --- a/mk/kernel-ver.mk +++ b/mk/kernel-ver.mk @@ -3,11 +3,11 @@ KERNEL_VERSION:= $(ADK_KERNEL_HASH) KERNEL_MOD_VERSION:= $(KERNEL_VERSION) KERNEL_RELEASE:= 1 endif -ifeq ($(ADK_KERNEL_VERSION_4_1_2),y) -KERNEL_VERSION:= 4.1.2 +ifeq ($(ADK_KERNEL_VERSION_4_1_3),y) +KERNEL_VERSION:= 4.1.3 KERNEL_MOD_VERSION:= $(KERNEL_VERSION) KERNEL_RELEASE:= 1 -KERNEL_HASH:= 1e4a46b8be904af336af2d556dbe01e01b21a6be15434517234540f82d94bed5 +KERNEL_HASH:= 96dd2c30984408a8a2211463618c3564514239f1e4335f6bc461c4b9a9bae30b endif ifeq ($(ADK_KERNEL_VERSION_4_0_6),y) KERNEL_VERSION:= 4.0.6 diff --git a/mk/modules-4.1.mk b/mk/modules-4.1.mk new file mode 100644 index 000000000..425c180ac --- /dev/null +++ b/mk/modules-4.1.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 55136e253..eed6144a4 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_1),y) +include $(ADK_TOPDIR)/mk/modules-4.1.mk +endif + ifeq ($(ADK_KERNEL_VERSION_4_0),y) include $(ADK_TOPDIR)/mk/modules-4.0.mk endif |