From 9640c2b4a5f911a7ddd897df948ef2ffcb6723f5 Mon Sep 17 00:00:00 2001 From: Sascha Hauer Date: Thu, 31 Mar 2011 12:43:59 +0200 Subject: environment: make default env path configurable Normally the default path to save the environment is /dev/env0. However, we can't map a file in a fat filesystem to /dev/env0. So if we want to store the environment in a file in fat we have to make it configurable. Signed-off-by: Sascha Hauer --- common/environment.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'common/environment.c') diff --git a/common/environment.c b/common/environment.c index e5f24ec201..0fdbd03e00 100644 --- a/common/environment.c +++ b/common/environment.c @@ -44,6 +44,8 @@ #define EXPORT_SYMBOL(x) #endif +char *default_environment_path = "/dev/env0"; + int file_size_action(const char *filename, struct stat *statbuf, void *userdata, int depth) { -- cgit v1.2.3