summaryrefslogtreecommitdiffstats
path: root/recipes-kernel/linux/linux-fslc_6.1.bb
diff options
context:
space:
mode:
authorOtavio Salvador <otavio@ossystems.com.br>2023-04-24 08:52:56 -0300
committerOtavio Salvador <otavio@ossystems.com.br>2023-04-24 11:37:51 -0300
commitcb4b1f2d623ab711b52a75a98e8aa5cec7ea332d (patch)
tree2f99628067e964a1ad8ff0d64645cdce691aaeef /recipes-kernel/linux/linux-fslc_6.1.bb
parent2c59b72561134efd8e2adb3e7018d657662d48ad (diff)
downloadmeta-freescale-cb4b1f2d623ab711b52a75a98e8aa5cec7ea332d.tar.gz
linux-fslc: remove SoC-specific defconfig to use in-tree defconfigrework-kernel-recipes
In the past, we preferred to use the defconfig inside the layer, so it served as a reference for users. However, a lot of time passed, and users are now more used to using configuration fragments and Linux kernel forks, so it seems to be time to make it easier for us, maintainers, to manage the kernel and to use in-tree defconfig. Fixes: #1427. Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
Diffstat (limited to 'recipes-kernel/linux/linux-fslc_6.1.bb')
-rw-r--r--recipes-kernel/linux/linux-fslc_6.1.bb16
1 files changed, 13 insertions, 3 deletions
diff --git a/recipes-kernel/linux/linux-fslc_6.1.bb b/recipes-kernel/linux/linux-fslc_6.1.bb
index 879c9e13..3f9eced4 100644
--- a/recipes-kernel/linux/linux-fslc_6.1.bb
+++ b/recipes-kernel/linux/linux-fslc_6.1.bb
@@ -10,12 +10,11 @@ provide support for some backported features and fixes, or because it was applie
10and takes some time to become part of a stable version, or because it is not applicable for \ 10and takes some time to become part of a stable version, or because it is not applicable for \
11upstreaming." 11upstreaming."
12 12
13DEPENDS += "bc-native" 13DEPENDS += "lzop-native bc-native"
14 14
15require linux-imx.inc 15require linux-imx.inc
16 16
17SRC_URI = "git://github.com/Freescale/linux-fslc.git;branch=${KBRANCH};protocol=https \ 17SRC_URI = "git://github.com/Freescale/linux-fslc.git;branch=${KBRANCH};protocol=https"
18 file://defconfig"
19 18
20# PV is defined in the base in linux-imx.inc file and uses the LINUX_VERSION definition 19# PV is defined in the base in linux-imx.inc file and uses the LINUX_VERSION definition
21# required by kernel-yocto.bbclass. 20# required by kernel-yocto.bbclass.
@@ -27,6 +26,17 @@ LINUX_VERSION = "6.1.24"
27KBRANCH = "6.1.x+fslc" 26KBRANCH = "6.1.x+fslc"
28SRCREV = "4c5917cbbb13c618abe50bb85048b784bd1b1095" 27SRCREV = "4c5917cbbb13c618abe50bb85048b784bd1b1095"
29 28
29KBUILD_DEFCONFIG:mx27-generic-bsp = "imx_v4_v5_defconfig"
30KBUILD_DEFCONFIG:mx5-generic-bsp = "imx_v6_v7_defconfig"
31KBUILD_DEFCONFIG:mx5-generic-bsp = "imx_v6_v7_defconfig"
32KBUILD_DEFCONFIG:mx5-generic-bsp = "imx_v6_v7_defconfig"
33KBUILD_DEFCONFIG:mx6-generic-bsp = "imx_v6_v7_defconfig"
34KBUILD_DEFCONFIG:mx7-generic-bsp = "imx_v6_v7_defconfig"
35KBUILD_DEFCONFIG:mx8-generic-bsp = "defconfig"
36KBUILD_DEFCONFIG:mx9-generic-bsp = "defconfig"
37KBUILD_DEFCONFIG:mxs-generic-bsp = "mxs_defconfig"
38KBUILD_DEFCONFIG:vf-generic-bsp = "imx_v6_v7_defconfig"
39
30LOCALVERSION = "-fslc" 40LOCALVERSION = "-fslc"
31 41
32COMPATIBLE_MACHINE = "(imx-generic-bsp)" 42COMPATIBLE_MACHINE = "(imx-generic-bsp)"