A13 SOM Kernel 3.4.90 Building Description
A13 SOM Kernel 3.4.90 Building Description
Start
2048
34816
End
34815
7774207
Blocks
16384
3869696
Id System
83 Linux
83 Linux
7. w
write changes to sd card
now we have to format the file system on the card:
the first partition should be vfat as this is FS which the Allwinner bootloader
understands
# mkfs.vfat /dev/sdX1
the second should be normal Linux EXT3 FS
# mkfs.ext3 /dev/sdX2
5. Write the Uboot and sunxi-spl.bin
------------------------------------You should be in /home/user/a13-micro-SOM-kernel_3.4# directory
Note that you have to write u-boot-sunxi-with-spl.bin in /dev/sdX (not sdX1 or s
dX2)
# dd if=u-boot-sunxi/u-boot-sunxi-with-spl.bin of=/dev/sdX bs=1024 seek=8
6. Write kernel uImage you build to the SD-card
----------------------------------------------You should be in the directory below
/home/user/a13-micro-SOM-kernel_3.4# directory
# mkdir /mnt/sd
# mount /dev/sdX1 /mnt/sd
copy the Kernel uImage to root directory in partition 1
# cp linux-sunxi/arch/arm/boot/uImage /mnt/sd
7. Write script.bin file
------------------------script.bin is a file with very important configuration parameters like port GPIO
assignments, DDR memory parameters, Video resolution etc,
download the script.bin using wget command
# wget https://drive.google.com/file/d/0B-bAEPML8fwlX2txWjFfNTJCQ3c/edit?usp=sha
ring
# cp script.bin /mnt/sd
# sync
# umount /dev/sdX1
8. Debian rootfs
---------------The Linux Kernel and Uboot are ready, now we have need from Linux distribution r
ootfs.
Basically the only difference between the different Linux distributions is the r
ootfs, so if you put Debian rootfs you will have Debian, if you put Ubuntu rootf
s it will be Ubuntu etc.
How to build one is a long topic, the good thing is that there are many already
pre-built so we can just download one and use.
exit the kernel directory
# cd ..
You should be in the directory below
# /home/user/a13-micro-SOM-kernel_3.4
download debian rootfs - a13_micro_SOM_debian_FS.tgz using wget command
# wget https://drive.google.com/file/d/0B-bAEPML8fwlRzM1M1hfSjNoM0U/edit?usp=sha
ring
mount your sd card EXT3 FS partition:
# mount /dev/sdX2 /mnt/sd
and unarchive the rootfs
# tar xzvf a13_micro_SOM_debian_FS.tgz -C /mnt/sd
# ls /mnt/sd
the right result should be:
bin dev home lost+found mnt proc run selinux sys usr
boot etc lib media
opt root sbin srv
tmp var
Now you have to replace the new generated kernel modules from /home/user/a13-mic
ro-SOM-kernel_3.4linux-sunxi/out/lib/modules/ to the new debian file system
# rm -rf /mnt/sd/lib/modules/*
# cp -rfv linux-sunxi/out/lib/modules/3.x.xx+/ /mnt/sd/lib/modules/
where x.xx is the kernel version
in our case:
# cp -rfv linux-sunxi/out/lib/modules/3.4.90+/ /mnt/sd/lib/modules/
replace /lib/firmware folder with the generated /linux-sunxi/out/firmware
#rm -rf /mnt/sd/lib/firmware/
#cp -rfv linux-sunxi/out/lib/firmware/ /mnt/sd/lib/
# sync
# umount /mnt/sdX2
at this point you have Debian on your SD card second partition and
you have an SD card ready to boot debian on A13-OLinuXino-Micro/SOM
Connect USB-SERIAL-CABLE-F to UEXT Tx.Rx and GND, or connect a HDMI screen. Put
the SD-card in A13-OLinuXino-Micro/SOM and apply 6-16V power, you should see Ubo
ot and then Kernel messages on the console
default username/password is : root / olimex