Name Date Size #Lines LOC

..--

readme.txtH A D05-Jun-20251,008 2617

readme.txt

1The bootloader is no longer buildable in the latest Freescale/NXP tree or
2upstream.  As such, retrieve the "Image: SDK V1.2 e500v2 Binary ISO" from
3NXP downloads and follow the release notes for reflashing.
4
5For programming the kernel and rootfs created by buildroot into the flash.
6The fast way is to tftp transfer the files via one of the network interfaces.
7Make sure your devkit has ipaddr and serverip defined to reach your tftp
8server.
9
10(Assuming the default u-boot env from NXP)
111. Program the DTB to NOR flash
12
13    => setenv dtbfile p1025twr.dtb
14    => run dtbflash
15
162. Program the kernel and rootfs to NOR flash (reusing orignal rootfs
17   NOR location, as the kernel location is to small)
18
19    => tftpboot $loadaddr uImage; protect off 0xeeb80000 +$filesize; erase 0xeeb80000 +$filesize; cp.b $loadaddr 0xeeb80000 $filesize; protect on 0xeeb80000 +$filesize; cmp.b $loadaddr 0xefa80000 $filesize
20
213. Booting your new system
22
23    => bootm 0xeeb80000 - 0xefe80000
24
25    You can login with user "root".
26