Rescue System August 26, 2012 11:19AM |
Admin Registered: 14 years ago Posts: 304 |
wget http://download.doozan.com/a10/a10_base-1.3.zip unzip a10_base-1.3.zipinsert flash drive
dmesgfind drive id (sdb, in my case, using a USB SD card reader)
fdisk -l /dev/sdb Disk /dev/sdb: 7948 MB, 7948206080 bytes 245 heads, 62 sectors/track, 1021 cylinders Units = cylinders of 15190 * 512 = 7777280 bytes Sector size (logical/physical): 512 bytes / 512 bytes I/O size (minimum/optimal): 512 bytes / 512 bytes Disk identifier: 0x5d02e879 Device Boot Start End Blocks Id System /dev/sdb1 1 1021 7754464 b W95 FAT32
dd if=a10_base-1.3.img of=/dev/sdb bs=4096 fdisk -lu /dev/sdb Disk /dev/sdb: 7948 MB, 7948206080 bytes 245 heads, 62 sectors/track, 1021 cylinders Units = cylinders of 15190 * 512 = 7777280 bytes Sector size (logical/physical): 512 bytes / 512 bytes I/O size (minimum/optimal): 512 bytes / 512 bytes Disk identifier: 0x5d02e879 Device Boot Start End Blocks Id System /dev/sdb1 2048 63489 30721 b W95 FAT32
ssh root@192.168.0.2 (use the ip address that you found here)
[root@rescue ~]# uname -a Linux rescue 3.0.36 #1 PREEMPT Fri Aug 3 22:30:56 EDT 2012 armv7l GNU/Linux
Building the Rescue System August 26, 2012 11:20AM |
Admin Registered: 14 years ago Posts: 304 |
cd ~/src wget http://buildroot.uclibc.org/downloads/buildroot-2012.05.tar.gz tar -xzvf buildroot-2012.05.tar.gz cd buildroot-2012.05 git clone https://github.com/doozan/a10-rescue.git custom cd custom git checkout v1.3 cd .. cp custom/buildroot-config .config make sudo custom/make_image.sh
Re: Rescue System August 26, 2012 04:07PM |
Registered: 12 years ago Posts: 378 |
Andrew
Re: Rescue System August 26, 2012 05:39PM |
Re: Rescue System August 29, 2012 12:22AM |
Registered: 12 years ago Posts: 1 |
Re: Rescue System August 29, 2012 07:34AM |
Admin Registered: 14 years ago Posts: 304 |
Dave
Re: Rescue System October 20, 2012 11:15AM |
Re: Rescue System October 29, 2012 05:34PM |
Registered: 12 years ago Posts: 3 |
Re: Rescue System October 30, 2012 04:28PM |
Registered: 12 years ago Posts: 4 |
Re: Rescue System December 14, 2012 08:45PM |
Admin Registered: 13 years ago Posts: 19,106 |
root@PogoV4:/localdisk/a10# fdisk -l Disk /dev/sda: 8004 MB, 8004304896 bytes 19 heads, 5 sectors/track, 164562 cylinders, total 15633408 sectors Units = sectors of 1 * 512 = 512 bytes Sector size (logical/physical): 512 bytes / 512 bytes I/O size (minimum/optimal): 512 bytes / 512 bytes Disk identifier: 0xf43e6052 Device Boot Start End Blocks Id System /dev/sda1 * 2048 15632383 7815168 83 Linux Disk /dev/mmcblk0: 7948 MB, 7948206080 bytes 45 heads, 2 sectors/track, 172487 cylinders, total 15523840 sectors Units = sectors of 1 * 512 = 512 bytes Sector size (logical/physical): 512 bytes / 512 bytes I/O size (minimum/optimal): 512 bytes / 512 bytes Disk identifier: 0x35e3e291 Device Boot Start End Blocks Id System /dev/mmcblk0p1 2048 63489 30721 b W95 FAT32 root@PogoV4:/localdisk/a10# dd if=a10_base-1.3.img of=/dev/mmcblk0 bs=4096 8192+0 records in 8192+0 records out 33554432 bytes (34 MB) copied, 5.85533 s, 5.7 MB/s root@PogoV4:/localdisk/a10# fdisk -lu /dev/mmcblk0 Disk /dev/mmcblk0: 7948 MB, 7948206080 bytes 45 heads, 2 sectors/track, 172487 cylinders, total 15523840 sectors Units = sectors of 1 * 512 = 512 bytes Sector size (logical/physical): 512 bytes / 512 bytes I/O size (minimum/optimal): 512 bytes / 512 bytes Disk identifier: 0x35e3e291 Device Boot Start End Blocks Id System /dev/mmcblk0p1 2048 63489 30721 b W95 FAT32
# Configure Loopback auto lo iface lo inet loopback #auto eth0 #iface eth0 inet dhcp # Uncomment and adjust for your own wifi settings auto wlan0 iface wlan0 inet dhcp # # WPA/WPA2 security, uncomment the next two lines and then edit wpa_supplicant.conf pre-up wpa_supplicant -B -Dwext -i wlan0 -c/etc/wpa_supplicant.conf post-down killall -q wpa_supplicant # # WEP security, uncomment and edit the next three lines #wireless-mode managed #wireless-essid mynetworkname #wireless-key mywepkey # # Open or no security, uncomment and edit the next two lines #wireless-mode managed #wireless-essid mynetworkname
ctrl_interface=/var/run/wpa_supplicant # Uncomment the following lines if you're using WPA supplicant network={ ssid="tldn" psk=my_password_with_no_quote_here }
Re: Rescue System December 17, 2012 02:40AM |
Admin Registered: 13 years ago Posts: 19,106 |
Re: Rescue System January 11, 2013 12:14AM |
Registered: 11 years ago Posts: 6 |
Re: Rescue System January 12, 2013 01:04AM |
Registered: 12 years ago Posts: 24 |
Re: Rescue System January 13, 2013 09:52AM |
Registered: 11 years ago Posts: 6 |
Re: Rescue System January 15, 2013 04:52PM |
Registered: 11 years ago Posts: 6 |
Re: Rescue System January 16, 2013 04:24PM |
Registered: 12 years ago Posts: 24 |
Quote
dagoo
I have tried some uboot mmc with no success..
Re: Rescue System January 17, 2013 11:39AM |
Registered: 12 years ago Posts: 378 |
Quote
If here's some moderator - dagoo's concerns should really be split into another thread please.
Rescue System - Protab 2 IPS January 23, 2013 08:05AM |
Registered: 11 years ago Posts: 8 |
Allwinner
Re: Rescue System January 23, 2013 10:05AM |
Re: Rescue System January 23, 2013 11:11AM |
Registered: 11 years ago Posts: 8 |
Re: Rescue System January 23, 2013 11:26AM |
Registered: 12 years ago Posts: 24 |
Re: Rescue System January 23, 2013 12:50PM |
Registered: 12 years ago Posts: 378 |
Rescue System - Protab 2 IPS9 January 23, 2013 05:20PM |
Registered: 11 years ago Posts: 8 |
Re: Rescue System January 24, 2013 04:45AM |
Registered: 12 years ago Posts: 3 |
Rescue System - Protab 2 IPS9 (V1.0) January 24, 2013 05:35AM |
Registered: 11 years ago Posts: 8 |
Nargajuna
Re: Rescue System March 10, 2013 12:56PM |
Re: Rescue System June 08, 2013 10:22PM |
Registered: 14 years ago Posts: 406 |
Re: Rescue System June 09, 2013 11:32AM |
Registered: 11 years ago Posts: 149 |
louigi600
Re: Rescue System June 26, 2013 07:29AM |
louigi600
Re: Rescue System June 28, 2013 03:05AM |
Quote
This is a bootable image for the A10 systems. When this image is written to an empty flash card, it will use the first 32MB of the card for uBoot and a 31MB FAT32 partition (I'll refer to this as the sysconfig partition).