summaryrefslogtreecommitdiffstats
path: root/commands/bootm.c
diff options
context:
space:
mode:
authorSascha Hauer <s.hauer@pengutronix.de>2013-08-14 21:16:21 +0200
committerSascha Hauer <s.hauer@pengutronix.de>2013-08-16 08:40:33 +0200
commit016082f85e30d1bc24c3c9713476e5e8d8584668 (patch)
tree4ce0191421d7ca78d74f5a6da77051e6ca57130e /commands/bootm.c
parentba3b39d5f0f5523b6895308d35874726009647fa (diff)
downloadbarebox-016082f85e30d1bc24c3c9713476e5e8d8584668.tar.gz
barebox-016082f85e30d1bc24c3c9713476e5e8d8584668.tar.xz
globalvar: Allow to set initial value
Calling globalvar_add_simple() and setting a value is more than common. Add a parameter for the initial value. Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'commands/bootm.c')
-rw-r--r--commands/bootm.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/commands/bootm.c b/commands/bootm.c
index 97a6698b9b..eefcae3a74 100644
--- a/commands/bootm.c
+++ b/commands/bootm.c
@@ -164,10 +164,10 @@ err_out:
static int bootm_init(void)
{
- globalvar_add_simple("bootm.image");
- globalvar_add_simple("bootm.oftree");
+ globalvar_add_simple("bootm.image", NULL);
+ globalvar_add_simple("bootm.oftree", NULL);
if (IS_ENABLED(CONFIG_CMD_BOOTM_INITRD))
- globalvar_add_simple("bootm.initrd");
+ globalvar_add_simple("bootm.initrd", NULL);
return 0;
}