This commit is contained in:
Liam Wilson 2024-03-08 15:55:50 -05:00 committed by GitHub
commit db1b7517d6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
12 changed files with 249 additions and 12 deletions

View file

@ -49,6 +49,7 @@ def create_configuration_file(args):
config.write("DISK=sda1\n")
config.write("KERNEL_BOOTSTRAP=False\n")
config.write(f"BUILD_KERNELS={args.update_checksums or args.build_kernels}\n")
config.write(f"TCC_BOOTSTRAP_ALT={args.tcc_bootstrap_alt}\n")
# pylint: disable=too-many-statements,too-many-branches
def main():
@ -111,6 +112,9 @@ def main():
parser.add_argument("-b", "--bare-metal", help="Build images for bare metal",
action="store_true")
parser.add_argument("--tcc_bootstrap_alt",
help="Use tcc_bootstrap_alt.",
action="store_true")
args = parser.parse_args()