mirror of
https://github.com/fosslinux/live-bootstrap.git
synced 2026-03-23 11:36:32 +01:00
more TCC_BOOTSTRAP_ALT config
This commit is contained in:
parent
331262575f
commit
1f9971d398
1 changed files with 4 additions and 0 deletions
|
|
@ -43,6 +43,7 @@ def create_configuration_file(args):
|
||||||
config.write("DISK=sda1\n")
|
config.write("DISK=sda1\n")
|
||||||
config.write("KERNEL_BOOTSTRAP=False\n")
|
config.write("KERNEL_BOOTSTRAP=False\n")
|
||||||
config.write(f"BUILD_KERNELS={args.update_checksums or args.build_kernels}\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
|
# pylint: disable=too-many-statements
|
||||||
def main():
|
def main():
|
||||||
|
|
@ -100,6 +101,9 @@ def main():
|
||||||
|
|
||||||
parser.add_argument("-b", "--bare-metal", help="Build images for bare metal",
|
parser.add_argument("-b", "--bare-metal", help="Build images for bare metal",
|
||||||
action="store_true")
|
action="store_true")
|
||||||
|
parser.add_argument("--tcc_bootstrap_alt",
|
||||||
|
help="Use tcc_bootstrap_alt.",
|
||||||
|
action="store_true")
|
||||||
|
|
||||||
args = parser.parse_args()
|
args = parser.parse_args()
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue