logo

live-bootstrap

Mirror of <https://github.com/fosslinux/live-bootstrap>
commit: 55a44d93476ac8a9aae85812d98dd00593ce925e
parent b96074616ffc27cd66aa9e0c347ae6a2a654c00b
Author: Eduardo Sánchez Muñoz <eduardosm-dev@e64.io>
Date:   Sun, 16 Apr 2023 12:14:26 +0200

Force building kernels with `--update-checksums`

Diffstat:

Mrootfs.py2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/rootfs.py b/rootfs.py @@ -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():