blob: d6faf3491252bcc27c1730497d3b442237117acb [file] [log] [blame]
wdenk6aff3112002-12-17 01:51:00 +00001/*
Grant Ericksonbc117562008-05-06 20:16:15 -07002 * (C) Copyright 2002-2008
wdenk6aff3112002-12-17 01:51:00 +00003 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4 *
Wolfgang Denk3765b3e2013-10-07 13:07:26 +02005 * SPDX-License-Identifier: GPL-2.0+
wdenk6aff3112002-12-17 01:51:00 +00006 */
7
Tom Rinie3c52f22012-12-20 07:30:27 -07008/* Pull in the current config to define the default environment */
9#ifndef __ASSEMBLY__
10#define __ASSEMBLY__ /* get only #defines from config.h */
11#include <config.h>
12#undef __ASSEMBLY__
13#else
14#include <config.h>
15#endif
Max Krummenacher1bfb9222015-04-14 21:50:47 +020016#include <generated/autoconf.h>
Tom Rinie3c52f22012-12-20 07:30:27 -070017
wdenk8bde7f72003-06-27 21:31:46 +000018/*
Frans Meulenbroeks9cbfee62012-01-05 08:09:10 +000019 * To build the utility with the static configuration
20 * comment out the next line.
Wolfgang Denk566e5cf2011-05-01 20:44:23 +020021 * See included "fw_env.config" sample file
wdenkd0fb80c2003-01-11 09:48:40 +000022 * for notes on configuration.
23 */
wdenkd791b1d2003-04-20 14:04:18 +000024#define CONFIG_FILE "/etc/fw_env.config"
wdenkd0fb80c2003-01-11 09:48:40 +000025
Joe Hershberger497f2052012-10-03 09:38:46 +000026#ifndef CONFIG_FILE
wdenk6aff3112002-12-17 01:51:00 +000027#define HAVE_REDUND /* For systems with 2 env sectors */
28#define DEVICE1_NAME "/dev/mtd1"
29#define DEVICE2_NAME "/dev/mtd2"
wdenkd0fb80c2003-01-11 09:48:40 +000030#define DEVICE1_OFFSET 0x0000
wdenk6aff3112002-12-17 01:51:00 +000031#define ENV1_SIZE 0x4000
Frans Meulenbroeks5d5cc382011-12-01 03:30:04 +000032#define DEVICE1_ESIZE 0x4000
33#define DEVICE1_ENVSECTORS 2
wdenkd0fb80c2003-01-11 09:48:40 +000034#define DEVICE2_OFFSET 0x0000
wdenk6aff3112002-12-17 01:51:00 +000035#define ENV2_SIZE 0x4000
Frans Meulenbroeks5d5cc382011-12-01 03:30:04 +000036#define DEVICE2_ESIZE 0x4000
37#define DEVICE2_ENVSECTORS 2
Joe Hershberger497f2052012-10-03 09:38:46 +000038#endif
wdenk6aff3112002-12-17 01:51:00 +000039
Tom Rinie3c52f22012-12-20 07:30:27 -070040#ifndef CONFIG_BAUDRATE
41#define CONFIG_BAUDRATE 115200
42#endif
43
44#ifndef CONFIG_BOOTDELAY
45#define CONFIG_BOOTDELAY 5 /* autoboot after 5 seconds */
46#endif
47
48#ifndef CONFIG_BOOTCOMMAND
49#define CONFIG_BOOTCOMMAND \
50 "bootp; " \
51 "setenv bootargs root=/dev/nfs nfsroot=${serverip}:${rootpath} " \
52 "ip=${ipaddr}:${serverip}:${gatewayip}:${netmask}:${hostname}::off; " \
53 "bootm"
54#endif
55
Grant Ericksonbc117562008-05-06 20:16:15 -070056extern int fw_printenv(int argc, char *argv[]);
Markus Klotzbücher6de66b32007-11-27 10:23:20 +010057extern char *fw_getenv (char *name);
58extern int fw_setenv (int argc, char *argv[]);
Stefano Babicbd7b26f2010-05-24 12:08:16 +020059extern int fw_parse_script(char *fname);
60extern int fw_env_open(void);
61extern int fw_env_write(char *name, char *value);
62extern int fw_env_close(void);
wdenk6aff3112002-12-17 01:51:00 +000063
64extern unsigned long crc32 (unsigned long, const unsigned char *, unsigned);