README.lynxkdi (1f4bb37d6bcae59b18a2438f3cdca6545a831ab5) | README.lynxkdi (6d0f6bcf337c5261c08fabe12982178c2c489d76) |
---|---|
1 LYNX KDI SUPPORT 2 3 Last Update: July 20, 2003 4======================================================================= 5 6This file describes support for LynuxWorks KDI within U-Boot. Support 7is enabled by defining CONFIG_LYNXKDI. 8 --- 25 unchanged lines hidden (view full) --- 34 35MPC8260ADS 36=========== 37The default LynxOS and BlueCat implementations require some 38modifications to the config file. 39 40Edit include/configs/MPC8260ADS.h to use the following: 41 | 1 LYNX KDI SUPPORT 2 3 Last Update: July 20, 2003 4======================================================================= 5 6This file describes support for LynuxWorks KDI within U-Boot. Support 7is enabled by defining CONFIG_LYNXKDI. 8 --- 25 unchanged lines hidden (view full) --- 34 35MPC8260ADS 36=========== 37The default LynxOS and BlueCat implementations require some 38modifications to the config file. 39 40Edit include/configs/MPC8260ADS.h to use the following: 41 |
42#define CFG_IMMR 0xFA200000 43#define CFG_BCSR 0xFA100000 44#define CFG_BR1_PRELIM 0xFA101801 | 42#define CONFIG_SYS_IMMR 0xFA200000 43#define CONFIG_SYS_BCSR 0xFA100000 44#define CONFIG_SYS_BR1_PRELIM 0xFA101801 |
45 46When creating a LynxOS or BlueCat u-boot image using mkimage, 47you must specify the following: 48 49Both: -A ppc -O lynxos -T kernel -C none 50LynxOS: -a 0x00004000 -e 0x00004020 51BlueCat: -a 0x00500000 -e 0x00507000 52 53To pass the MAC address to BlueCat you should define the 54"fcc2_ether_addr" parameter in the "bootargs" environment 55variable. E.g.: 56 57==> setenv bootargs fcc2_ether_addr=00:11:22:33:44:55:66 | 45 46When creating a LynxOS or BlueCat u-boot image using mkimage, 47you must specify the following: 48 49Both: -A ppc -O lynxos -T kernel -C none 50LynxOS: -a 0x00004000 -e 0x00004020 51BlueCat: -a 0x00500000 -e 0x00507000 52 53To pass the MAC address to BlueCat you should define the 54"fcc2_ether_addr" parameter in the "bootargs" environment 55variable. E.g.: 56 57==> setenv bootargs fcc2_ether_addr=00:11:22:33:44:55:66 |