From: Daan De Meyer Date: Thu, 7 Jul 2022 18:11:14 +0000 (+0200) Subject: Explicitly configure kernel-install layout as "bls" X-Git-Tag: v14~133^2~2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=19364a7c201c83ef3dd275c23e9a27df8cc787c5;p=thirdparty%2Fmkosi.git Explicitly configure kernel-install layout as "bls" --- diff --git a/mkosi/__init__.py b/mkosi/__init__.py index 0ad632a75..9eec93e51 100644 --- a/mkosi/__init__.py +++ b/mkosi/__init__.py @@ -1847,6 +1847,7 @@ def prepare_tree(args: MkosiArgs, root: Path, do_run_build_script: bool, cached: root.joinpath("etc/kernel/cmdline").write_text(" ".join(args.kernel_command_line) + "\n") root.joinpath("etc/kernel/entry-token").write_text(f"{args.machine_id}\n") + root.joinpath("etc/kernel/install.conf").write_text("layout=bls\n") if do_run_build_script or args.ssh: root_home(args, root).mkdir(mode=0o750)