Uboot install on PogoplugPro V3 question January 19, 2021 10:48PM |
Registered: 4 years ago Posts: 51 |
Quote
dev: size erasesize name
mtd0: 00e00000 00020000 "boot"
mtd1: 07200000 00020000 "data"
Quote
root@PogoplugPro:/tmp# cat /proc/mtd
dev: size erasesize name
mtd0: 08000000 00020000 "NAND 128MiB 3,3V 8-bit"
mtd1: 00e00000 00020000 "boot"
mtd2: 07200000 00020000 "rootfs"
Re: Uboot install on PogoplugPro V3 question January 20, 2021 12:11AM |
Admin Registered: 13 years ago Posts: 19,092 |
Quote
root@PogoplugPro:/tmp# cat /proc/mtd
> dev: size erasesize name
> mtd0: 08000000 00020000 "NAND 128MiB 3,3V 8-bit"
> mtd1: 00e00000 00020000 "boot"
> mtd2: 07200000 00020000 "rootfs"
>
Re: Uboot install on PogoplugPro V3 question January 20, 2021 01:23PM |
Registered: 4 years ago Posts: 51 |
Quote
bootcmd_exec=if run load_uimage; then if run load_initrd; then if run load_dtb; then bootm 0x60500000 0x60e00000 0x62c00000; else bootm 0x60500000 0x60e00000; fi; else if run load_dtb; then bootm 0x60500000 - 0x62c00000; else bootm 0x60500000; fi; fi; else run bootcmd_stock; fi