mirror of
https://github.com/fosslinux/live-bootstrap.git
synced 2026-03-23 11:36:32 +01:00
Merge c766b6030b into 86e1a5e7f6
This commit is contained in:
commit
db1b7517d6
12 changed files with 249 additions and 12 deletions
|
|
@ -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()
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue