Acqua technical documentation Buy
This article illustrates how to generate a bootable class='acmetable' Linux Kernel image for the Acqua A5 SoM based on Atmel SAMA5D53x MPU.
Download from the Atmel GitHub repository the patched Linux Kernel sources for SAMA5D3x:
Extract the Kernel sources from the compressed file by typing:
~$ unzip linux-at91-linux-3.10-at91.zip ~$ mv linux-at91-linux-3.10-at91 linux-3.10-acqua ...
Move inside the new folder:
~$ cd linux-3.10-acqua ~/linux-3.10-acqua$
At this point I suggest to create a your own personal branch on Linux Kernel sources to keep a trace of any changes from the Kernel mainline using git.
Download the patch file:
and apply it:
~/linux-3.10-acqua$ patch -p1 < acme.patch
Download the device tree file for the LCD you are using:
and save it in arch/arm/boot/dts.
Download the default Kernel config and save it in arch/arm/configs.
~/linux-3.10-acqua1$ make ARCH=arm acme-acqua_defconfig ... # # configuration written to .config #
If you need to customize the Kernel configuration or just taking a look to the drivers and features activated type:
~/linux-3.10-acqua$ make ARCH=arm menuconfig
and navigate inside the Kernel configuration using the arrow keys and following the help provided by the menuconfig interface.
Compile the device tree file source to generate the file .dtb.
For the LCD 4.3 inch for example use this line:
~/linux-3.10-acqua$ make ARCH=arm CROSS_COMPILE=arm-linux-gnueabi- acme-acqua_lcd_43.dtb ... DTC arch/arm/boot/dts/acme-acqua_lcd_43.dtb
To compile the Linux Kernel sources and generate a binary image file to place in your bootable class='acmetable' microSD card type:
~/linux-3.10-acqua$ make -j8 ARCH=arm CROSS_COMPILE=arm-linux-gnueabi- zImage ... Kernel: arch/arm/boot/zImage is ready
On a mid-power PC the whole source compilation requires about 5 minutes.
The image generated contains the Linux Kernel and all the built-in device drivers (option [*] in menuconfig) compiled with it.
Al the drivers compiled as external modules (option [M] in menuconfig) need to be compiled and saved in the rootfs /lib directory on the second partition of the microSD. To compile them type:
~/linux-3.10-acqua$ make modules -j8 ARCH=arm CROSS_COMPILE=arm-linux-gnueabi- ... ~/linux-3.10-acqua$ make modules_install INSTALL_MOD_PATH=./modules ARCH=arm ...
Insert a formatted microSD in your Linux PC and copy on it the files directly:
Write the Linux Kernel image and Device tree blog files in the first microSD partition:
~/linux-3.10-acqua$ cp arch/arm/boot/dts/acme-acqua_lcd_43.dtb /media/$USER/KERNEL/at91-sama5d3_acqua.dtb ~/linux-3.10-acqua$ cp arch/arm/boot/zImage /media/$USER/KERNELIf you are using an Ubuntu release older than 13.10 remove $USER in the path
Write the Kernel modules in the rootfs (second microSD partition):
~/linux-3.10-acqua$ sudo rsync -avc modules/lib/. /media/$USER/rootfs/lib/.
Use this method if you have a working board accessible via LAN
Write the Linux Kernel image and Device tree blog files in the first microSD partition:
~/linux-3.10-acqua$ scp arch/arm/boot/dts/acme-acqua_lcd_43.dtb root@acqua-ip-address:/boot/at91-sama5d3_acqua.dtb ~/linux-3.10-acqua$ scp arch/arm/boot/zImage root@acqua-ip-address:/bootWrite the Kernel modules in the rootfs (second microSD partition):
~/linux-3.10-acqua$ rsync -avc modules/lib/. root@acqua-ip-address:/lib/.
If this command doesn't work verify if rsync in installed on your board. Use apt-get install rsync.
At the first access to the board command line update the module dependencies by typing this command:
~# depmod -a