diff options
| author | Adam Duskett <Aduskett@gmail.com> | 2017-04-22 13:18:10 -0400 |
|---|---|---|
| committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2017-05-02 22:26:32 +0200 |
| commit | a139295ce96f9deb8fa9c502ebd00000b9c216d5 (patch) | |
| tree | 53d8f8538f239cdbdbef44b252a05b511b77e4b0 /package/xvisor | |
| parent | 2fb8f97258861116105789232a0530dcf37ce0c5 (diff) | |
| download | buildroot-a139295ce96f9deb8fa9c502ebd00000b9c216d5.tar.gz buildroot-a139295ce96f9deb8fa9c502ebd00000b9c216d5.zip | |
package/x*/Config.in: fix ordering of statements
The check-package script when ran gives warnings on ordering issues
on all of these Config files. This patch cleans up all warnings
related to the ordering in the Config files for packages starting with
the letter x in the package directory.
The appropriate ordering is: type, default, depends on, select, help
See http://nightly.buildroot.org/#_config_files for more information.
Signed-off-by: Adam Duskett <Adamduskett@outlook.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/xvisor')
| -rw-r--r-- | package/xvisor/Config.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/xvisor/Config.in b/package/xvisor/Config.in index 996d37afbe..1f8fd1ff18 100644 --- a/package/xvisor/Config.in +++ b/package/xvisor/Config.in @@ -32,12 +32,12 @@ endchoice config BR2_PACKAGE_XVISOR_DEFCONFIG string "Defconfig name" - depends on BR2_PACKAGE_XVISOR_USE_DEFCONFIG default "generic-v5" if BR2_ARM_CPU_ARMV5 default "generic-v6" if BR2_ARM_CPU_ARMV6 default "generic-v7" if BR2_ARM_CPU_ARMV7A default "generic-v8" if BR2_AARCH64 default "x86_64_generic" if BR2_x86_64 + depends on BR2_PACKAGE_XVISOR_USE_DEFCONFIG help Name of the Xvisor defconfig file to use, without the trailing -defconfig. The defconfig is located in |

