diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2014-08-07 12:28:37 +0200 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2014-08-07 12:30:32 +0200 |
commit | 95b4b7287b4c22a43ce05b608ebdf4f4b193059b (patch) | |
tree | 0f821406bdd7d734a60aa7ba6886be57d7d227ab /mk | |
parent | 429bcaddee4ad31c5b54ec206a98c30569e64477 (diff) |
bump kernels
Diffstat (limited to 'mk')
-rw-r--r-- | mk/kernel-ver.mk | 36 | ||||
-rw-r--r-- | mk/modules.mk | 7 |
2 files changed, 28 insertions, 15 deletions
diff --git a/mk/kernel-ver.mk b/mk/kernel-ver.mk index 352a77961..dacc83f80 100644 --- a/mk/kernel-ver.mk +++ b/mk/kernel-ver.mk @@ -1,30 +1,36 @@ -ifeq ($(ADK_KERNEL_VERSION_3_15_6),y) -KERNEL_VERSION:= 3.15.6 +ifeq ($(ADK_KERNEL_VERSION_3_16_0),y) +KERNEL_VERSION:= 3.16 +KERNEL_MOD_VERSION:= 3.16.0 +KERNEL_RELEASE:= 1 +KERNEL_MD5SUM:= 5c569ed649a0c9711879f333e90c5386 +endif +ifeq ($(ADK_KERNEL_VERSION_3_15_8),y) +KERNEL_VERSION:= 3.15.8 KERNEL_MOD_VERSION:= $(KERNEL_VERSION) KERNEL_RELEASE:= 1 -KERNEL_MD5SUM:= 739272475e2e3981974e1f083d0eba47 +KERNEL_MD5SUM:= 5a3a136e93159ecfca33a2d6b5c8dae2 endif -ifeq ($(ADK_KERNEL_VERSION_3_14_13),y) -KERNEL_VERSION:= 3.14.13 +ifeq ($(ADK_KERNEL_VERSION_3_14_15),y) +KERNEL_VERSION:= 3.14.15 KERNEL_MOD_VERSION:= $(KERNEL_VERSION) KERNEL_RELEASE:= 1 -KERNEL_MD5SUM:= e3ca0c53cfe186fef82eadc32c8aa150 +KERNEL_MD5SUM:= 89c2aaa23f95ca13447c35e514038472 endif -ifeq ($(ADK_KERNEL_VERSION_3_12_24),y) -KERNEL_VERSION:= 3.12.24 +ifeq ($(ADK_KERNEL_VERSION_3_12_26),y) +KERNEL_VERSION:= 3.12.26 KERNEL_MOD_VERSION:= $(KERNEL_VERSION) KERNEL_RELEASE:= 1 -KERNEL_MD5SUM:= 2c72c7c21271ef05efe115ed03060be8 +KERNEL_MD5SUM:= 1bb89d56342871b6f310ad9075c51a02 endif -ifeq ($(ADK_KERNEL_VERSION_3_10_49),y) -KERNEL_VERSION:= 3.10.49 +ifeq ($(ADK_KERNEL_VERSION_3_10_51),y) +KERNEL_VERSION:= 3.10.51 KERNEL_MOD_VERSION:= $(KERNEL_VERSION) KERNEL_RELEASE:= 1 -KERNEL_MD5SUM:= 9774e12764e740d49c80eda77d0ef3eb +KERNEL_MD5SUM:= 4ab70c265ffd2f670dc7108008b6b5fe endif -ifeq ($(ADK_KERNEL_VERSION_3_4_99),y) -KERNEL_VERSION:= 3.4.99 +ifeq ($(ADK_KERNEL_VERSION_3_4_101),y) +KERNEL_VERSION:= 3.4.101 KERNEL_MOD_VERSION:= $(KERNEL_VERSION) KERNEL_RELEASE:= 1 -KERNEL_MD5SUM:= 765f5b961919521f9935b4366888254c +KERNEL_MD5SUM:= 6943cf91c9c539075b0fdbe9938c6733 endif diff --git a/mk/modules.mk b/mk/modules.mk index dd35b5ed2..0fcfa9807 100644 --- a/mk/modules.mk +++ b/mk/modules.mk @@ -1339,8 +1339,15 @@ $(eval $(call KMOD_template,INPUT_EVDEV,input-evdev,\ # USBMODULES:= +ifeq ($(KERNEL_BASE),3) +ifeq ($(KERNEL_MAJ),16) +USBMODULES+=drivers/usb/common/usb-common +USBMODULES+=drivers/usb/core/usbcore +else USBMODULES+=drivers/usb/usb-common USBMODULES+=drivers/usb/core/usbcore +endif +endif $(eval $(call KMOD_template,USB,usb,\ $(foreach mod, $(USBMODULES),$(MODULES_DIR)/kernel/$(mod)) \ |