diff options
author | 2019-12-03 15:59:03 +0100 | |
---|---|---|
committer | 2019-12-05 10:30:48 +0100 | |
commit | e6bbb785774af9d3925040ca61efcb388e832f74 (patch) | |
tree | 72e4173f2bd271e116df5edda1316603569b50d6 /utils | |
parent | 600132f8c08a5ae3d399559dd9c17d3b7b4c6ae3 (diff) | |
download | buildroot-e6bbb785774af9d3925040ca61efcb388e832f74.tar.gz buildroot-e6bbb785774af9d3925040ca61efcb388e832f74.tar.bz2 |
utils/genrandconfig: test per-package directories
Now that the support for per-package directories has been merged, it
is time to get some exposure for it in the autobuilders, so let's
build 1 out of 15 builds with this feature enabled, at least as an
initial step.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
Diffstat (limited to 'utils')
-rwxr-xr-x | utils/genrandconfig | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/utils/genrandconfig b/utils/genrandconfig index c221ebd670..5b60bc21d6 100755 --- a/utils/genrandconfig +++ b/utils/genrandconfig @@ -341,6 +341,10 @@ def gen_config(args): # Allow hosts with old certificates to download over https configlines.append("BR2_WGET=\"wget --passive-ftp -nd -t 3 --no-check-certificate\"\n") + # Per-package folder + if randint(0, 15) == 0: + configlines.append("BR2_PER_PACKAGE_DIRECTORIES=y\n") + # Amend the configuration with a few things. if randint(0, 20) == 0: configlines.append("BR2_ENABLE_DEBUG=y\n") |