Re: how to backup/restore your NAND patitions and full device August 22, 2016 11:21PM |
Admin Registered: 13 years ago Posts: 19,102 |
Re: how to backup/restore your NAND patitions and full device August 23, 2016 02:03AM |
Registered: 8 years ago Posts: 102 |
Re: how to backup/restore your NAND patitions and full device August 23, 2016 02:47AM |
Admin Registered: 13 years ago Posts: 19,102 |
Re: how to backup/restore your NAND patitions and full device August 23, 2016 02:59AM |
Admin Registered: 13 years ago Posts: 19,102 |
Quote
Booting Debian on Pogoplug
How to set up U-Boot for booting in multiple drives configuration
Backup and Restore NAND mtds
UART Booting HowTo for Selected Kirkwood Devices
Migrating from Arch to Debian?
How to boot new Debian rootfs using stock u-boot tftp
Re: how to backup/restore your NAND patitions and full device August 23, 2016 09:35AM |
Registered: 8 years ago Posts: 102 |
Re: how to backup/restore your NAND patitions and full device August 23, 2016 11:22AM |
Registered: 8 years ago Posts: 102 |
Re: how to backup/restore your NAND patitions and full device August 24, 2016 02:37AM |
Admin Registered: 13 years ago Posts: 19,102 |
Quote
B. How to restore NAND in Serial Console:
Re: how to backup/restore your NAND patitions and full device August 24, 2016 10:43AM |
Registered: 8 years ago Posts: 102 |
Re: how to backup/restore your NAND patitions and full device August 24, 2016 11:52PM |
Registered: 8 years ago Posts: 102 |
Re: how to backup/restore your NAND patitions and full device August 25, 2016 02:17AM |
Admin Registered: 13 years ago Posts: 19,102 |
Re: how to backup/restore your NAND patitions and full device August 25, 2016 02:30AM |
Registered: 8 years ago Posts: 102 |
Re: how to backup/restore your NAND patitions and full device August 25, 2016 03:00AM |
Admin Registered: 13 years ago Posts: 19,102 |
Re: how to backup/restore your NAND patitions and full device August 25, 2016 01:09PM |
Registered: 8 years ago Posts: 102 |
Re: how to backup/restore your NAND patitions and full device August 25, 2016 02:44PM |
Registered: 8 years ago Posts: 102 |
Re: how to backup/restore your NAND patitions and full device August 25, 2016 03:02PM |
Registered: 9 years ago Posts: 463 |
Re: how to backup/restore your NAND patitions and full device August 25, 2016 03:20PM |
Admin Registered: 13 years ago Posts: 19,102 |
Re: how to backup/restore your NAND patitions and full device August 25, 2016 03:53PM |
Registered: 8 years ago Posts: 102 |
Re: how to backup/restore your NAND patitions and full device August 25, 2016 04:48PM |
Admin Registered: 13 years ago Posts: 19,102 |
bootSee if you can boot into stock.
Re: how to backup/restore your NAND patitions and full device August 26, 2016 01:50PM |
Registered: 8 years ago Posts: 102 |
Re: how to backup/restore your NAND patitions and full device August 26, 2016 05:35PM |
Admin Registered: 13 years ago Posts: 19,102 |
###/etc/init.d/hbmgr.sh start /usr/sbin/dropbear
Re: how to backup/restore your NAND patitions and full device August 26, 2016 06:27PM |
Registered: 8 years ago Posts: 102 |
Re: how to backup/restore your NAND patitions and full device August 26, 2016 07:24PM |
Admin Registered: 13 years ago Posts: 19,102 |
Re: how to backup/restore your NAND patitions and full device August 27, 2016 08:23PM |
Registered: 8 years ago Posts: 102 |
Re: how to backup/restore your NAND patitions and full device August 27, 2016 11:30PM |
Admin Registered: 13 years ago Posts: 19,102 |
Re: how to backup/restore your NAND patitions and full device August 28, 2016 05:42PM |
Registered: 8 years ago Posts: 102 |
Re: how to backup/restore your NAND patitions and full device August 28, 2016 05:49PM |
Registered: 8 years ago Posts: 102 |
Re: how to backup/restore your NAND patitions and full device August 28, 2016 11:26PM |
Admin Registered: 13 years ago Posts: 19,102 |
Quote
Rootfs instruction
4. Create uImage with embedded DTB for booting with older u-boots (2012 or earlier). Skip this step if you have installed the latest U-Boot for Kirkwood (or are installing this u-boot at the same time).
Please replace kirkwood-goflexnet.dtb below with the correct DTB name for your box (see the folder /media/sdb1/boot/dts).
Generate the uImage with DTB embedded inside:
cd /media/sdb1/boot
cp -a zImage-4.4.0-kirkwood-tld-1 zImage.fdt
cat dts/kirkwood-goflexnet.dtb >> zImage.fdt
mv uImage uImage.orig
mkimage -A arm -O linux -T kernel -C none -a 0x00008000 -e 0x00008000 -n Linux-4.4.0-kirkwood-tld-1 -d zImage.fdt uImage
sync
cat dts/kirkwood-pogoplug_v4.dtb >> zImage.fdt
cd /boot cp -a uImage.orig uImage cp -a zImage-4.4.0-kirkwood-tld-1 zImage.fdt cat dts/kirkwood-pogoplug_v4.dtb >> zImage.fdt mkimage -A arm -O linux -T kernel -C none -a 0x00008000 -e 0x00008000 -n Linux-4.4.0-kirkwood-tld-1 -d zImage.fdt uImage sync
sync shutdown -h now
myinfoThis should show that your system is a Pogoplug V4, your IP address, your Linux version, and your boot command.
sync shutdown -h nowThe LED light will turn off after the system power was off. Wait a couple of seconds. This is when it's safe to remove the USB rootfs if you want to make a backup.
Re: how to backup/restore your NAND patitions and full device August 29, 2016 11:07AM |
Registered: 8 years ago Posts: 102 |
Re: how to backup/restore your NAND patitions and full device August 30, 2016 12:10AM |
Admin Registered: 13 years ago Posts: 19,102 |
cd /boot cp -a uImage.orig uImage
cat /etc/fstab mount
Re: how to backup/restore your NAND patitions and full device August 30, 2016 01:31PM |
Registered: 8 years ago Posts: 102 |