Skip to content

Linux kernel for Kitra710, from RushUp product accelerator, for advanced multimedia and industrial I/O. This kernel has based on Samsung artik710 (branch: A710/v4.1 and A710/v4.4)

License

Notifications You must be signed in to change notification settings

kalpasrl/linux-artik-kitra710

 
 

Repository files navigation

Linux Kernel for ARTIK KITRA710

Contents

  1. Introduction
  2. Build guide
  3. Update guide

1. Introduction

This 'linux-artik' repository is linux kernel source for Kitra710 based on Samsung artik710 SoC produced by RushUp. The kernel in this branch is based on linux-4.1.15 version with changes and integration developed by KALPA SRL.


2. Build guide

In order to easily compile binaries you need Docker since we provide a docker cross-compile-ready environment.

2.1 Launch Docker

Move to the kernel folder ("./linux-artik") and launch:

../Docker/run.sh

2.2 Configure and build the kernel

  • Configure
cd source
make ARCH=arm64 CROSS_COMPILE=aarch64-linux-gnu- -j 4  menuconfig
  • Build
make ARCH=arm64 CROSS_COMPILE=aarch64-linux-gnu- -j 4

2.3 Compile dts

make ARCH=arm64 CROSS_COMPILE=aarch64-linux-gnu- -j 4 dtbs

3. Update Guide

  • Copy compiled binaries into your board.
scp arch/arm64/boot/Image root@{YOUR_BOARD_IP}:/root
scp arch/arm64/boot/dts/nexell/*.dtb root@{YOUR_BOARD_IP}:/root
scp usr/modules.img root@{YOUR_BOARD_IP}:/root
  • On your board
mount -o remount,rw /boot
cp /root/Image /boot
cp /root/*.dtb /boot
dd if=/root/modules.img of=/dev/mmcblk0p2
sync
reboot

About

Linux kernel for Kitra710, from RushUp product accelerator, for advanced multimedia and industrial I/O. This kernel has based on Samsung artik710 (branch: A710/v4.1 and A710/v4.4)

Topics

Resources

License

Stars

Watchers

Forks

Packages

 
 
 

Languages

  • C 95.5%
  • C++ 1.9%
  • Assembly 1.9%
  • Objective-C 0.3%
  • Makefile 0.3%
  • Perl 0.1%