summaryrefslogtreecommitdiffstats
path: root/common/state/state.h
diff options
context:
space:
mode:
authorSascha Hauer <s.hauer@pengutronix.de>2016-05-04 12:01:05 +0200
committerSascha Hauer <s.hauer@pengutronix.de>2018-02-06 08:46:11 +0100
commit6a77d1cfb6596ed0a269ab52028f7e4bb22c99e2 (patch)
treeb304e7e6ac97c4aa51e7c59d2ee01b97eba07e00 /common/state/state.h
parent6d3e10c67822816d3ff2021dcfba5e7a83906586 (diff)
downloadbarebox-6a77d1cfb6596ed0a269ab52028f7e4bb22c99e2.tar.gz
barebox-6a77d1cfb6596ed0a269ab52028f7e4bb22c99e2.tar.xz
state: Add 'init_from_defaults' parameter
The init_from_defaults parameter allows to detect if a state has been initialized from default values, i.e. state_load failed. Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'common/state/state.h')
-rw-r--r--common/state/state.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/common/state/state.h b/common/state/state.h
index fcc6b9f5cd..da1c6acaeb 100644
--- a/common/state/state.h
+++ b/common/state/state.h
@@ -107,7 +107,9 @@ struct state {
uint32_t magic;
struct list_head variables; /* Sorted list of variables */
+
unsigned int dirty;
+ unsigned int init_from_defaults;
unsigned int save_on_shutdown;
struct state_backend_format *format;