blob: 60c05177ffdef2947dd9c856cca32c7a05ab1cfe [file] [log] [blame]
wdenk34b613e2002-12-17 01:51:00 +00001/*
Grant Erickson73a4e5e2008-05-06 20:16:15 -07002 * (C) Copyright 2002-2008
wdenk34b613e2002-12-17 01:51:00 +00003 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4 *
Wolfgang Denkbd8ec7e2013-10-07 13:07:26 +02005 * SPDX-License-Identifier: GPL-2.0+
wdenk34b613e2002-12-17 01:51:00 +00006 */
7
Tom Rinicfd1e542012-12-20 07:30:27 -07008/* Pull in the current config to define the default environment */
Peter Robinson217f95b2015-06-17 16:58:32 +01009#include <linux/kconfig.h>
10
Tom Rinicfd1e542012-12-20 07:30:27 -070011#ifndef __ASSEMBLY__
12#define __ASSEMBLY__ /* get only #defines from config.h */
13#include <config.h>
14#undef __ASSEMBLY__
15#else
16#include <config.h>
17#endif
18
wdenk57b2d802003-06-27 21:31:46 +000019/*
Frans Meulenbroeks014117d2012-01-05 08:09:10 +000020 * To build the utility with the static configuration
21 * comment out the next line.
Wolfgang Denk8f399b32011-05-01 20:44:23 +020022 * See included "fw_env.config" sample file
wdenke7f34c62003-01-11 09:48:40 +000023 * for notes on configuration.
24 */
wdenk92bbe3f2003-04-20 14:04:18 +000025#define CONFIG_FILE "/etc/fw_env.config"
wdenke7f34c62003-01-11 09:48:40 +000026
Joe Hershberger671adc42012-10-03 09:38:46 +000027#ifndef CONFIG_FILE
wdenk34b613e2002-12-17 01:51:00 +000028#define HAVE_REDUND /* For systems with 2 env sectors */
29#define DEVICE1_NAME "/dev/mtd1"
30#define DEVICE2_NAME "/dev/mtd2"
wdenke7f34c62003-01-11 09:48:40 +000031#define DEVICE1_OFFSET 0x0000
wdenk34b613e2002-12-17 01:51:00 +000032#define ENV1_SIZE 0x4000
Frans Meulenbroeks416ef382011-12-01 03:30:04 +000033#define DEVICE1_ESIZE 0x4000
34#define DEVICE1_ENVSECTORS 2
wdenke7f34c62003-01-11 09:48:40 +000035#define DEVICE2_OFFSET 0x0000
wdenk34b613e2002-12-17 01:51:00 +000036#define ENV2_SIZE 0x4000
Frans Meulenbroeks416ef382011-12-01 03:30:04 +000037#define DEVICE2_ESIZE 0x4000
38#define DEVICE2_ENVSECTORS 2
Joe Hershberger671adc42012-10-03 09:38:46 +000039#endif
wdenk34b613e2002-12-17 01:51:00 +000040
Tom Rinicfd1e542012-12-20 07:30:27 -070041#ifndef CONFIG_BAUDRATE
42#define CONFIG_BAUDRATE 115200
43#endif
44
45#ifndef CONFIG_BOOTDELAY
46#define CONFIG_BOOTDELAY 5 /* autoboot after 5 seconds */
47#endif
48
49#ifndef CONFIG_BOOTCOMMAND
50#define CONFIG_BOOTCOMMAND \
51 "bootp; " \
52 "setenv bootargs root=/dev/nfs nfsroot=${serverip}:${rootpath} " \
53 "ip=${ipaddr}:${serverip}:${gatewayip}:${netmask}:${hostname}::off; " \
54 "bootm"
55#endif
56
Grant Erickson73a4e5e2008-05-06 20:16:15 -070057extern int fw_printenv(int argc, char *argv[]);
Markus Klotzbücher94db5572007-11-27 10:23:20 +010058extern char *fw_getenv (char *name);
59extern int fw_setenv (int argc, char *argv[]);
Stefano Babicada628b2010-05-24 12:08:16 +020060extern int fw_parse_script(char *fname);
61extern int fw_env_open(void);
62extern int fw_env_write(char *name, char *value);
63extern int fw_env_close(void);
wdenk34b613e2002-12-17 01:51:00 +000064
65extern unsigned long crc32 (unsigned long, const unsigned char *, unsigned);