How to install Lede on a Pogo E02:
1. Upgrade the Uboot to most recent bodhi version (should work >= uboot.2014.07-tld-1)
download and place the lede-kirkwood-pogo_e02-initramfs-uImage on a USB flash drive
formatted with FAT32 and insert it in the device
That file is a LEDE system image that runs from RAM, and you will only use that
to do a sysupgrade as normal with lede-kirkwood-pogo_e02-squashfs-sysupgrade.tar.
It will reformat flash if needed, deal with any bad blocks and so on.
Put this stick into Pogo
then from uboot write set the new parameters
2. Set the new parameters
3. Run the following code for starting the process:
Pogo will reboot and start from nand with Lede :)
enjoy joerg_999
1. Upgrade the Uboot to most recent bodhi version (should work >= uboot.2014.07-tld-1)
download and place the lede-kirkwood-pogo_e02-initramfs-uImage on a USB flash drive
formatted with FAT32 and insert it in the device
https://downloads.lede-project.org/releases/17.01.4/targets/kirkwood/generic/lede-17.01.4-kirkwood-pogo_e02-initramfs-uImage
That file is a LEDE system image that runs from RAM, and you will only use that
to do a sysupgrade as normal with lede-kirkwood-pogo_e02-squashfs-sysupgrade.tar.
It will reformat flash if needed, deal with any bad blocks and so on.
Put this stick into Pogo
then from uboot write set the new parameters
2. Set the new parameters
# set envs for Pogo E02:
setenv mtdparts mtdparts=orion_nand:0xe0000@0x0(uboot),0x20000@0xe0000(uboot_env),0x100000@0x100000(second_stage_uboot),-@0x200000(ubi)
setenv bootargs_lede ' '
setenv bootcmd 'run bootargs_lede; ubi part ubi; ubi read 0x800000 kernel; bootm 0x800000'
setenv console console=ttyS0,115200
setenv ethaddr 00:00:00:00:00 # put your mac here
setenv mtdids nand0=orion_nand
setenv bootargs ${console} ${mtdparts}
saveenv
# when you add the new partition layout you need to erase the ubi nand first before new install:
nand erase.part ubi
3. Run the following code for starting the process:
# Lede usb reset; fatload usb 0 0x800000 lede-kirkwood-pogo_e02-initramfs-uImage; bootm 0x800000
opkg update opkg install ca-bundle ca-certificates libustream-openssl ubi-utils kmod-mtd-rw4. logging to the ssh Pogo session and put the following commands to the commandline:
cd /tmp wget https://downloads.lede-project.org/releases/17.01.4/targets/kirkwood/generic/lede-17.01.4-kirkwood-pogo_e02-squashfs-sysupgrade.tar sysupgrade lede-17.01.4-kirkwood-pogo_e02-squashfs-sysupgrade.tar
Pogo will reboot and start from nand with Lede :)
enjoy joerg_999