-
Notifications
You must be signed in to change notification settings - Fork 260
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
linux: fix building linux 6.1 for 32-bit arm machines
Only kernels >= 6.6 have dts files for 32-bit ARM devices reorganized by placing them in vendor+family subdirectories. Previous kernels keep all arm arch dts files in a single default directory. Correctly reassign KERNEL_DEVICETREE for 32-bit ARM devices for all supported kernels 6.1 to fix building. Fixes: 0d838c6 ("ARM 32-bit device-tree reorganization") Signed-off-by: Oleksandr Suvorov <[email protected]>
- Loading branch information
Showing
5 changed files
with
14 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
# In linux kernels < 6.6 dts files for arm arch are collected in the | ||
# common dts directory arch/arm/boot/dts | ||
|
||
KERNEL_DEVICETREE:imx23evk = "imx23-evk.dtb" | ||
KERNEL_DEVICETREE:imx28evk = "imx28-evk.dtb" | ||
KERNEL_DEVICETREE:imx51evk = "imx51-babbage.dtb" | ||
KERNEL_DEVICETREE:imx53qsb = "imx53-qsb.dtb imx53-qsrb.dtb" |