mirror of
				https://github.com/Telecominfraproject/wlan-ap.git
				synced 2025-10-30 10:02:53 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			644 lines
		
	
	
		
			28 KiB
		
	
	
	
		
			Diff
		
	
	
	
	
	
			
		
		
	
	
			644 lines
		
	
	
		
			28 KiB
		
	
	
	
		
			Diff
		
	
	
	
	
	
| From 5cb922f8d91e2bdd48807adf26336e61b03747a6 Mon Sep 17 00:00:00 2001
 | |
| From: John Crispin <john@phrozen.org>
 | |
| Date: Wed, 24 Mar 2021 15:03:30 +0100
 | |
| Subject: [PATCH 16/43] linux/modules: fix some v4.4 dependencies
 | |
| 
 | |
| NFT has different deps on v4.4.
 | |
| 
 | |
| Signed-off-by: John Crispin <john@phrozen.org>
 | |
| ---
 | |
|  config/Config-images.in                    |  1 +
 | |
|  include/image.mk                           |  2 ++
 | |
|  include/kernel.mk                          |  7 +++--
 | |
|  include/netfilter.mk                       | 30 +++++++++++++++---
 | |
|  include/package.mk                         |  8 ++---
 | |
|  include/quilt.mk                           |  4 +++
 | |
|  include/target.mk                          |  8 ++++-
 | |
|  package/kernel/linux/modules/can.mk        |  3 +-
 | |
|  package/kernel/linux/modules/crypto.mk     |  9 ++++--
 | |
|  package/kernel/linux/modules/fs.mk         |  3 +-
 | |
|  package/kernel/linux/modules/iio.mk        |  4 +--
 | |
|  package/kernel/linux/modules/netdevices.mk |  2 +-
 | |
|  package/kernel/linux/modules/netfilter.mk  | 15 ++++-----
 | |
|  package/kernel/linux/modules/netsupport.mk |  6 ++--
 | |
|  package/kernel/linux/modules/other.mk      | 36 ++++++++++++++++++++--
 | |
|  package/kernel/linux/modules/usb.mk        | 21 ++++++++++++-
 | |
|  package/kernel/linux/modules/video.mk      | 16 ++++++----
 | |
|  toolchain/gcc/Config.in                    |  5 +++
 | |
|  toolchain/gcc/Config.version               |  1 +
 | |
|  toolchain/kernel-headers/Makefile          |  2 +-
 | |
|  20 files changed, 143 insertions(+), 40 deletions(-)
 | |
| 
 | |
| diff --git a/config/Config-images.in b/config/Config-images.in
 | |
| index b869ccae70..de11c52676 100644
 | |
| --- a/config/Config-images.in
 | |
| +++ b/config/Config-images.in
 | |
| @@ -18,6 +18,7 @@ menu "Target Images"
 | |
|  			default TARGET_INITRAMFS_COMPRESSION_LZMA if TARGET_lantiq
 | |
|  			default TARGET_INITRAMFS_COMPRESSION_LZMA if TARGET_mpc85xx
 | |
|  			default TARGET_INITRAMFS_COMPRESSION_LZMA if TARGET_ramips
 | |
| +			default TARGET_INITRAMFS_COMPRESSION_GZIP if TARGET_ipq807x
 | |
|  			default TARGET_INITRAMFS_COMPRESSION_NONE
 | |
|  			depends on TARGET_ROOTFS_INITRAMFS
 | |
|  			help
 | |
| diff --git a/include/image.mk b/include/image.mk
 | |
| index 7c2dcf0e8b..6fc02a3f6b 100644
 | |
| --- a/include/image.mk
 | |
| +++ b/include/image.mk
 | |
| @@ -153,6 +153,7 @@ endif
 | |
|  
 | |
|  
 | |
|  # Disable noisy checks by default as in upstream
 | |
| +ifeq ($(strip $(call kernel_patchver_ge,4.5.0)),1)
 | |
|  DTC_FLAGS += \
 | |
|    -Wno-unit_address_vs_reg \
 | |
|    -Wno-simple_bus_reg \
 | |
| @@ -165,6 +166,7 @@ DTC_FLAGS += \
 | |
|    -Wno-graph_child_address \
 | |
|    -Wno-graph_port \
 | |
|    -Wno-unique_unit_address
 | |
| +endif
 | |
|  
 | |
|  define Image/pad-to
 | |
|  	dd if=$(1) of=$(1).new bs=$(2) conv=sync
 | |
| diff --git a/include/kernel.mk b/include/kernel.mk
 | |
| index e4074a48f4..56fa06b2eb 100644
 | |
| --- a/include/kernel.mk
 | |
| +++ b/include/kernel.mk
 | |
| @@ -44,7 +44,7 @@ else
 | |
|      FILES_DIR ?= $(foreach dir,$(wildcard $(CURDIR)/files $(CURDIR)/files-$(KERNEL_PATCHVER)),"$(dir)")
 | |
|    endif
 | |
|    KERNEL_BUILD_DIR ?= $(BUILD_DIR)/linux-$(BOARD)$(if $(SUBTARGET),_$(SUBTARGET))
 | |
| -  LINUX_DIR ?= $(KERNEL_BUILD_DIR)/linux-$(LINUX_VERSION)
 | |
| +  LINUX_DIR ?= $(KERNEL_BUILD_DIR)/linux-$(LINUX_VERSION)$(KERNEL_NAME_SUFFIX)
 | |
|    LINUX_UAPI_DIR=uapi/
 | |
|    LINUX_VERMAGIC:=$(strip $(shell cat $(LINUX_DIR)/.vermagic 2>/dev/null))
 | |
|    LINUX_VERMAGIC:=$(if $(LINUX_VERMAGIC),$(LINUX_VERMAGIC),unknown)
 | |
| @@ -59,7 +59,7 @@ else
 | |
|    ifneq (,$(findstring -rc,$(LINUX_VERSION)))
 | |
|        LINUX_SOURCE:=linux-$(LINUX_VERSION).tar.gz
 | |
|    else
 | |
| -      LINUX_SOURCE:=linux-$(LINUX_VERSION).tar.xz
 | |
| +      LINUX_SOURCE:=linux-$(LINUX_VERSION)$(KERNEL_NAME_SUFFIX).tar.xz
 | |
|    endif
 | |
|  
 | |
|    ifneq (,$(findstring -rc,$(LINUX_VERSION)))
 | |
| @@ -100,8 +100,9 @@ endif
 | |
|  
 | |
|  KERNEL_MAKE = $(MAKE) $(KERNEL_MAKEOPTS)
 | |
|  
 | |
| +	#KCFLAGS="$(call iremap,$(BUILD_DIR),$(notdir $(BUILD_DIR)))" \
 | |
| +
 | |
|  KERNEL_MAKE_FLAGS = \
 | |
| -	KCFLAGS="$(call iremap,$(BUILD_DIR),$(notdir $(BUILD_DIR)))" \
 | |
|  	HOSTCFLAGS="$(HOST_CFLAGS) -Wall -Wmissing-prototypes -Wstrict-prototypes" \
 | |
