Force building kernels with `--update-checksums`

This commit is contained in:
Eduardo Sánchez Muñoz 2023-04-16 12:14:26 +02:00
parent b96074616f
commit 55a44d9347
1 changed files with 1 additions and 1 deletions

View File

@ -39,7 +39,7 @@ def create_configuration_file(args):
config.write("KERNEL_BOOTSTRAP=True\n")
else:
config.write("KERNEL_BOOTSTRAP=False\n")
config.write(f"BUILD_KERNELS={args.build_kernels}\n")
config.write(f"BUILD_KERNELS={args.update_checksums or args.build_kernels}\n")
# pylint: disable=too-many-statements
def main():