]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - board/karo/common/env.c
7dbb7c86c3e21ac10a593d24c12b657f0711d6af
[karo-tx-uboot.git] / board / karo / common / env.c
1 /*
2  * (C) Copyright 2014 Lothar Waßmann <LW@KARO-electronics.de>
3  *
4  * See file CREDITS for list of people who contributed to this
5  * project.
6  *
7  * This program is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU General Public License
9  * version 2 as published by the Free Software Foundation.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  */
17
18 #include <common.h>
19 #include <errno.h>
20 #include <libfdt.h>
21 #include <fdt_support.h>
22
23 #include "karo.h"
24
25 DECLARE_GLOBAL_DATA_PTR;
26
27 static const char const *cleanup_vars[] = {
28         "bootargs",
29         "fileaddr",
30         "filesize",
31         "safeboot",
32         "wdreset",
33 };
34
35 void env_cleanup(void)
36 {
37         size_t i;
38
39         for (i = 0; i < ARRAY_SIZE(cleanup_vars); i++) {
40                 setenv(cleanup_vars[i], NULL);
41         }
42 }