User Tools

Site Tools


start:ariag25

This is an old revision of the document!


A PCRE internal error occured. This might be caused by a faulty plugin

====== Getting started with the Aria G25 ====== ===== prepare sd-card ===== * see [[http://www.acmesystems.it/microsd_create|How to create a bootable microSD from binary repositories]] ==== Partition table should look like this ==== <code> Device Boot Start End Blocks Id System /dev/sda1 * 2048 65535 31744 16 Hidden FAT16 /dev/sda2 65536 13737983 6836224 83 Linux /dev/sda3 13737984 15523839 892928 82 Linux swap / Solaris </code> ==== Ext4 parameters (/etc/mke2fs.conf) ==== <code bash> ext4 = { features = has_journal,flex_bg,uninit_bg,dir_nlink auto_64-bit_support = 0 } </code> ==== Create filesystems ==== <code bash> mkfs.vfat /dev/sda1 mkfs.ext4 /dev/sda2 mkswap /dev/sda3 </code> ==== Setup boot-partition ==== <code bash> mount /dev/sda1 /mnt/sda1 cd /mnt/sda1 wget 'http://gentoo.ed-solutions.de/stages/aria25/boot-2013.04.09.tar.bz2' tar -vjxf boot-2013.04.09.tar.bz2 -C . rm boot-2013.04.09.tar.bz2 </code> ==== Get kernel uImage ==== <code bash> </code> ==== Setup root partition ==== <code bash> mount /dev/sda2 /mnt/sda2 cd /mnt/sda2 wget '' tar -vjxf -C . rm </code> ===== install kernel (from aria25 shell)===== * requires: dev-embedded/u-boot-tools <code bash> cd /usr/src/linux mkimage -A arm -O linux -C none -T kernel -a 20008000 -e 20008000 -n linux-2.6 -d arch/arm/boot/zImage uImage cp uImage /boot/ </code>

start/ariag25.1365496042.txt.gz · Last modified: 2013.04.09 - 08:27 by alexander.krause