From: Andreas Reichel <[email protected]> Fix missing directory after -f when calling bg_setenv in efibootguard-boot.py source plugin.
Signed-off-by: Andreas Reichel <[email protected]> --- scripts/lib/wic/plugins/source/efibootguard-boot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/lib/wic/plugins/source/efibootguard-boot.py b/scripts/lib/wic/plugins/source/efibootguard-boot.py index 8db0620..e9e0868 100644 --- a/scripts/lib/wic/plugins/source/efibootguard-boot.py +++ b/scripts/lib/wic/plugins/source/efibootguard-boot.py @@ -62,7 +62,7 @@ class EfibootguardBootPlugin(SourcePlugin): cwd = os.getcwd() os.chdir(hdddir) - config_cmd = 'bg_setenv -f -k "C:%s:bzImage" -a "%s" -r %s -w %s' % \ + config_cmd = 'bg_setenv -f . -k "C:%s:bzImage" -a "%s" -r %s -w %s' % \ (part.label.upper(), \ cmdline.strip(), \ source_params.get("revision", 1), \ -- 2.16.0 -- You received this message because you are subscribed to the Google Groups "EFI Boot Guard" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/efibootguard-dev/20180124102351.17078-2-andreas.reichel.ext%40siemens.com. For more options, visit https://groups.google.com/d/optout.
