summaryrefslogtreecommitdiffstats
path: root/recipes-kernel/linux/linux-fslc-lts
Commit message (Collapse)AuthorAgeFilesLines
* linux-fslc-lts: remove 5.15 recipeOtavio Salvador2023-04-243-1866/+0
| | | | | | We moved to 6.1 so this recipe is untested. Drop it. Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
* linux-fslc-lts: backport config patches from upstreamAndrey Zhizhikin2022-11-131-3/+0
| | | | | | | | | | | | | | | | | Yocto Kernel config sanity check throws warning on following config options that are not present in the tree, but still resides in the defconfig: - CONFIG_ARCH_AGILEX - CONFIG_ARCH_N5X - CONFIG_POWER_AVS Backport following patches to address those erroneous confg options: ---- 4a9a1a5602d8 ("arm64: socfpga: merge Agilex and N5X into ARCH_INTEL_SOCFPGA") dde8cd786e37 ("arm64: defconfig: rebuild default configuration") ---- Signed-off-by: Andrey Zhizhikin <andrey.z@gmail.com>
* recipes-kernel: drop lzop kernel compressionAndrey Zhizhikin2022-06-161-1/+0
| | | | | | | | | | | | | | | | | | | Since lzop-native was dropped from OE-Core, kernel was not buildable for arm32 configuration as LZOP compression has been enabled there in default configurations. This was dropped from all the branches in linux-fslc repository [1], [2], [3]. Update layer kernel configs to drop this option as well. Link: [1]: https://github.com/Freescale/linux-fslc/commit/9296d48cdaa11c496a1ba8f1f62464ca5576ba9b Link: [2]: https://github.com/Freescale/linux-fslc/commit/ab155a14bb8a6620f2f550cc21ff3bf8173553fa Link: [3]: https://github.com/Freescale/linux-fslc/commit/aa0d6324254a0cc3126475f6df8ea8f438c0cd53 Fixes: af3f03bf ("layer wide: remove lzop dependency dropped upstream") Signed-off-by: Andrey Zhizhikin <andrey.z@gmail.com> Cc: Sam Van Den Berge <sam.van.den.berge@telenet.be>
* linux-fslc-lts: re-sync configs with upstreamAndrey Zhizhikin2022-06-063-28/+140
| | | | | | | | | | | | | | | | | | | | | Re-sync layer configuration files with following from upstream (including commit log diff to previous sync point): - arch/arm64/configs/defconfig -> armv8a/defconfig ---- 79045b61875d ("arm64: defconfig: build imx-sdma as a module") ---- - arch/arm/configs/imx_v6_v7_defconfig -> defconfig No changes in upstream - arch/arm/configs/mxs_defconfig -> mxs-generic-bsp/defconfig No changes in upstream Previous upstream kernel sync commit: b6abb62daa55 ("Linux 5.15.1") Current upstream kernel sync commit: 4e67be407725 ("Linux 5.15.44") Signed-off-by: Andrey Zhizhikin <andrey.z@gmail.com>
* Generalize overrides subsystem for NXP and Mainline supportOtavio Salvador2022-02-211-0/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Essentially, we extend the overrides to a generic-bsp, nxp-bsp, and mainline-bsp. So, for example, the mx8mq override is split into: - imx-generic-bsp: compatible with every i.MX SoC and both BSP variants - imx-nxp-bsp: compatible with every i.MX SoC but specific to NXP BSP - imx-mainline-bsp: compatible with every i.MX SoC but specific to Mainline BSP - mx8-generic-bsp: compatible with every i.MX8 SoC and both BSP variants - mx8-nxp-bsp: compatible with every i.MX8 SoC but specific to NXP BSP - mx8-mainline-bsp: compatible with every i.MX8 SoC but specific to Mainline BSP - mx8m-generic-bsp: compatible with every i.MX8M SoC and both BSP variants - mx8m-nxp-bsp: compatible with every i.MX8M SoC but specific to NXP BSP - mx8m-mainline-bsp: compatible with every i.MX8M SoC but specific to Mainline BSP - mx8mq-generic-bsp: compatible with every i.MX8MQ SoC and both BSP variants - mx8mq-nxp-bsp: compatible with every i.MX8MQ SoC8 but specific to NXP BSP - mx8mq-mainline-bsp: compatible with every i.MX8MQ SoC but specific to Mainline BSP The extender mechanism is responsible for extending the override list to include the generic overrides. We can then use the three different variants to handle the metadata correctly. Generically speaking, the conversion mainly was automated (with a lot of back and forth until getting it right). To convert an existing layer, the following script can be used: ```sh git ls-files classes recipes-* \ | xargs sed -i \ -e 's,:\(mx[6-8]\w*\),:\1-nxp-bsp,g' \ -e 's,(\(mx[6-8]\w*\)),(\1-nxp-bsp),g' \ -e 's,\(mx[6-8]\w*\)|,\1-nxp-bsp|,g' \ -e 's,|\(mx[6-8]\w*\)),|\1-nxp-bsp),g' \ \ -e 's,:\(mx[5s]\w*\),:\1-generic-bsp,g' \ -e 's,(\(mx[5s]\w*\)),(\1-generic-bsp),g' \ -e 's,\(mx[5s]\w*\)|,\1-generic-bsp|,g' \ -e 's,|\(mx[5s]\w*\)),|\1-generic-bsp),g' \ \ -e 's,:\(vf\w*\),:\1-generic-bsp,g' \ -e 's,:\(vf[56]0\w*\),:\1-generic-bsp,g' \ -e 's,\(vf\w*\)|,\1-generic-bsp|,g' \ -e 's,|\(vf\w*\)),|\1-generic-bsp),g' \ -e 's,\(vf[56]0\w*\)|,\1-generic-bsp|,g' \ -e 's,|\(vf[56]0\w*\)),|\1-generic-bsp),g' \ \ -e 's,:\(imx\) ,:\1-nxp-bsp ,g' \ -e 's,(\(imx\)),(\1-nxp-bsp),g' \ -e 's,\(imx\)|,\1-nxp-bsp|,g' \ -e 's,|\(imx\)),|\1-nxp-bsp),g' for d in $(find -type d | egrep '/mx[6-8]w*'); do git mv $d $d-nxp-bsp done for d in $(find -type d | egrep '/imx$'); do git mv $d $d-nxp-bsp done for d in $(find -type d | egrep '/mx[5s]w*'); do git mv $d $d-generic-bsp done ``` Fixes: #791. Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
* mx25pdk: Remove machine due to its deadlineVinicius Aquino2021-10-191-193/+0
| | | | | | The commit 2610bf14 from u-boot-fslc removes support for mx25pdk Signed-off-by: Vinicius Aquino <vinicius.aquino@ossystems.com.br>
* linux-fslc-lts: Rework 5.10 Linux kernel as LTS recipeVinicius Aquino2021-05-074-0/+1951
We are working on adding the new 5.12 Linux kernel and the existing 5.10 kernel is now reworked and here after referenced as the LTS kernel. Signed-off-by: Vinicius Aquino <vinicius.aquino@ossystems.com.br>