50c50 < #define CONFIG_BOOTDELAY 5 /* autoboot after 5 seconds */ --- > #define CONFIG_BOOTDELAY 1 /* autoboot after 1 second */ 73,74c73,74 < "rootpath=/opt/eldk/ppc_8xx\0" \ < "bootfile=/tftpboot/TQM860L/uImage\0" \ --- > "rootpath=/eldk/ppc_8xx\0" \ > "bootfile=/tftpboot/pImage\0" \ 98c98,112 < #define CONFIG_RTC_MPC8xx /* use internal RTC of MPC8xx */ --- > #define CONFIG_RTC_DS1307 /* Use ds1307 as realtime clock */ > > #define CONFIG_SOFT_I2C /* Include I2C functionality */ > //#define CONFIG_HARD_I2C > > #define CFG_I2C_SPEED 100000 /* I want to run at 100 kHz */ > #define CFG_I2C_SLAVE 0 /* My mpc8xx should be the i2c master */ > > //#define I2C_TRISTATE NULL /* mpc8xx has open drain output */ > //#define I2C_ACTIVE NULL /* mpc8xx has open drain output */ > //#define I2C_READ some_macro /* if you want this function defined */ > //#define I2C_SDA some_macro /* if you want this function defined */ > //#define I2C_SCL some_macro /* if you want this function defined */ > //#define I2C_DELAY 0.0000025 /* I want 100 kHz, so this is the > // delay in seconds that I think is required */ 103a118 > CFG_CMD_I2C | \