diff options
author | Thomas Petazzoni <thomas.petazzoni@bootlin.com> | 2019-02-06 22:21:15 +0100 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@bootlin.com> | 2019-02-06 22:21:15 +0100 |
commit | 5de451e5986abbbbea4df5ec9f4d64f3d726b407 (patch) | |
tree | 99120fa445a5785173b7d3f519287a3272c4967d | |
parent | 97babe5c8b1593eb4a30b985e53a0ec9970aecdc (diff) | |
download | buildroot-5de451e5986abbbbea4df5ec9f4d64f3d726b407.tar.gz buildroot-5de451e5986abbbbea4df5ec9f4d64f3d726b407.zip |
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 <thomas.petazzoni@bootlin.com>
-rw-r--r-- | boot/uboot/Config.in | 2 |
1 files changed, 1 insertions, 1 deletions
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" |