mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-25 22:20:45 +00:00
018f530323
We are now using an env_ prefix for environment functions. Rename these commonly used functions, for consistency. Also add function comments in common.h. Suggested-by: Wolfgang Denk <wd@denx.de> Signed-off-by: Simon Glass <sjg@chromium.org>
30 lines
548 B
C
30 lines
548 B
C
/*
|
|
* (C) Copyright 2013
|
|
* Heiko Schocher, DENX Software Engineering, hs@denx.de.
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0+
|
|
*/
|
|
|
|
#include <common.h>
|
|
#include <environment.h>
|
|
|
|
void bootcount_store(ulong a)
|
|
{
|
|
int upgrade_available = getenv_ulong("upgrade_available", 10, 0);
|
|
|
|
if (upgrade_available) {
|
|
env_set_ulong("bootcount", a);
|
|
env_save();
|
|
}
|
|
}
|
|
|
|
ulong bootcount_load(void)
|
|
{
|
|
int upgrade_available = getenv_ulong("upgrade_available", 10, 0);
|
|
ulong val = 0;
|
|
|
|
if (upgrade_available)
|
|
val = getenv_ulong("bootcount", 10, 0);
|
|
|
|
return val;
|
|
}
|