|  	CROSS_COMPILE="$(KERNEL_CROSS)" \
 | |
|  	ARCH="$(LINUX_KARCH)" \
 | |
| diff --git a/include/netfilter.mk b/include/netfilter.mk
 | |
| index 60f031e9a7..cee40ee008 100644
 | |
| --- a/include/netfilter.mk
 | |
| +++ b/include/netfilter.mk
 | |
| @@ -43,6 +43,7 @@ $(eval $(call nf_add,IPT_CORE,CONFIG_NETFILTER_XT_MATCH_LIMIT, $(P_XT)xt_limit))
 | |
|  $(eval $(call nf_add,IPT_CORE,CONFIG_NETFILTER_XT_MATCH_MAC, $(P_XT)xt_mac))
 | |
|  $(eval $(call nf_add,IPT_CORE,CONFIG_NETFILTER_XT_MATCH_MULTIPORT, $(P_XT)xt_multiport))
 | |
|  $(eval $(call nf_add,IPT_CORE,CONFIG_NETFILTER_XT_MATCH_COMMENT, $(P_XT)xt_comment))
 | |
| +$(eval $(call nf_add,IPT_CORE,CONFIG_NETFILTER_XT_MATCH_ID, $(P_XT)xt_id))
 | |
|  
 | |
|  #cluster
 | |
|  $(eval $(call nf_add,IPT_CLUSTER,CONFIG_NETFILTER_XT_MATCH_CLUSTER, $(P_XT)xt_cluster))
 | |
