• Home
  • Annotate
  • current directory
Name Date Size #Lines LOC

..18-Apr-2025-

patches/18-Apr-2025-

readme.txt A D18-Apr-2025840 3728

readme.txt

1Sheevaplug
2==========
3
4Once the build process is finished you will have the following files
5in the output/images/ directory:
6
7- u-boot.kwb
8- uImage.kirkwood-sheevaplug
9- rootfs.jffs2
10
11Copy these to a TFTP server, connect ethernet and mini-USB cable and
12power up the board. Stop the board in U-Boot and update U-Boot by
13executing:
14
15setenv serverip <ipaddress-of-tftp-server>
16setenv bootfile <path/to/u-boot.kwb>
17bootp
18nand erase 0x0 0x80000
19nand write $fileaddr 0x0 0x80000
20reset
21
22Once the new U-Boot boots up, stop it again and update Linux kernel
23and rootfs by:
24
25setenv serverip <ipaddress-of-tftp-server>
26setenv bootfile <path/to/uImage.kirkwood-sheevaplug>
27bootp
28nand erase.part kernel
29nand write $fileaddr kernel 0x400000
30
31setenv bootfile <path/to/rootfs.jffs2>
32bootp
33nand erase.part rootfs
34nand write $fileaddr rootfs $filesize
35
36reset
37