summaryrefslogtreecommitdiff
path: root/recipes-kernel/backports/files
diff options
context:
space:
mode:
authorOleksandr Suvorov <oleksandr.suvorov@toradex.com>2020-05-20 20:24:35 +0300
committerOleksandr Suvorov <oleksandr.suvorov@toradex.com>2020-05-20 20:24:35 +0300
commit80a7a08f5cfc057aca9c8c1653bdbe778d4a50ef (patch)
treededb74dce7ce50daf3588fb162f0b6183a9cb9b3 /recipes-kernel/backports/files
parent2a75820e130e36382a2d6c592afdbc145cea3c5a (diff)
backports: get back legacy 4.19 version
backports-5.4 is not compatible with tegra kernel 3.1.x and vf kernel 4.4. Use backports-legacy-4.19 for these kernels. Related-to: ELB-2724 Signed-off-by: Oleksandr Suvorov <oleksandr.suvorov@toradex.com>
Diffstat (limited to 'recipes-kernel/backports/files')
-rw-r--r--recipes-kernel/backports/files/99-backports.conf8
-rw-r--r--recipes-kernel/backports/files/config25
-rw-r--r--recipes-kernel/backports/files/makefile.patch24
3 files changed, 0 insertions, 57 deletions
diff --git a/recipes-kernel/backports/files/99-backports.conf b/recipes-kernel/backports/files/99-backports.conf
deleted file mode 100644
index 4784568..0000000
--- a/recipes-kernel/backports/files/99-backports.conf
+++ /dev/null
@@ -1,8 +0,0 @@
-search built-in backports
-
-override cfg80211 * backports
-override lib80211 * backports
-override mwifiex_pcie * backports
-override mwifiex_sdio * backports
-override mwifiex_usb * backports
-override r8188eu * backports
diff --git a/recipes-kernel/backports/files/config b/recipes-kernel/backports/files/config
deleted file mode 100644
index 5cf1f05..0000000
--- a/recipes-kernel/backports/files/config
+++ /dev/null
@@ -1,25 +0,0 @@
-CPTCFG_CFG80211=m
-CPTCFG_CFG80211_WEXT=y
-CPTCFG_MAC80211=m
-# CPTCFG_WLAN_VENDOR_ADMTEK is not set
-# CPTCFG_WLAN_VENDOR_ATH is not set
-# CPTCFG_WLAN_VENDOR_ATMEL is not set
-# CPTCFG_WLAN_VENDOR_BROADCOM is not set
-# CPTCFG_WLAN_VENDOR_CISCO is not set
-# CPTCFG_WLAN_VENDOR_INTEL is not set
-# CPTCFG_WLAN_VENDOR_INTERSIL is not set
-CPTCFG_MWIFIEX=m
-CPTCFG_MWIFIEX_SDIO=m
-CPTCFG_MWIFIEX_PCIE=m
-CPTCFG_MWIFIEX_USB=m
-# CPTCFG_WLAN_VENDOR_MEDIATEK is not set
-# CPTCFG_WLAN_VENDOR_RALINK is not set
-# CPTCFG_WLAN_VENDOR_REALTEK is not set
-# CPTCFG_WLAN_VENDOR_RSI is not set
-# CPTCFG_WLAN_VENDOR_ST is not set
-# CPTCFG_WLAN_VENDOR_TI is not set
-# CPTCFG_WLAN_VENDOR_ZYDAS is not set
-# CPTCFG_WLAN_VENDOR_QUANTENNA is not set
-# CPTCFG_USB_NET_DRIVERS is not set
-CPTCFG_STAGING=y
-CPTCFG_R8188EU=m
diff --git a/recipes-kernel/backports/files/makefile.patch b/recipes-kernel/backports/files/makefile.patch
deleted file mode 100644
index 4023570..0000000
--- a/recipes-kernel/backports/files/makefile.patch
+++ /dev/null
@@ -1,24 +0,0 @@
-commit 9e0b7ead828993280955f71afa3ad689f5e6e0a8
-Author: Oleksandr Suvorov <oleksandr.suvorov@toradex.com>
-Date: Wed May 20 10:56:56 2020 +0300
-
- Makefile: fix getting kernel version
-
- When backports build as a recipe, there is no Makefile available
- in STAGING_KERNEL_BUILDDIR. Instead use the preset KERNEL_VERSION.
-
- Signed-off-by: Oleksandr Suvorov <oleksandr.suvorov@toradex.com>
-
-diff --git a/Makefile b/Makefile
-index ee7df4ba..11044c0a 100644
---- a/Makefile
-+++ b/Makefile
-@@ -84,7 +84,7 @@ mrproper:
- echo "" ;\
- done \
- ) > Kconfig.kernel ;\
-- kver=$$($(MAKE) --no-print-directory -C $(KLIB_BUILD) kernelversion | \
-+ kver=$$(echo $(KERNEL_VERSION) | \
- sed 's/^\(\([3-5]\|2\.6\)\.[0-9]\+\).*/\1/;t;d') ;\
- test "$$kver" != "" || echo "Kernel version parse failed!" ;\
- test "$$kver" != "" ;\