Re: Booting Debian on Pogoplug Pro August 08, 2013 04:46PM |
Registered: 11 years ago Posts: 18 |
Re: Booting Debian on Pogoplug Pro August 08, 2013 06:30PM |
Registered: 13 years ago Posts: 218 |
Re: Booting Debian on Pogoplug Pro August 17, 2013 02:44PM |
Registered: 13 years ago Posts: 218 |
CE>> run load_custom_nand2 boot Loading from device 0: 128MiB 3,3V 8-bit (offset 0xb00000) -- Using 1bit ECC style encoding Image Name: Linux-2.6.32.61-test-1.0 Image Type: ARM Linux Kernel Image (uncompressed) Data Size: 2445288 Bytes = 2.3 MB Load Address: 60008000 Entry Point: 60008000 ## Booting image at 60500000 ... Image Name: Linux-2.6.32.61-test-1.0 Image Type: ARM Linux Kernel Image (uncompressed) Data Size: 2445288 Bytes = 2.3 MB Load Address: 60008000 Entry Point: 60008000 Verifying Checksum ... OK OK Starting kernel ... Uncompressing Linux......................................................................................................................................................... done, booting the kernel.
Re: Booting Debian on Pogoplug Pro August 22, 2013 06:06AM |
Registered: 13 years ago Posts: 218 |
Re: Booting Debian on Pogoplug Pro August 22, 2013 10:53AM |
Registered: 12 years ago Posts: 214 |
Re: Booting Debian on Pogoplug Pro August 22, 2013 12:41PM |
Registered: 13 years ago Posts: 218 |
mk2k
Re: Booting Debian on Pogoplug Pro August 31, 2013 01:05PM |
Re: Booting Debian on Pogoplug Pro August 31, 2013 03:47PM |
Admin Registered: 13 years ago Posts: 19,207 |
Re: Booting Debian on Pogoplug Pro September 01, 2013 12:22AM |
Registered: 12 years ago Posts: 214 |
deb http://ftp.fi.debian.org/debian squeeze main contrib non-free deb http://ftp.debian.org/debian/ squeeze-updates main contrib non-free deb http://security.debian.org/ squeeze/updates main contrib non-free
mk2k
Re: Booting Debian on Pogoplug Pro September 01, 2013 02:25AM |
Ubaid
Re: Booting Debian on Pogoplug Pro September 02, 2013 05:13PM |
Re: Booting Debian on Pogoplug Pro September 02, 2013 07:12PM |
Admin Registered: 13 years ago Posts: 19,207 |
phr34k13
Re: Booting Debian on Pogoplug Pro September 14, 2013 04:06AM |
Re: Booting Debian on Pogoplug Pro September 14, 2013 03:24PM |
Registered: 12 years ago Posts: 15 |
Re: Booting Debian on Pogoplug Pro September 15, 2013 04:03PM |
Admin Registered: 13 years ago Posts: 19,207 |
Re: Booting Debian on Pogoplug Pro September 15, 2013 05:36PM |
Registered: 13 years ago Posts: 218 |
Re: Booting Debian on Pogoplug Pro September 15, 2013 06:31PM |
Registered: 12 years ago Posts: 15 |
Quote
Debian 7.1 wheezy for PogoPlug Pro
Last edited by CEC0D5F1B6AB at 2013-6-22 20:24 Edit
Debian 7.1 uses the lintel of the linux kernel: Linux version 3.1.10
If you are using sata start it with 3.1.10 kernel , then directly use this rootfs to replace the original rootfs, I do not have extra sata hard drive, so I didn't test this (sata)!
If you use Linux-2.6.31.6_SMP_820 kernel, then you need to flash 3.1.10 kernel, and some friends fear flash brick, in fact, there are two nand kernel can put the place
0x500000 and 0xB00000, can put us in a second region kernel, so that is a dual-core
can be used via the following command to clear the core area of 22 (this is wrong. 22 should be the size as mentioned by someone in the post) to be behind the flash into the kernel version (in the native system test)
/ usr / sbin / flash_erase / dev/mtd1 0xB00000 22
/ usr / sbin / nandwrite-p-s 0xB00000 / dev/mtd1 / root / uImage
wait for the write is complete reboot into uboot, I put the related environment variable output in the following
load_nand = nboot 60500000 0 200000
load_nand2 = nboot 60500000 0 800000
load_custom_nand = nboot 60500000 0 500000
load_custom_nand2 = nboot 60500000 0 B00000
boot_custom = run load_custom_nand boot | | run load_custom_nand2 boot
bootcmd = run load_custom_nand2 boot
If you look at the kernel, then run nboot 60500000 0 500000
Then output
CE >> nboot 60500000 0 500000
Loading from device 0: 128MiB 3,3 V 8-bit (offset 0x500000) - Using 1bit ECC encoding Style Image Name: Linux-2.6.31.6_SMP_820 Image Type: ARM Linux Kernel Image (uncompressed) Data Size: 2,345,664 Bytes = 2.2 MB Load Address: 60008000 Entry Point: 60.008 million
CE >> nboot 60500000 0 B00000
Loading from device 0: 128MiB 3,3 V 8-bit (offset 0xb00000)
- Using 1bit ECC encoding Style
Image Name: Linux- 3.1.10
Image Type: ARM Linux Kernel Image (uncompressed)
Data Size: 2,814,536 Bytes = 2.7 MB
Load Address: 60008000
Entry Point: 60,008,000
above the red mark that is selected automatically start the kernel
bootcmd = run load_custom_nand boot // using the first kernel
bootcmd = run load_custom_nand2 boot // using the second core
can be used to set setenv set
next bootargs bootargs = root = / dev/sda1 ubi.mtd = 2,512 rootfstype = ext3 console = ttyS0, 115200 Elevator = cfq mac_adr = 0x00, 0x25, 0x31, 0x00, 0xd4, 0x6f rootwait mem = 128M poweroutage = yes
above is to use / dev/sda1 as rootfs
set after startup with kernel 3.1.10 and the like do u disk rootfs ext3 formatted into the u disk format, and then put the following extract the rootfs to the root directory, and then plug in the pogoplug boot it.
In case you run into any problem, you need to have the spirit to debug/troubleshoot it.
Debian7 info:
Username: root
Password: admin
You can download from:
http://pan.baidu.com/share/link?shareid=129193089&uk=3272170520
Re: Booting Debian on Pogoplug Pro September 16, 2013 12:25AM |
Registered: 12 years ago Posts: 15 |
Re: Booting Debian on Pogoplug Pro September 21, 2013 07:39AM |
Registered: 13 years ago Posts: 218 |
peternguy3n
Re: Booting Debian on Pogoplug Pro October 28, 2013 07:02PM |
Re: Booting Debian on Pogoplug Pro October 30, 2013 11:06AM |
Registered: 13 years ago Posts: 218 |
Re: Booting Debian on Pogoplug Pro November 01, 2013 05:18AM |
Registered: 12 years ago Posts: 214 |
uname -a Linux debian 2.6.31.6_SMP_820 #7 SMP Thu Jun 14 20:31:06 CDT 2012 armv6l GNU/Linux
peternguy3n
Re: Booting Debian on Pogoplug Pro November 01, 2013 03:22PM |
peternguy3n
Re: Booting Debian on Pogoplug Pro November 04, 2013 12:15AM |
Re: Booting Debian on Pogoplug Pro November 04, 2013 04:20AM |
Registered: 13 years ago Posts: 218 |
Re: Booting Debian on Pogoplug Pro November 06, 2013 01:06PM |
Registered: 12 years ago Posts: 214 |
Re: Booting Debian on Pogoplug Pro November 07, 2013 12:39PM |
Registered: 11 years ago Posts: 7 |
Re: Booting Debian on Pogoplug Pro November 07, 2013 02:37PM |
Registered: 13 years ago Posts: 218 |
SCrid2000
Re: Booting Debian on Pogoplug Pro November 09, 2013 06:53PM |
Re: Booting Debian on Pogoplug Pro November 09, 2013 08:26PM |
Registered: 13 years ago Posts: 218 |