From 224aa31f4a0499bfacab07f22d2114fca555da29 Mon Sep 17 00:00:00 2001 From: Daan De Meyer Date: Sat, 5 Oct 2024 17:01:21 +0200 Subject: [PATCH] ukify: Read .profile from path starting with @ --- src/ukify/ukify.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/ukify/ukify.py b/src/ukify/ukify.py index 5f1b2c3e8c..2344282795 100755 --- a/src/ukify/ukify.py +++ b/src/ukify/ukify.py @@ -1898,6 +1898,8 @@ def finalize_options(opts: argparse.Namespace) -> None: '--sign-kernel requires either --secureboot-private-key= and --secureboot-certificate= (for sbsign) or --secureboot-certificate-name= (for pesign) to be specified' # noqa: E501 ) + opts.profile = resolve_at_path(opts.profile) + if opts.join_profiles and not opts.profile: # If any additional profiles are added, we need a base profile as well so add one if # one wasn't explicitly provided -- 2.25.1