| @@ -154,7 +155,8 @@ $(eval $(if $(NF_KMOD),$(call nf_add,NF_REJECT6,CONFIG_NF_REJECT_IPV6, $(P_V6)nf
 | |
|  
 | |
|  $(eval $(if $(NF_KMOD),$(call nf_add,NF_IPT6,CONFIG_IP6_NF_IPTABLES, $(P_V6)ip6_tables),))
 | |
|  
 | |
| -$(eval $(if $(NF_KMOD),$(call nf_add,NF_CONNTRACK,CONFIG_NF_DEFRAG_IPV6, $(P_V6)nf_defrag_ipv6),))
 | |
| +$(eval $(if $(NF_KMOD),$(call nf_add,NF_CONNTRACK,CONFIG_NF_DEFRAG_IPV6, $(P_V6)nf_defrag_ipv6, ge 4.19),))
 | |
| +$(eval $(if $(NF_KMOD),$(call nf_add,NF_CONNTRACK6,CONFIG_NF_DEFRAG_IPV6, $(P_V6)nf_defrag_ipv6, lt 4.19),))
 | |
|  $(eval $(if $(NF_KMOD),$(call nf_add,NF_CONNTRACK6,CONFIG_NF_CONNTRACK_IPV6, $(P_V6)nf_conntrack_ipv6),))
 | |
|  
 | |
|  $(eval $(if $(NF_KMOD),$(call nf_add,IPT_IPV6,CONFIG_IP6_NF_FILTER, $(P_V6)ip6table_filter),))
 | |
| @@ -181,11 +183,15 @@ $(eval $(call nf_add,IPT_IPV6_EXTRA,CONFIG_IP6_NF_MATCH_RT, $(P_V6)ip6t_rt))
 | |
|  
 | |
|  # kernel only
 | |
|  $(eval $(if $(NF_KMOD),$(call nf_add,NF_NAT,CONFIG_NF_NAT, $(P_XT)nf_nat),))
 | |
| +$(eval $(if $(NF_KMOD),$(call nf_add,NF_NAT,CONFIG_NF_NAT_REDIRECT, $(P_XT)nf_nat_redirect, lt 4.18),))
 | |
| +$(eval $(if $(NF_KMOD),$(call nf_add,NF_NAT,CONFIG_NF_NAT_IPV4, $(P_V4)nf_nat_ipv4, lt 4.18),))
 | |
| +$(eval $(if $(NF_KMOD),$(call nf_add,NF_NAT,CONFIG_NF_NAT_MASQUERADE_IPV4, $(P_V4)nf_nat_masquerade_ipv4, lt 4.18),))
 | |
|  
 | |
|  $(eval $(if $(NF_KMOD),$(call nf_add,IPT_NAT,CONFIG_NETFILTER_XT_NAT, $(P_XT)xt_nat),))
 | |
|  $(eval $(if $(NF_KMOD),$(call nf_add,IPT_NAT,CONFIG_IP_NF_NAT, $(P_V4)iptable_nat),))
 | |
|  $(eval $(if $(NF_KMOD),$(call nf_add,IPT_NAT6,CONFIG_IP6_NF_NAT, $(P_V6)ip6table_nat),))
 | |
|  $(eval $(if $(NF_KMOD),$(call nf_add,IPT_NAT6,CONFIG_IP6_NF_TARGET_NPT, $(P_V6)ip6t_NPT),))
 | |
| +$(eval $(if $(NF_KMOD),$(call nf_add,NF_NAT6,CONFIG_NF_NAT_MASQUERADE_IPV6, $(P_V6)nf_nat_masquerade_ipv6, lt 4.18),))
 | |
|  
 | |
|  # userland only
 | |
|  $(eval $(if $(NF_KMOD),,$(call nf_add,IPT_NAT,CONFIG_NF_NAT, ipt_SNAT ipt_DNAT)))
 | |
| @@ -193,6 +199,8 @@ $(eval $(if $(NF_KMOD),,$(call nf_add,IPT_NAT6,CONFIG_IP6_NF_TARGET_NPT, ip6t_DN
 | |
|  
 | |
|  $(eval $(call nf_add,IPT_NAT,CONFIG_NETFILTER_XT_TARGET_MASQUERADE, $(P_XT)xt_MASQUERADE))
 | |
|  $(eval $(call nf_add,IPT_NAT,CONFIG_NETFILTER_XT_TARGET_REDIRECT, $(P_XT)xt_REDIRECT))
 | |
| +$(eval $(call nf_add,IPT_NAT,CONFIG_IP_NF_TARGET_MASQUERADE, $(P_V4)ipt_MASQUERADE, lt 4.18))
 | |
| +$(eval $(call nf_add,IPT_NAT,CONFIG_IP_NF_TARGET_REDIRECT, $(P_XT)xt_REDIRECT, lt 4.18))
 | |
|  
 | |
|  
 | |
|  # nat-extra
 | |
| @@ -250,8 +258,8 @@ $(eval $(call nf_add,IPT_TPROXY,CONFIG_NETFILTER_XT_MATCH_SOCKET, $(P_XT)xt_sock
 | |
|  $(eval $(call nf_add,IPT_TPROXY,CONFIG_NF_SOCKET_IPV4, $(P_V4)nf_socket_ipv4))
 | |
|  $(eval $(call nf_add,IPT_TPROXY,CONFIG_NF_SOCKET_IPV6, $(P_V6)nf_socket_ipv6))
 | |
|  $(eval $(call nf_add,IPT_TPROXY,CONFIG_NETFILTER_XT_TARGET_TPROXY, $(P_XT)xt_TPROXY))
 | |
| -$(eval $(call nf_add,IPT_TPROXY,CONFIG_NF_TPROXY_IPV4, $(P_V4)nf_tproxy_ipv4))
 | |
| -$(eval $(call nf_add,IPT_TPROXY,CONFIG_NF_TPROXY_IPV6, $(P_V6)nf_tproxy_ipv6))
 | |
| +$(eval $(call nf_add,IPT_TPROXY,CONFIG_NF_TPROXY_IPV4, $(P_V4)nf_tproxy_ipv4, ge 4.18))
 | |
| +$(eval $(call nf_add,IPT_TPROXY,CONFIG_NF_TPROXY_IPV6, $(P_V6)nf_tproxy_ipv6, ge 4.18))
 | |
|  
 | |
|  # led
 | |
|  $(eval $(call nf_add,IPT_LED,CONFIG_NETFILTER_XT_TARGET_LED, $(P_XT)xt_LED))
 | |
| @@ -321,7 +329,10 @@ $(eval $(call nf_add,EBTABLES_WATCHERS,CONFIG_BRIDGE_EBT_NFQUEUE, $(P_EBT)ebt_nf
 | |
|  
 | |
|  # nftables
 | |
|  $(eval $(if $(NF_KMOD),$(call nf_add,NFT_CORE,CONFIG_NF_TABLES, $(P_XT)nf_tables),))
 | |
| -$(eval $(if $(NF_KMOD),$(call nf_add,NFT_CORE,CONFIG_NF_TABLES_SET, $(P_XT)nf_tables_set),))
 | |
| +$(eval $(if $(NF_KMOD),$(call nf_add,NFT_CORE,CONFIG_NF_TABLES_INET, $(P_XT)nf_tables_inet, lt 4.17),))
 | |
| +$(eval $(if $(NF_KMOD),$(call nf_add,NFT_CORE,CONFIG_NF_TABLES_IPV4, $(P_V4)nf_tables_ipv4, lt 4.17),))
 | |
| +$(eval $(if $(NF_KMOD),$(call nf_add,NFT_CORE,CONFIG_NF_TABLES_IPV6, $(P_V6)nf_tables_ipv6, lt 4.17),))
 | |
| +$(eval $(if $(NF_KMOD),$(call nf_add,NFT_CORE,CONFIG_NF_TABLES_SET, $(P_XT)nf_tables_set, ge 4.18),))
 | |
|  $(eval $(if $(NF_KMOD),$(call nf_add,NFT_CORE,CONFIG_NFT_COUNTER, $(P_XT)nft_counter),))
 | |
|  $(eval $(if $(NF_KMOD),$(call nf_add,NFT_CORE,CONFIG_NFT_CT, $(P_XT)nft_ct),))
 | |
|  $(eval $(if $(NF_KMOD),$(call nf_add,NFT_CORE,CONFIG_NFT_HASH, $(P_XT)nft_hash),))
 | |
| @@ -334,7 +345,12 @@ $(eval $(if $(NF_KMOD),$(call nf_add,NFT_CORE,CONFIG_NFT_QUOTA, $(P_XT)nft_quota
 | |
|  $(eval $(if $(NF_KMOD),$(call nf_add,NFT_CORE,CONFIG_NFT_REDIR, $(P_XT)nft_redir),))
 | |
|  $(eval $(if $(NF_KMOD),$(call nf_add,NFT_CORE,CONFIG_NFT_REJECT, $(P_XT)nft_reject $(P_V4)nft_reject_ipv4 $(P_V6)nft_reject_ipv6),))
 | |
|  $(eval $(if $(NF_KMOD),$(call nf_add,NFT_CORE,CONFIG_NFT_REJECT_INET, $(P_XT)nft_reject_inet),))
 | |
| +$(eval $(if $(NF_KMOD),$(call nf_add,NFT_CORE,CONFIG_NFT_SET_HASH, $(P_XT)nft_set_hash, lt 4.18),))
 | |
| +$(eval $(if $(NF_KMOD),$(call nf_add,NFT_CORE,CONFIG_NFT_SET_RBTREE, $(P_XT)nft_set_rbtree, lt 4.18),))
 | |
|  
 | |
| +$(eval $(if $(NF_KMOD),$(call nf_add,NFT_ARP,CONFIG_NF_TABLES_ARP, $(P_V4)nf_tables_arp, lt 4.17),))
 | |
| +
 | |
| +$(eval $(if $(NF_KMOD),$(call nf_add,NFT_BRIDGE,CONFIG_NF_TABLES_BRIDGE, $(P_EBT)nf_tables_bridge, lt 4.17),))
 | |
|  $(eval $(if $(NF_KMOD),$(call nf_add,NFT_BRIDGE,CONFIG_NFT_BRIDGE_META, $(P_EBT)nft_meta_bridge),))
 | |
|  $(eval $(if $(NF_KMOD),$(call nf_add,NFT_BRIDGE,CONFIG_NFT_BRIDGE_REJECT, $(P_EBT)nft_reject_bridge),))
 | |
|  
 | |
| @@ -354,6 +370,12 @@ $(eval $(if $(NF_KMOD),$(call nf_add,NFT_FIB,CONFIG_NFT_FIB_IPV6, $(P_V6)nft_fib
 | |
|  
 | |
|  $(eval $(if $(NF_KMOD),$(call nf_add,NFT_QUEUE,CONFIG_NFT_QUEUE, $(P_XT)nft_queue),))
 | |
|  
 | |
| +$(eval $(if $(NF_KMOD),$(call nf_add,NFT_CORE,CONFIG_NFT_EXTHDR, $(P_XT)nft_exthdr, lt 4.9.0),))
 | |
| +$(eval $(if $(NF_KMOD),$(call nf_add,NFT_CORE,CONFIG_NFT_RBTREE, $(P_XT)nft_rbtree, lt 4.9.0),))
 | |
| +$(eval $(if $(NF_KMOD),$(call nf_add,NFT_CORE,CONFIG_NFT_CHAIN_ROUTE_IPV4, $(P_V4)nft_chain_route_ipv4, lt 4.9.0),))
 | |
| +$(eval $(if $(NF_KMOD),$(call nf_add,NFT_NAT,CONFIG_NFT_CHAIN_NAT_IPV4, $(P_V4)nft_chain_nat_ipv4, lt 4.9.0),))
 | |
| +$(eval $(if $(NF_KMOD),$(call nf_add,NFT_CORE,CONFIG_NFT_CHAIN_ROUTE_IPV6, $(P_V6)nft_chain_route_ipv6, lt 4.9.0),))
 | |
| +
 | |
|  # userland only
 | |
|  IPT_BUILTIN += $(NF_IPT-y) $(NF_IPT-m)
 | |
|  IPT_BUILTIN += $(IPT_CORE-y) $(IPT_CORE-m)
 | |
| diff --git a/include/package.mk b/include/package.mk
 | |
| index db0a869dab..89ddcbc677 100644
 | |
| --- a/include/package.mk
 | |
| +++ b/include/package.mk
 | |
| @@ -29,10 +29,10 @@ ifdef CONFIG_USE_MIPS16
 | |
|      TARGET_CFLAGS += -mips16 -minterlink-mips16
 | |
|    endif
 | |
|  endif
 | |
| -ifeq ($(strip $(PKG_IREMAP)),1)
 | |
| -  IREMAP_CFLAGS = $(call iremap,$(PKG_BUILD_DIR),$(notdir $(PKG_BUILD_DIR)))
 | |
| -  TARGET_CFLAGS += $(IREMAP_CFLAGS)
 | |
| -endif
 | |
| +#ifeq ($(strip $(PKG_IREMAP)),1)
 | |
| +#  IREMAP_CFLAGS = $(call iremap,$(PKG_BUILD_DIR),$(notdir $(PKG_BUILD_DIR)))
 | |
| +#  TARGET_CFLAGS += $(IREMAP_CFLAGS)
 | |
| +#endif
 | |
|  
 | |
|  include $(INCLUDE_DIR)/hardening.mk
 | |
|  include $(INCLUDE_DIR)/prereq.mk
 | |
| diff --git a/include/quilt.mk b/include/quilt.mk
 | |
| index 00597ca0f2..3d2ec019bb 100644
 | |
| --- a/include/quilt.mk
 | |
| +++ b/include/quilt.mk
 | |
| @@ -99,9 +99,11 @@ define Kernel/Patch/Default
 | |
|  		echo "generic patches directory is present. please move your patches to the pending directory" ; \
 | |
|  		exit 1; \
 | |
|  	fi
 | |
| +ifneq ($(CONFIG_TARGET_ipq807x),y)
 | |
|  	$(call PatchDir,$(LINUX_DIR),$(GENERIC_BACKPORT_DIR),generic-backport/)
 | |
|  	$(call PatchDir,$(LINUX_DIR),$(GENERIC_PATCH_DIR),generic/)
 | |
|  	$(call PatchDir,$(LINUX_DIR),$(GENERIC_HACK_DIR),generic-hack/)
 | |
| +endif
 | |
|  	$(call PatchDir,$(LINUX_DIR),$(PATCH_DIR),platform/)
 | |
|  endef
 | |
|  
 | |
| @@ -128,9 +130,11 @@ define Quilt/Refresh/Kernel
 | |
|  		echo "All kernel patches must start with either generic/ or platform/"; \
 | |
|  		false; \
 | |
|  	}
 | |
| +ifneq ($(CONFIG_TARGET_ipq807x),y)
 | |
|  	$(call Quilt/RefreshDir,$(PKG_BUILD_DIR),$(GENERIC_BACKPORT_DIR),generic-backport/)
 | |
|  	$(call Quilt/RefreshDir,$(PKG_BUILD_DIR),$(GENERIC_PATCH_DIR),generic/)
 | |
|  	$(call Quilt/RefreshDir,$(PKG_BUILD_DIR),$(GENERIC_HACK_DIR),generic-hack/)
 | |
| +endif
 | |
|  	$(call Quilt/RefreshDir,$(PKG_BUILD_DIR),$(PATCH_DIR),platform/)
 | |
|  endef
 | |
|  
 | |
| diff --git a/include/target.mk b/include/target.mk
 | |
| index 7526224972..691f8fb186 100644
 | |
| --- a/include/target.mk
 | |
| +++ b/include/target.mk
 | |
| @@ -138,11 +138,17 @@ ifneq ($(TARGET_BUILD)$(if $(DUMP),,1),)
 | |
|  endif
 | |
|  
 | |
|  GENERIC_PLATFORM_DIR := $(TOPDIR)/target/linux/generic
 | |
| +ifeq ($(CONFIG_TARGET_ipq807x),y)
 | |
| +GENERIC_BACKPORT_DIR :=
 | |
| +GENERIC_PATCH_DIR :=
 | |
| +GENERIC_HACK_DIR :=
 | |
| +GENERIC_FILES_DIR :=
 | |
| +else
 | |
|  GENERIC_BACKPORT_DIR := $(GENERIC_PLATFORM_DIR)/backport$(if $(wildcard $(GENERIC_PLATFORM_DIR)/backport-$(KERNEL_PATCHVER)),-$(KERNEL_PATCHVER))
 | |
|  GENERIC_PATCH_DIR := $(GENERIC_PLATFORM_DIR)/pending$(if $(wildcard $(GENERIC_PLATFORM_DIR)/pending-$(KERNEL_PATCHVER)),-$(KERNEL_PATCHVER))
 | |
|  GENERIC_HACK_DIR := $(GENERIC_PLATFORM_DIR)/hack$(if $(wildcard $(GENERIC_PLATFORM_DIR)/hack-$(KERNEL_PATCHVER)),-$(KERNEL_PATCHVER))
 | |
|  GENERIC_FILES_DIR := $(foreach dir,$(wildcard $(GENERIC_PLATFORM_DIR)/files $(GENERIC_PLATFORM_DIR)/files-$(KERNEL_PATCHVER)),"$(dir)")
 | |
| -
 | |
| +endif
 | |
|  __config_name_list = $(1)/config-$(KERNEL_PATCHVER) $(1)/config-default
 | |
|  __config_list = $(firstword $(wildcard $(call __config_name_list,$(1))))
 | |
|  find_kernel_config=$(if $(__config_list),$(__config_list),$(lastword $(__config_name_list)))
 | |
| diff --git a/package/kernel/linux/modules/can.mk b/package/kernel/linux/modules/can.mk
 | |
| index 3060fc0966..5542c4fe0a 100644
 | |
| --- a/package/kernel/linux/modules/can.mk
 | |
| +++ b/package/kernel/linux/modules/can.mk
 | |
| @@ -248,7 +248,8 @@ define KernelPackage/can-usb-kvaser
 | |
|    TITLE:=Kvaser CAN/USB interface
 | |
|    KCONFIG:=CONFIG_CAN_KVASER_USB
 | |
|    FILES:= \
 | |
| -	$(LINUX_DIR)/drivers/net/can/usb/kvaser_usb/kvaser_usb.ko
 | |
| +	$(LINUX_DIR)/drivers/net/can/usb/kvaser_usb.ko@lt4.19 \
 | |
| +	$(LINUX_DIR)/drivers/net/can/usb/kvaser_usb/kvaser_usb.ko@ge4.19
 | |
|    AUTOLOAD:=$(call AutoProbe,kvaser_usb)
 | |
|    $(call AddDepends/can,+kmod-usb-core)
 | |
|  endef
 | |
| diff --git a/package/kernel/linux/modules/crypto.mk b/package/kernel/linux/modules/crypto.mk
 | |
| index b50ed06824..a68459d989 100644
 | |
| --- a/package/kernel/linux/modules/crypto.mk
 | |
| +++ b/package/kernel/linux/modules/crypto.mk
 | |
| @@ -387,7 +387,7 @@ $(eval $(call KernelPackage,crypto-hw-padlock))
 | |
|  
 | |
|  define KernelPackage/crypto-hw-safexcel
 | |
|    TITLE:= MVEBU SafeXcel Crypto Engine module
 | |
| -  DEPENDS:=@(TARGET_mvebu_cortexa53||TARGET_mvebu_cortexa72) +eip197-mini-firmware \
 | |
| +  DEPENDS:=@!LINUX_4_14 @(TARGET_mvebu_cortexa53||TARGET_mvebu_cortexa72) +eip197-mini-firmware \
 | |
|  	+kmod-crypto-authenc +kmod-crypto-md5 +kmod-crypto-hmac +kmod-crypto-sha256 +kmod-crypto-sha512
 | |
|    KCONFIG:= \
 | |
|  	CONFIG_CRYPTO_HW=y \
 | |
| @@ -710,8 +710,10 @@ ifndef CONFIG_TARGET_x86_64
 | |
|  	$(LINUX_DIR)/arch/x86/crypto/twofish-i586.ko \
 | |
|  	$(LINUX_DIR)/arch/x86/crypto/serpent-sse2-i586.ko \
 | |
|  	$(LINUX_DIR)/arch/x86/crypto/glue_helper.ko \
 | |
| +	$(LINUX_DIR)/crypto/ablk_helper.ko@lt4.17 \
 | |
|  	$(LINUX_DIR)/crypto/cryptd.ko \
 | |
| -	$(LINUX_DIR)/crypto/crypto_simd.ko
 | |
| +	$(LINUX_DIR)/crypto/lrw.ko@lt4.17 \
 | |
| +	$(LINUX_DIR)/crypto/crypto_simd.ko@ge4.17
 | |
|      AUTOLOAD+= $(call AutoLoad,10,cryptd glue_helper \
 | |
|  	serpent-sse2-i586 twofish-i586 blowfish_generic)
 | |
|    endef
 | |
| @@ -730,7 +732,8 @@ define KernelPackage/crypto-misc/x86/64
 | |
|  	$(LINUX_DIR)/arch/x86/crypto/twofish-avx-x86_64.ko \
 | |
|  	$(LINUX_DIR)/arch/x86/crypto/serpent-avx-x86_64.ko \
 | |
|  	$(LINUX_DIR)/arch/x86/crypto/camellia-aesni-avx2.ko \
 | |
| -	$(LINUX_DIR)/arch/x86/crypto/serpent-avx2.ko
 | |
| +	$(LINUX_DIR)/arch/x86/crypto/serpent-avx2.ko \
 | |
| +	$(LINUX_DIR)/crypto/ablk_helper.ko@lt4.17
 | |
|    AUTOLOAD+= $(call AutoLoad,10,camellia-x86_64 \
 | |
|  	camellia-aesni-avx-x86_64 camellia-aesni-avx2 cast5-avx-x86_64 \
 | |
|  	cast6-avx-x86_64 twofish-x86_64 twofish-x86_64-3way \
 | |
| diff --git a/package/kernel/linux/modules/fs.mk b/package/kernel/linux/modules/fs.mk
 | |
| index a0db14ecfe..ff9990c59d 100644
 | |
| --- a/package/kernel/linux/modules/fs.mk
 | |
| +++ b/package/kernel/linux/modules/fs.mk
 | |
| @@ -53,7 +53,8 @@ define KernelPackage/fs-autofs4
 | |
|  	CONFIG_AUTOFS4_FS \
 | |
|  	CONFIG_AUTOFS_FS
 | |
|    FILES:= \
 | |
| -	$(LINUX_DIR)/fs/autofs/autofs4.ko
 | |
| +	$(LINUX_DIR)/fs/autofs4/autofs4.ko@lt4.18 \
 | |
| +	$(LINUX_DIR)/fs/autofs/autofs4.ko@ge4.18
 | |
|    AUTOLOAD:=$(call AutoLoad,30,autofs4)
 | |
|  endef
 | |
|  
 | |
| diff --git a/package/kernel/linux/modules/iio.mk b/package/kernel/linux/modules/iio.mk
 | |
| index 7bfbd38079..0ea7ba8bdd 100644
 | |
| --- a/package/kernel/linux/modules/iio.mk
 | |
| +++ b/package/kernel/linux/modules/iio.mk
 | |
| @@ -159,7 +159,7 @@ $(eval $(call KernelPackage,iio-dht11))
 | |
|  define KernelPackage/iio-bme680
 | |
|    SUBMENU:=$(IIO_MENU)
 | |
|    TITLE:=BME680 gas/humidity/pressure/temperature sensor
 | |
| -  DEPENDS:=+kmod-iio-core +kmod-regmap-core
 | |
| +  DEPENDS:=@!LINUX_4_14 +kmod-iio-core +kmod-regmap-core
 | |
|    KCONFIG:=CONFIG_BME680
 | |
|    FILES:=$(LINUX_DIR)/drivers/iio/chemical/bme680_core.ko
 | |
|  endef
 | |
| @@ -414,7 +414,7 @@ $(eval $(call KernelPackage,iio-lsm6dsx-spi))
 | |
|  
 | |
|  define KernelPackage/iio-sps30
 | |
|    SUBMENU:=$(IIO_MENU)
 | |
| -  DEPENDS:=+kmod-i2c-core +kmod-iio-core +kmod-industrialio-triggered-buffer +kmod-lib-crc8
 | |
| +  DEPENDS:=@!LINUX_4_14 +kmod-i2c-core +kmod-iio-core +kmod-industrialio-triggered-buffer +kmod-lib-crc8
 | |
|    TITLE:=Sensirion SPS30 particulate matter sensor
 | |
|    KCONFIG:=CONFIG_SPS30
 | |
|    FILES:=$(LINUX_DIR)/drivers/iio/chemical/sps30.ko
 | |
| diff --git a/package/kernel/linux/modules/netdevices.mk b/package/kernel/linux/modules/netdevices.mk
 | |
| index 5f7a80bf22..0df00feed5 100644
 | |
| --- a/package/kernel/linux/modules/netdevices.mk
 | |
| +++ b/package/kernel/linux/modules/netdevices.mk
 | |
| @@ -543,7 +543,7 @@ $(eval $(call KernelPackage,8139cp))
 | |
|  define KernelPackage/r8169
 | |
|    SUBMENU:=$(NETWORK_DEVICES_MENU)
 | |
|    TITLE:=RealTek RTL-8169 PCI Gigabit Ethernet Adapter kernel support
 | |
| -  DEPENDS:=@PCI_SUPPORT +kmod-mii +r8169-firmware +kmod-phy-realtek
 | |
| +  DEPENDS:=@PCI_SUPPORT +kmod-mii +r8169-firmware +!LINUX_4_14:kmod-phy-realtek
 | |
|    KCONFIG:=CONFIG_R8169 \
 | |
|      CONFIG_R8169_NAPI=y \
 | |
|      CONFIG_R8169_VLAN=n
 | |
| diff --git a/package/kernel/linux/modules/netfilter.mk b/package/kernel/linux/modules/netfilter.mk
 | |
| index e2bb1d0681..1be05e182a 100644
 | |
| --- a/package/kernel/linux/modules/netfilter.mk
 | |
| +++ b/package/kernel/linux/modules/netfilter.mk
 | |
| @@ -259,7 +259,7 @@ define KernelPackage/ipt-ipopt
 | |
|    KCONFIG:=$(KCONFIG_IPT_IPOPT)
 | |
|    FILES:=$(foreach mod,$(IPT_IPOPT-m),$(LINUX_DIR)/net/$(mod).ko)
 | |
|    AUTOLOAD:=$(call AutoProbe,$(notdir $(IPT_IPOPT-m)))
 | |
| -  $(call AddDepends/ipt)
 | |
| +  $(call AddDepends/ipt,+kmod-nf-conntrack)
 | |
|  endef
 | |
|  
 | |
|  define KernelPackage/ipt-ipopt/description
 | |
| @@ -368,7 +368,7 @@ IPVS_MODULES:= \
 | |
|  define KernelPackage/nf-ipvs
 | |
|    SUBMENU:=Netfilter Extensions
 | |
|    TITLE:=IP Virtual Server modules
 | |
| -  DEPENDS:=@IPV6 +kmod-lib-crc32c +kmod-ipt-conntrack +kmod-nf-conntrack
 | |
| +  DEPENDS:=@IPV6 +kmod-lib-crc32c +kmod-ipt-conntrack +kmod-nf-conntrack +LINUX_4_14:kmod-nf-conntrack6
 | |
|    KCONFIG:= \
 | |
|  	CONFIG_IP_VS \
 | |
|  	CONFIG_IP_VS_IPV6=y \
 | |
| @@ -542,7 +542,7 @@ define KernelPackage/nf-nathelper-extra
 | |
|    KCONFIG:=$(KCONFIG_NF_NATHELPER_EXTRA)
 | |
|    FILES:=$(foreach mod,$(NF_NATHELPER_EXTRA-m),$(LINUX_DIR)/net/$(mod).ko)
 | |
|    AUTOLOAD:=$(call AutoProbe,$(notdir $(NF_NATHELPER_EXTRA-m)))
 | |
| -  DEPENDS:=+kmod-nf-nat +kmod-lib-textsearch +kmod-ipt-raw +kmod-asn1-decoder
 | |
| +  DEPENDS:=+kmod-nf-nat +kmod-lib-textsearch +kmod-ipt-raw +!LINUX_4_14:kmod-asn1-decoder
 | |
|  endef
 | |
|  
 | |
|  define KernelPackage/nf-nathelper-extra/description
 | |
| @@ -1052,7 +1052,7 @@ $(eval $(call KernelPackage,ipt-rpfilter))
 | |
|  define KernelPackage/nft-core
 | |
|    SUBMENU:=$(NF_MENU)
 | |
|    TITLE:=Netfilter nf_tables support
 | |
| -  DEPENDS:=+kmod-nfnetlink +kmod-nf-reject +IPV6:kmod-nf-reject6 +IPV6:kmod-nf-conntrack6 +kmod-nf-nat +kmod-lib-crc32c
 | |
| +  DEPENDS:=+kmod-nfnetlink +kmod-nf-reject +IPV6:kmod-nf-reject6 +IPV6:kmod-nf-conntrack6 +kmod-lib-crc32c +LINUX_5_4:kmod-nf-nat +LINUX_5_10:kmod-nf-nat
 | |
|    FILES:=$(foreach mod,$(NFT_CORE-m),$(LINUX_DIR)/net/$(mod).ko)
 | |
|    AUTOLOAD:=$(call AutoProbe,$(notdir $(NFT_CORE-m)))
 | |
|    KCONFIG:= \
 | |
| @@ -1148,9 +1148,10 @@ define KernelPackage/nft-netdev
 | |
|  	CONFIG_NFT_DUP_NETDEV \
 | |
|  	CONFIG_NFT_FWD_NETDEV
 | |
|    FILES:= \
 | |
| -	$(LINUX_DIR)/net/netfilter/nf_dup_netdev.ko \
 | |
| -	$(LINUX_DIR)/net/netfilter/nft_dup_netdev.ko \
 | |
| -	$(LINUX_DIR)/net/netfilter/nft_fwd_netdev.ko
 | |
| +	$(LINUX_DIR)/net/netfilter/nf_tables_netdev.ko@lt4.17 \
 | |
| +	$(LINUX_DIR)/net/netfilter/nf_dup_netdev.ko@gt4.5 \
 | |
| +	$(LINUX_DIR)/net/netfilter/nft_dup_netdev.ko@gt4.5 \
 | |
| +	$(LINUX_DIR)/net/netfilter/nft_fwd_netdev.ko@gt4.5
 | |
|    AUTOLOAD:=$(call AutoProbe,nf_tables_netdev nf_dup_netdev nft_dup_netdev nft_fwd_netdev)
 | |
|  endef
 | |
|  
 | |
| diff --git a/package/kernel/linux/modules/netsupport.mk b/package/kernel/linux/modules/netsupport.mk
 | |
| index 1eec9f9b63..4343e850e9 100644
 | |
| --- a/package/kernel/linux/modules/netsupport.mk
 | |
| +++ b/package/kernel/linux/modules/netsupport.mk
 | |
| @@ -375,7 +375,7 @@ $(eval $(call KernelPackage,ip6-vti))
 | |
|  define KernelPackage/xfrm-interface
 | |
|    SUBMENU:=$(NETWORK_SUPPORT_MENU)
 | |
|    TITLE:=IPsec XFRM Interface
 | |
| -  DEPENDS:=+kmod-ipsec4 +IPV6:kmod-ipsec6
 | |
| +  DEPENDS:=+kmod-ipsec4 +IPV6:kmod-ipsec6 @!LINUX_4_14
 | |
|    KCONFIG:=CONFIG_XFRM_INTERFACE
 | |
|    FILES:=$(LINUX_DIR)/net/xfrm/xfrm_interface.ko
 | |
|    AUTOLOAD:=$(call AutoProbe,xfrm_interface)
 | |
| @@ -765,7 +765,7 @@ $(eval $(call KernelPackage,sched-core))
 | |
|  define KernelPackage/sched-cake
 | |
|    SUBMENU:=$(NETWORK_SUPPORT_MENU)
 | |
|    TITLE:=Cake fq_codel/blue derived shaper
 | |
| -  DEPENDS:=+kmod-sched-core
 | |
| +  DEPENDS:=@!LINUX_4_14 +kmod-sched-core
 | |
|    KCONFIG:=CONFIG_NET_SCH_CAKE
 | |
|    FILES:=$(LINUX_DIR)/net/sched/sch_cake.ko
 | |
|    AUTOLOAD:=$(call AutoProbe,sch_cake)
 | |
| @@ -1154,7 +1154,7 @@ $(eval $(call KernelPackage,rxrpc))
 | |
|  define KernelPackage/mpls
 | |
|    SUBMENU:=$(NETWORK_SUPPORT_MENU)
 | |
|    TITLE:=MPLS support
 | |
| -  DEPENDS:=+kmod-iptunnel
 | |
| +  DEPENDS:=+!LINUX_4_14:kmod-iptunnel
 | |
|    KCONFIG:= \
 | |
|  	CONFIG_MPLS=y \
 | |
|  	CONFIG_LWTUNNEL=y \
 | |
| diff --git a/package/kernel/linux/modules/other.mk b/package/kernel/linux/modules/other.mk
 | |
| index 83d998c83a..784adcb744 100644
 | |
| --- a/package/kernel/linux/modules/other.mk
 | |
| +++ b/package/kernel/linux/modules/other.mk
 | |
| @@ -1006,10 +1006,26 @@ endef
 | |
|  $(eval $(call KernelPackage,ptp))
 | |
|  
 | |
|  
 | |
| +define KernelPackage/ptp-gianfar
 | |
| +  SUBMENU:=$(OTHER_MENU)
 | |
| +  TITLE:=Freescale Gianfar PTP support
 | |
| +  DEPENDS:=@TARGET_mpc85xx +kmod-ptp @LINUX_4_14
 | |
| +  KCONFIG:=CONFIG_PTP_1588_CLOCK_GIANFAR
 | |
| +  FILES:=$(LINUX_DIR)/drivers/net/ethernet/freescale/gianfar_ptp.ko
 | |
| +  AUTOLOAD:=$(call AutoProbe,gianfar_ptp)
 | |
| +endef
 | |
| +
 | |
| +define KernelPackage/ptp-gianfar/description
 | |
| + Kernel module for IEEE 1588 support for Freescale
 | |
| + Gianfar Ethernet drivers
 | |
| +endef
 | |
| +
 | |
| +$(eval $(call KernelPackage,ptp-gianfar))
 | |
| +
 | |
|  define KernelPackage/ptp-qoriq
 | |
|    SUBMENU:=$(OTHER_MENU)
 | |
|    TITLE:=Freescale QorIQ PTP support
 | |
| -  DEPENDS:=@TARGET_mpc85xx +kmod-ptp
 | |
| +  DEPENDS:=@TARGET_mpc85xx +kmod-ptp @!LINUX_4_14
 | |
|    KCONFIG:=CONFIG_PTP_1588_CLOCK_QORIQ
 | |
|    FILES:=$(LINUX_DIR)/drivers/ptp/ptp-qoriq.ko
 | |
|    AUTOLOAD:=$(call AutoProbe,ptp-qoriq)
 | |
| @@ -1037,6 +1053,22 @@ endef
 | |
|  $(eval $(call KernelPackage,random-core))
 | |
|  
 | |
|  
 | |
| +define KernelPackage/random-tpm
 | |
| +  SUBMENU:=$(OTHER_MENU)
 | |
| +  TITLE:=Hardware Random Number Generator TPM support
 | |
| +  KCONFIG:=CONFIG_HW_RANDOM_TPM
 | |
| +  FILES:=$(LINUX_DIR)/drivers/char/hw_random/tpm-rng.ko
 | |
| +  DEPENDS:= +kmod-random-core +kmod-tpm @LINUX_4_14
 | |
| +  AUTOLOAD:=$(call AutoProbe,tpm-rng)
 | |
| +endef
 | |
| +
 | |
| +define KernelPackage/random-tpm/description
 | |
| + Kernel module for the Random Number Generator
 | |
| + in the Trusted Platform Module.
 | |
| +endef
 | |
| +
 | |
| +$(eval $(call KernelPackage,random-tpm))
 | |
| +
 | |
|  define KernelPackage/thermal
 | |
|    SUBMENU:=$(OTHER_MENU)
 | |
|    TITLE:=Thermal driver
 | |
| @@ -1144,7 +1176,7 @@ $(eval $(call KernelPackage,keys-trusted))
 | |
|  define KernelPackage/tpm
 | |
|    SUBMENU:=$(OTHER_MENU)
 | |
|    TITLE:=TPM Hardware Support
 | |
| -  DEPENDS:= +kmod-random-core
 | |
| +  DEPENDS:= +!LINUX_4_14:kmod-random-core
 | |
|    KCONFIG:= CONFIG_TCG_TPM
 | |
|    FILES:= $(LINUX_DIR)/drivers/char/tpm/tpm.ko
 | |
|    AUTOLOAD:=$(call AutoLoad,10,tpm,1)
 | |
| diff --git a/package/kernel/linux/modules/usb.mk b/package/kernel/linux/modules/usb.mk
 | |
| index 592affe494..41d12cb08a 100644
 | |
| --- a/package/kernel/linux/modules/usb.mk
 | |
| +++ b/package/kernel/linux/modules/usb.mk
 | |
| @@ -458,9 +458,28 @@ endef
 | |
|  $(eval $(call KernelPackage,usb-dwc3))
 | |
|  
 | |
|  
 | |
| +define KernelPackage/usb-dwc3-of-simple
 | |
| +  TITLE:=DWC3 USB simple OF driver
 | |
| +  DEPENDS:=@!LINUX_4_19 @(TARGET_ipq40xx||TARGET_ipq806x||TARGET_ipq807x) +kmod-usb-dwc3
 | |
| +  KCONFIG:= CONFIG_USB_DWC3_OF_SIMPLE
 | |
| +  FILES:= $(LINUX_DIR)/drivers/usb/dwc3/dwc3-of-simple.ko \
 | |
| +            $(LINUX_DIR)/drivers/usb/dwc3/dbm.ko
 | |
| +  AUTOLOAD:=$(call AutoLoad,53,dwc3-of-simple,1)
 | |
| +  $(call AddDepends/usb)
 | |
| +endef
 | |
| +
 | |
| +define KernelPackage/usb-dwc3-of-simple/description
 | |
| + This driver provides generic platform glue for the integrated DesignWare
 | |
| + USB3 IP Core.
 | |
| +endef
 | |
| +
 | |
| +
 | |
| +$(eval $(call KernelPackage,usb-dwc3-of-simple))
 | |
| +
 | |
| +
 | |
|  define KernelPackage/usb-dwc3-qcom
 | |
|    TITLE:=DWC3 Qualcomm USB driver
 | |
| -  DEPENDS:=@(TARGET_ipq40xx||TARGET_ipq806x) +kmod-usb-dwc3
 | |
| +  DEPENDS:=@(!LINUX_4_14) @(TARGET_ipq40xx||TARGET_ipq806x) +kmod-usb-dwc3
 | |
|    KCONFIG:= CONFIG_USB_DWC3_QCOM
 | |
|    FILES:= $(LINUX_DIR)/drivers/usb/dwc3/dwc3-qcom.ko
 | |
|    AUTOLOAD:=$(call AutoLoad,53,dwc3-qcom,1)
 | |
| diff --git a/package/kernel/linux/modules/video.mk b/package/kernel/linux/modules/video.mk
 | |
| index c71f0760a6..a50fdad57e 100644
 | |
| --- a/package/kernel/linux/modules/video.mk
 | |
| +++ b/package/kernel/linux/modules/video.mk
 | |
| @@ -229,7 +229,7 @@ define KernelPackage/drm
 | |
|    KCONFIG:=CONFIG_DRM
 | |
|    FILES:= \
 | |
|  	$(LINUX_DIR)/drivers/gpu/drm/drm.ko \
 | |
| -	$(LINUX_DIR)/drivers/gpu/drm/drm_panel_orientation_quirks.ko
 | |
| +	$(LINUX_DIR)/drivers/gpu/drm/drm_panel_orientation_quirks.ko@ge4.15
 | |
|    AUTOLOAD:=$(call AutoLoad,05,drm)
 | |
|  endef
 | |
|  
 | |
| @@ -437,10 +437,14 @@ define KernelPackage/video-videobuf2
 | |
|  	CONFIG_VIDEOBUF2_MEMOPS \
 | |
|  	CONFIG_VIDEOBUF2_VMALLOC
 | |
|    FILES:= \
 | |
| -	$(LINUX_DIR)/drivers/media/common/videobuf2/videobuf2-common.ko \
 | |
| -	$(LINUX_DIR)/drivers/media/common/videobuf2/videobuf2-v4l2.ko \
 | |
| -	$(LINUX_DIR)/drivers/media/common/videobuf2/videobuf2-memops.ko \
 | |
| -	$(LINUX_DIR)/drivers/media/common/videobuf2/videobuf2-vmalloc.ko
 | |
| +	$(LINUX_DIR)/drivers/media/$(V4L2_DIR)/videobuf2-core.ko@lt4.16 \
 | |
| +	$(LINUX_DIR)/drivers/media/$(V4L2_DIR)/videobuf2-v4l2.ko@lt4.16 \
 | |
| +	$(LINUX_DIR)/drivers/media/$(V4L2_DIR)/videobuf2-memops.ko@lt4.16 \
 | |
| +	$(LINUX_DIR)/drivers/media/$(V4L2_DIR)/videobuf2-vmalloc.ko@lt4.16 \
 | |
| +	$(LINUX_DIR)/drivers/media/common/videobuf2/videobuf2-common.ko@ge4.16 \
 | |
| +	$(LINUX_DIR)/drivers/media/common/videobuf2/videobuf2-v4l2.ko@ge4.16 \
 | |
| +	$(LINUX_DIR)/drivers/media/common/videobuf2/videobuf2-memops.ko@ge4.16 \
 | |
| +	$(LINUX_DIR)/drivers/media/common/videobuf2/videobuf2-vmalloc.ko@ge4.16
 | |
|    AUTOLOAD:=$(call AutoLoad,65,videobuf2-core videobuf-v4l2 videobuf2-memops videobuf2-vmalloc)
 | |
|    $(call AddDepends/video)
 | |
|  endef
 | |
| @@ -505,7 +509,7 @@ $(eval $(call KernelPackage,video-uvc))
 | |
|  define KernelPackage/video-gspca-core
 | |
|    MENU:=1
 | |
|    TITLE:=GSPCA webcam core support framework
 | |
| -  DEPENDS:=@USB_SUPPORT +kmod-usb-core +kmod-input-core +kmod-video-videobuf2
 | |
| +  DEPENDS:=@USB_SUPPORT +kmod-usb-core +kmod-input-core +!LINUX_4_14:kmod-video-videobuf2
 | |
|    KCONFIG:=CONFIG_USB_GSPCA
 | |
|    FILES:=$(LINUX_DIR)/drivers/media/$(V4L2_USB_DIR)/gspca/gspca_main.ko
 | |
|    AUTOLOAD:=$(call AutoProbe,gspca_main)
 | |
| diff --git a/toolchain/gcc/Config.in b/toolchain/gcc/Config.in
 | |
| index 1aadae6839..6625e02114 100644
 | |
| --- a/toolchain/gcc/Config.in
 | |
| +++ b/toolchain/gcc/Config.in
 | |
| @@ -3,6 +3,7 @@
 | |
|  choice
 | |
|  	prompt "GCC compiler Version" if TOOLCHAINOPTS
 | |
|  	default GCC_USE_VERSION_8
 | |
| +	default GCC_USE_VERSION_5 if TARGET_ipq807x
 | |
|  	help
 | |
|  	  Select the version of gcc you wish to use.
 | |
|  
 | |
| @@ -13,15 +14,19 @@ choice
 | |
|  	config GCC_USE_VERSION_7
 | |
|  		bool "gcc 7.x"
 | |
|  		depends on !arc
 | |
| +		depends on !TARGET_ipq807x
 | |
|  
 | |
|  	config GCC_USE_VERSION_8
 | |
|  		bool "gcc 8.x"
 | |
| +		depends on !TARGET_ipq807x
 | |
|  
 | |
|  	config GCC_USE_VERSION_9
 | |
|  		bool "gcc 9.x"
 | |
| +		depends on !TARGET_ipq807x
 | |
|  
 | |
|  	config GCC_USE_VERSION_10
 | |
|  		bool "gcc 10.x"
 | |
| +		depends on !TARGET_ipq807x
 | |
|  endchoice
 | |
|  
 | |
|  config GCC_USE_GRAPHITE
 | |
| diff --git a/toolchain/gcc/Config.version b/toolchain/gcc/Config.version
 | |
| index 09deae3bf1..fdfcf1a897 100644
 | |
| --- a/toolchain/gcc/Config.version
 | |
| +++ b/toolchain/gcc/Config.version
 | |
| @@ -1,5 +1,6 @@
 | |
|  config GCC_VERSION_5
 | |
|  	default y if GCC_USE_VERSION_5
 | |
| +	default y if TARGET_ipq807x
 | |
|  	bool
 | |
|  
 | |
|  config GCC_VERSION_7
 | |
| diff --git a/toolchain/kernel-headers/Makefile b/toolchain/kernel-headers/Makefile
 | |
| index eea0ffbde0..c33f26d46d 100644
 | |
| --- a/toolchain/kernel-headers/Makefile
 | |
| +++ b/toolchain/kernel-headers/Makefile
 | |
| @@ -32,7 +32,7 @@ else
 | |
|    PKG_SOURCE:=$(LINUX_SOURCE)
 | |
|    PKG_SOURCE_URL:=$(LINUX_SITE)
 | |
|  endif
 | |
| -HOST_BUILD_DIR:=$(KERNEL_BUILD_DIR)/linux-$(LINUX_VERSION)
 | |
| +HOST_BUILD_DIR:=$(KERNEL_BUILD_DIR)/linux-$(LINUX_VERSION)$(KERNEL_NAME_SUFFIX)
 | |
|  PKG_HASH:=$(LINUX_KERNEL_HASH)
 | |
|  LINUX_DIR := $(HOST_BUILD_DIR)
 | |
|  FILES_DIR := 
 | |
| -- 
 | |
| 2.25.1
 | |
| 
 | 
