diff --git a/rootfs.py b/rootfs.py index 5a9e7988..c17aeab0 100755 --- a/rootfs.py +++ b/rootfs.py @@ -43,6 +43,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 def main(): @@ -100,6 +101,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()