diff options
author | Stefan Roese | 2006-08-07 14:33:32 +0200 |
---|---|---|
committer | Stefan Roese | 2006-08-07 14:33:32 +0200 |
commit | 4f92ed5fc083631ac7aef6c027cdf1177befd204 (patch) | |
tree | be6e878aee7d2535ad8e137c8c684a5e394a9fc1 /include/configs/ebony.h | |
parent | 9ede3cc5113de1d55978d63f19358acf048a23fb (diff) |
Add commandline history support to all AMCC eval boards
Patch by Stefan Roese, 07 Aug 2006
Diffstat (limited to 'include/configs/ebony.h')
-rw-r--r-- | include/configs/ebony.h | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/include/configs/ebony.h b/include/configs/ebony.h index a26af6952ef..d8882ea31c5 100644 --- a/include/configs/ebony.h +++ b/include/configs/ebony.h @@ -143,7 +143,13 @@ #undef CONFIG_SOFT_I2C /* I2C bit-banged */ #define CFG_I2C_SPEED 400000 /* I2C speed and slave address */ #define CFG_I2C_SLAVE 0x7F -#define CFG_I2C_NOPROBES {0x69} /* Don't probe these addrs */ + +#define CFG_I2C_MULTI_EEPROMS +#define CFG_I2C_EEPROM_ADDR (0xa8>>1) +#define CFG_I2C_EEPROM_ADDR_LEN 1 +#define CFG_EEPROM_PAGE_WRITE_ENABLE +#define CFG_EEPROM_PAGE_WRITE_BITS 3 +#define CFG_EEPROM_PAGE_WRITE_DELAY_MS 10 #define CONFIG_PREBOOT "echo;" \ "echo Type \"run flash_nfs\" to mount root filesystem over NFS;" \ @@ -205,6 +211,7 @@ CFG_CMD_DHCP | \ CFG_CMD_DIAG | \ CFG_CMD_ELF | \ + CFG_CMD_EEPROM | \ CFG_CMD_I2C | \ CFG_CMD_IRQ | \ CFG_CMD_MII | \ @@ -243,8 +250,9 @@ #define CFG_HZ 1000 /* decrementer freq: 1 ms ticks */ -#define CONFIG_AUTO_COMPLETE 1 /* add autocompletion support */ +#define CONFIG_CMDLINE_EDITING 1 /* add command line history */ #define CONFIG_LOOPW 1 /* enable loopw command */ +#define CONFIG_MX_CYCLIC 1 /* enable mdc/mwc commands */ #define CONFIG_ZERO_BOOTDELAY_CHECK /* check for keypress on bootdelay==0 */ #define CONFIG_VERSION_VARIABLE 1 /* include version env variable */ |