From 3249006a2facd31a072fd2808991697b4727643e Mon Sep 17 00:00:00 2001 From: Sascha Hauer Date: Wed, 18 Jun 2014 15:12:05 +0200 Subject: Add support for non volatile variables This adds (back) support for non volatile variables. Non volatile variables are variables which are stored in the environment over reboot. They are used in the same way as the global variables, but with a 'nv' command and device. The variables are stored under /env/nv/, one variable per file. Adding a nv variable automatically adds a global variable with the same name. Changing a nv variable also changes the same global variable, but not the other way round. This allows for example to configure the username as: nv user=sha; saveenv Signed-off-by: Sascha Hauer --- common/startup.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'common/startup.c') diff --git a/common/startup.c b/common/startup.c index f164142c6e..2b92efcb95 100644 --- a/common/startup.c +++ b/common/startup.c @@ -40,6 +40,7 @@ #include #include #include +#include extern initcall_t __barebox_initcalls_start[], __barebox_early_initcalls_end[], __barebox_initcalls_end[]; @@ -84,6 +85,7 @@ void __noreturn start_barebox(void) defaultenv_load("/env", 0); envfs_load(default_environment_path, "/env", 0); + nvvar_load(); } if (IS_ENABLED(CONFIG_COMMAND_SUPPORT)) { -- cgit v1.2.3