b.liu | e958203 | 2025-04-17 19:18:16 +0800 | [diff] [blame] | 1 | From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001 |
| 2 | From: Huangbin Zhan <zhanhb88@gmail.com> |
| 3 | Date: Fri, 18 Feb 2022 14:19:23 +0800 |
| 4 | Subject: [PATCH] tools: disable TOOLS_FIT_FULL_CHECK |
| 5 | |
| 6 | U-Boot disallows unit addresses by default. Disable TOOLS_FIT_FULL_CHECK |
| 7 | to allow at symbol in node names. |
| 8 | |
| 9 | https://github.com/openwrt/openwrt/commits/master/scripts/mkits.sh |
| 10 | https://github.com/u-boot/u-boot/commit/3f04db891a353f4b127ed57279279f851c6b4917 |
| 11 | --- |
| 12 | tools/Kconfig | 2 +- |
| 13 | 1 file changed, 1 insertion(+), 1 deletion(-) |
| 14 | |
| 15 | --- a/tools/Kconfig |
| 16 | +++ b/tools/Kconfig |
| 17 | @@ -36,7 +36,7 @@ config TOOLS_FIT |
| 18 | Enable FIT support in the tools builds. |
| 19 | |
| 20 | config TOOLS_FIT_FULL_CHECK |
| 21 | - def_bool y |
| 22 | + bool "Do a full check of the FIT" |
| 23 | help |
| 24 | Do a full check of the FIT before using it in the tools builds |
| 25 | |