wdenk | 6aff311 | 2002-12-17 01:51:00 +0000 | [diff] [blame] | 1 | /* |
Grant Erickson | bc11756 | 2008-05-06 20:16:15 -0700 | [diff] [blame] | 2 | * (C) Copyright 2002-2008 |
wdenk | 6aff311 | 2002-12-17 01:51:00 +0000 | [diff] [blame] | 3 | * Wolfgang Denk, DENX Software Engineering, wd@denx.de. |
| 4 | * |
Wolfgang Denk | 3765b3e | 2013-10-07 13:07:26 +0200 | [diff] [blame] | 5 | * SPDX-License-Identifier: GPL-2.0+ |
wdenk | 6aff311 | 2002-12-17 01:51:00 +0000 | [diff] [blame] | 6 | */ |
| 7 | |
Tom Rini | e3c52f2 | 2012-12-20 07:30:27 -0700 | [diff] [blame] | 8 | /* 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 |
| 16 | |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 17 | /* |
Frans Meulenbroeks | 9cbfee6 | 2012-01-05 08:09:10 +0000 | [diff] [blame] | 18 | * To build the utility with the static configuration |
| 19 | * comment out the next line. |
Wolfgang Denk | 566e5cf | 2011-05-01 20:44:23 +0200 | [diff] [blame] | 20 | * See included "fw_env.config" sample file |
wdenk | d0fb80c | 2003-01-11 09:48:40 +0000 | [diff] [blame] | 21 | * for notes on configuration. |
| 22 | */ |
wdenk | d791b1d | 2003-04-20 14:04:18 +0000 | [diff] [blame] | 23 | #define CONFIG_FILE "/etc/fw_env.config" |
wdenk | d0fb80c | 2003-01-11 09:48:40 +0000 | [diff] [blame] | 24 | |
Joe Hershberger | 497f205 | 2012-10-03 09:38:46 +0000 | [diff] [blame] | 25 | #ifndef CONFIG_FILE |
wdenk | 6aff311 | 2002-12-17 01:51:00 +0000 | [diff] [blame] | 26 | #define HAVE_REDUND /* For systems with 2 env sectors */ |
| 27 | #define DEVICE1_NAME "/dev/mtd1" |
| 28 | #define DEVICE2_NAME "/dev/mtd2" |
wdenk | d0fb80c | 2003-01-11 09:48:40 +0000 | [diff] [blame] | 29 | #define DEVICE1_OFFSET 0x0000 |
wdenk | 6aff311 | 2002-12-17 01:51:00 +0000 | [diff] [blame] | 30 | #define ENV1_SIZE 0x4000 |
Frans Meulenbroeks | 5d5cc38 | 2011-12-01 03:30:04 +0000 | [diff] [blame] | 31 | #define DEVICE1_ESIZE 0x4000 |
| 32 | #define DEVICE1_ENVSECTORS 2 |
wdenk | d0fb80c | 2003-01-11 09:48:40 +0000 | [diff] [blame] | 33 | #define DEVICE2_OFFSET 0x0000 |
wdenk | 6aff311 | 2002-12-17 01:51:00 +0000 | [diff] [blame] | 34 | #define ENV2_SIZE 0x4000 |
Frans Meulenbroeks | 5d5cc38 | 2011-12-01 03:30:04 +0000 | [diff] [blame] | 35 | #define DEVICE2_ESIZE 0x4000 |
| 36 | #define DEVICE2_ENVSECTORS 2 |
Joe Hershberger | 497f205 | 2012-10-03 09:38:46 +0000 | [diff] [blame] | 37 | #endif |
wdenk | 6aff311 | 2002-12-17 01:51:00 +0000 | [diff] [blame] | 38 | |
Tom Rini | e3c52f2 | 2012-12-20 07:30:27 -0700 | [diff] [blame] | 39 | #ifndef CONFIG_BAUDRATE |
| 40 | #define CONFIG_BAUDRATE 115200 |
| 41 | #endif |
| 42 | |
| 43 | #ifndef CONFIG_BOOTDELAY |
| 44 | #define CONFIG_BOOTDELAY 5 /* autoboot after 5 seconds */ |
| 45 | #endif |
| 46 | |
| 47 | #ifndef CONFIG_BOOTCOMMAND |
| 48 | #define CONFIG_BOOTCOMMAND \ |
| 49 | "bootp; " \ |
| 50 | "setenv bootargs root=/dev/nfs nfsroot=${serverip}:${rootpath} " \ |
| 51 | "ip=${ipaddr}:${serverip}:${gatewayip}:${netmask}:${hostname}::off; " \ |
| 52 | "bootm" |
| 53 | #endif |
| 54 | |
Grant Erickson | bc11756 | 2008-05-06 20:16:15 -0700 | [diff] [blame] | 55 | extern int fw_printenv(int argc, char *argv[]); |
Markus Klotzbücher | 6de66b3 | 2007-11-27 10:23:20 +0100 | [diff] [blame] | 56 | extern char *fw_getenv (char *name); |
| 57 | extern int fw_setenv (int argc, char *argv[]); |
Stefano Babic | bd7b26f | 2010-05-24 12:08:16 +0200 | [diff] [blame] | 58 | extern int fw_parse_script(char *fname); |
| 59 | extern int fw_env_open(void); |
| 60 | extern int fw_env_write(char *name, char *value); |
| 61 | extern int fw_env_close(void); |
wdenk | 6aff311 | 2002-12-17 01:51:00 +0000 | [diff] [blame] | 62 | |
| 63 | extern unsigned long crc32 (unsigned long, const unsigned char *, unsigned); |