mirror of
https://source.denx.de/u-boot/u-boot.git
synced 2025-08-10 17:26:59 +02:00
When bringing in the series 'arm: dts: am62-beagleplay: Fix Beagleplay Ethernet"' I failed to notice that b4 noticed it was based on next and so took that as the base commit and merged that part of next to master. This reverts commitc8ffd1356d
, reversing changes made to2ee6f3a5f7
. Reported-by: Jonas Karlman <jonas@kwiboo.se> Signed-off-by: Tom Rini <trini@konsulko.com>
30 lines
540 B
C
30 lines
540 B
C
// SPDX-License-Identifier: GPL-2.0+
|
|
/*
|
|
* (C) Copyright 2013
|
|
* Heiko Schocher, DENX Software Engineering, hs@denx.de.
|
|
*/
|
|
|
|
#include <common.h>
|
|
#include <env.h>
|
|
|
|
void bootcount_store(ulong a)
|
|
{
|
|
int upgrade_available = env_get_ulong("upgrade_available", 10, 0);
|
|
|
|
if (upgrade_available) {
|
|
env_set_ulong("bootcount", a);
|
|
env_save();
|
|
}
|
|
}
|
|
|
|
ulong bootcount_load(void)
|
|
{
|
|
int upgrade_available = env_get_ulong("upgrade_available", 10, 0);
|
|
ulong val = 0;
|
|
|
|
if (upgrade_available)
|
|
val = env_get_ulong("bootcount", 10, 0);
|
|
|
|
return val;
|
|
}
|