From cd9c22f45142e46a2bcd9e5823a5378edaf09751 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ciro=20Santilli=20=E5=85=AD=E5=9B=9B=E4=BA=8B=E4=BB=B6=20?= =?UTF-8?q?=E6=B3=95=E8=BD=AE=E5=8A=9F?= Date: Sat, 13 Oct 2018 00:00:00 +0000 Subject: [PATCH] build-buildroot: actually don't build linux by default --- build-buildroot | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-buildroot b/build-buildroot index 269832a..acd9c1c 100755 --- a/build-buildroot +++ b/build-buildroot @@ -172,7 +172,7 @@ def main(args, extra_args=None): 'BR2_DL_DIR="{}"'.format(common.buildroot_download_dir), ]) common.write_configs(common.buildroot_config_file, buildroot_configs) - if args.build_linux: + if not args.build_linux: buildroot_configs.extend([ '# BR2_LINUX_KERNEL is not set', ])