Fixed tools/env utilities
[u-boot-openmoko/mini2440.git] / tools / env / fw_env_main.c
blobd0df12c14763e780a9e951612091087622092c21
1 /*
2 * (C) Copyright 2000
3 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
5 * See file CREDITS for list of people who contributed to this
6 * project.
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License as
10 * published by the Free Software Foundation; either version 2 of
11 * the License, or (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
21 * MA 02111-1307 USA
25 * Command line user interface to firmware (=U-Boot) environment.
27 * Implements:
28 * fw_printenv [ name ... ]
29 * - prints the values of the environment variables
30 * "name", or the whole environment if no names are
31 * specified
32 * fw_setenv name [ value ... ]
33 * - If a name without any values is given, the variable
34 * with this name is deleted from the environment;
35 * otherwise, all "value" arguments are concatenated,
36 * separated by sinlge blank characters, and the
37 * resulting string is assigned to the environment
38 * variable "name"
41 #include <stdio.h>
42 #include <string.h>
43 #include <stdlib.h>
44 #include "fw_env.h"
46 #define CMD_PRINTENV "fw_printenv"
47 #define CMD_SETENV "fw_setenv"
48 #define CMD_LOADENV "fw_loadenv"
50 int
51 main(int argc, char *argv[])
53 char *p;
54 char *cmdname = *argv;
56 if ((p = strrchr (cmdname, '/')) != NULL) {
57 cmdname = p + 1;
60 if (strcmp(cmdname, CMD_PRINTENV) == 0) {
62 fw_printenv (argc, argv);
64 return (EXIT_SUCCESS);
66 } else if (strcmp(cmdname, CMD_SETENV) == 0) {
68 if (fw_setenv (argc, argv) != 0)
69 return (EXIT_FAILURE);
71 return (EXIT_SUCCESS);
72 } else if (strcmp(cmdname, CMD_LOADENV) == 0) {
74 if (fw_loadenv (argc, argv) != 0)
75 return (EXIT_FAILURE);
77 return (EXIT_SUCCESS);
80 fprintf (stderr,
81 "Identity crisis - may be called as `" CMD_PRINTENV
82 "' or as `" CMD_SETENV "' but not as `%s'\n",
83 cmdname);
84 return (EXIT_FAILURE);