From a1ee6140bcfd15d5ab2fef05898a3c361ab1b9e4 Mon Sep 17 00:00:00 2001 From: Sascha Hauer Date: Wed, 3 Jul 2019 12:56:14 +0200 Subject: startup: Create global.linux.bootargs.dyn.* variables where they are needed global.linux.bootargs.dyn.* variables are exclusively used in boot scripts, so create them right before executing a script. This moves the corresponding code from the unrelated startup code to the place where the variables are used. Signed-off-by: Sascha Hauer --- common/boot.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'common/boot.c') diff --git a/common/boot.c b/common/boot.c index 974eaf5d02..84b2ff9677 100644 --- a/common/boot.c +++ b/common/boot.c @@ -92,6 +92,8 @@ static int bootscript_boot(struct bootentry *entry, int verbose, int dryrun) return 0; } + globalvar_add_simple("linux.bootargs.dyn.ip", NULL); + globalvar_add_simple("linux.bootargs.dyn.root", NULL); globalvar_set_match("linux.bootargs.dyn.", ""); ret = run_command(bs->scriptpath); -- cgit v1.2.3