# Toolchain cd /opt git clone git://git.buildroot.net/buildroot cd buildroot make xconfig # ARM ARM926T + VFPv2 make # Das U-Boot - Binaries http://www.downloadsnewit.co.uk/u-boot/ # Das U-Boot - Build git clone git://git.denx.de/u-boot-marvell.git cd u-boot-marvell git clone git://git.denx.de/u-boot.git cd u-boot export CROSS_COMPILE=/opt/buildroot/output/host/usr/bin/arm-buildroot-linux-uclibcgnueabi- make sheevaplug_config make u-boot.kwb sudo cp tools/mkimage /usr/local/bin # Das U-Boot - Write setenv serverip 192.168.0.130 setenv ipaddr 192.168.0.180 tftp 0x6400000 /arm/u-boot.kwb nand erase 0x0 0x60000 nand write 0x6400000 0x0 0x60000 reset # Das U-Boot - Reset environment env default -f -a setenv ethaddr 00:50:43:01:6e:2c saveenv # OpenOCD openocd -f /usr/share/openocd/scripts/board/sheevaplug.cfg telnet localhost 4444 halt # OpenOCD - Load Das U-Boot sheevaplug_init load_image /home/djc/u-boot/u-boot resume 0x00600000