From: Thomas Petazzoni Date: Wed, 6 Feb 2019 21:21:15 +0000 (+0100) Subject: boot/uboot: fix order of Config.in properties X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=5de451e5986abbbbea4df5ec9f4d64f3d726b407;p=buildroot.git boot/uboot: fix order of Config.in properties Fixes the following check-package warning: boot/uboot/Config.in:185: attributes order: type, default, depends on, select, help (http://nightly.buildroot.org/#_config_files) Signed-off-by: Thomas Petazzoni --- diff --git a/boot/uboot/Config.in b/boot/uboot/Config.in index cbbbd5f1a4..bd1b248e94 100644 --- a/boot/uboot/Config.in +++ b/boot/uboot/Config.in @@ -181,8 +181,8 @@ config BR2_TARGET_UBOOT_NEEDS_ATF_BL31 choice prompt "U-Boot ATF BL31 format" - depends on BR2_TARGET_UBOOT_NEEDS_ATF_BL31 default BR2_TARGET_UBOOT_NEEDS_ATF_BL31_BIN + depends on BR2_TARGET_UBOOT_NEEDS_ATF_BL31 config BR2_TARGET_UBOOT_NEEDS_ATF_BL31_BIN bool "bl31.bin"