We use cookies to provide our visitors with an optimal site experience. View our privacy notice and cookie notice to learn more about how we use cookies and how to manage your settings. By proceeding on our website you consent to the use of cookies.
...
This
...
is
...
a
...
page
...
about
...
Samsung's
...
ARTIK
...
10
...
Kit.
...
hide-comments |
---|
...
Table of Contents |
---|
...
|
...
|
...
|
...
|
Availability
Boards:
ARTIK 10 at Digi-Key
Basic Requirements
- Running a recent supported release of Debian, Fedora or Ubuntu on a x86 64bit based PC; without OS Virtualization Software.
- Many of the listed commands assume /bin/bash as the default shell.
- ARM Cross Compiler – Linaro: https://www.linaro.org
...
- Linaro
...
- Toolchain
...
- Binaries:
...
...
- Bootloader
- Das U-Boot
...
- – the
...
- Universal
...
- Boot
...
- Loader:
...
...
- Source:
...
...
- Linux
...
- Kernel
...
- Linus's
...
- Mainline
...
- tree:
...
...
- ARM
...
- based
...
- rootfs
...
- Debian:
...
...
- Ubuntu:
...
...
ARM Cross Compiler:
...
GCC
...
This
...
is
...
a
...
pre-built
...
(64bit)
...
version
...
of
...
GCC
...
that
...
runs
...
on
...
generic
...
linux,
...
sorry
...
(32bit)
...
x86
...
users,
...
it's
...
time
...
to
...
upgrade...
...
Download/Extract:
...
Code Block | ||||||
---|---|---|---|---|---|---|
| =
| }|||||
wget -c https://releases.linaro.org/components/toolchain/binaries/4.9-2017.01/arm-linux-gnueabihf/gcc-linaro-4.9.4-2017.01-x86_64_arm-linux-gnueabihf.tar.xz
tar xf gcc-linaro-4.9.4-2017.01-x86_64_arm-linux-gnueabihf.tar.xz
export CC=`pwd`/gcc-linaro-4.9.4-2017.01-x86_64_arm-linux-gnueabihf/bin/arm-linux-gnueabihf-
{code}
|
Test
...
Cross
...
Compiler:
...
Code Block | ||||||
---|---|---|---|---|---|---|
| =
| }|||||
${CC}gcc --version
{code}
{code:title=Test Output:} |
Code Block | ||
---|---|---|
| ||
arm-linux-gnueabihf-gcc (Linaro GCC 4.9-2017.01) 4.9.4
Copyright (C) 2015 Free Software Foundation, Inc.
This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
{code}
h2. |
Bootloader:
...
U-Boot
...
Das
...
U-Boot
...
– the
...
Universal
...
Boot
...
Loader:
...
http://www.denx.de/wiki/U-Boot
...
eewiki.net
...
patch
...
archive:
...
https://github.com/eewiki/u-boot-patches
...
Download:
...
Code Block | ||||||
---|---|---|---|---|---|---|
| =
| }|||||
git clone -b v2012.07 https://github.com/u-boot/u-boot --depth=1
cd u-boot/
{code}
|
Patches:
...
Code Block | ||||||
---|---|---|---|---|---|---|
| =
| }|||||
git pull --no-edit https://github.com/rcn-ee/u-boot-artik artik-exynos/v2012.07
wget -c https://github.com/eewiki/u-boot-patches/raw/master/artik-2012.07/0001-artik10-fixes.patch
patch -p1 < 0001-artik10-fixes.patch
{code}
|
Configure
...
and
...
Build:
...
Code Block | ||||||
---|---|---|---|---|---|---|
| =
| }|||||
make ARCH=arm CROSS_COMPILE=${CC} distclean
make ARCH=arm CROSS_COMPILE=${CC} artik10_config
make ARCH=arm CROSS_COMPILE=${CC}
{code}
h2. Linux Kernel
This script will build the kernel, modules, device tree binaries and copy them to the deploy directory.
Download:
{code:title=user@localhost:~$} |
Linux Kernel
This script will build the kernel, modules, device tree binaries and copy them to the deploy directory.
Download:
Code Block | ||
---|---|---|
| ||
git clone https://github.com/RobertCNelson/armv7-lpae-multiplatform
cd armv7-lpae-multiplatform/
{code}
|
For
...
v4.9.x
...
(Longterm
...
4.9.x):
...
Code Block | ||||||
---|---|---|---|---|---|---|
| =
| }|||||
git checkout origin/v4.9.x -b tmp
{code}
|
For
...
v4.10.x
...
(Stable):
...
Code Block | ||||||
---|---|---|---|---|---|---|
| =
| }|||||
git checkout origin/v4.10.x -b tmp
{code}
|
For
...
v4.11.x
...
(Prepatch):
...
Code Block | ||||||
---|---|---|---|---|---|---|
| =
| }|||||
git checkout origin/v4.11.x -b tmp
{code}
|
Build:
...
Code Block | ||||||
---|---|---|---|---|---|---|
| =
| }|||||
./build_kernel.sh {code} h2. Root File System h3. Debian 10 || User || Password || | debian | temppwd | | root | root | Download: {code:title=user@localhost:~$}.sh |
Root File System
Debian 10
User | Password |
---|---|
debian | temppwd |
root | root |
Download:
Code Block | ||
---|---|---|
| ||
wget -c https://rcn-ee.com/rootfs/eewiki/minfs/debian-10.4-minimal-armhf-2020-05-10.tar.xz
{code}
|
Verify:
...
Code Block | ||||||
---|---|---|---|---|---|---|
| =
| }|||||
sha256sum debian-10.4-minimal-armhf-2020-05-10.tar.xz
{code}
{code:title=sha256sum output:} |
Code Block | ||
---|---|---|
| ||
cd598e42850cbef87602bf15ee343abfbf0d8c6ba81028c741672b5f24263534 debian-10.4-minimal-armhf-2020-05-10.tar.xz
{code}
|
Extract:
...
Code Block | ||||||
---|---|---|---|---|---|---|
| =
| }|||||
tar xf debian-10.4-minimal-armhf-2020-05-10.tar.xz
{code}
h3. Ubuntu |
Ubuntu 20.04
...
LTS
...
User | Password |
---|---|
ubuntu | temppwd |
Download:
Code Block | ||
---|---|---|
| ||
wget -c https://rcn-ee.com/rootfs/eewiki/minfs/ubuntu-20.04-minimal-armhf-2020-05-10.tar.xz
{code}
|
Verify:
...
Code Block | ||||||
---|---|---|---|---|---|---|
| =
| }|||||
sha256sum ubuntu-20.04-minimal-armhf-2020-05-10.tar.xz
{code}
{code:title=sha256sum output:} |
Code Block | ||
---|---|---|
| ||
de0177ac9259fdbcc626ee239f4258b64070c0921dbc38c45fab6925a5becaa1 ubuntu-20.04-minimal-armhf-2020-05-10.tar.xz
{code}
|
Extract:
...
Code Block | ||||||
---|---|---|---|---|---|---|
| =
| }|||||
tar xf ubuntu-20.04-minimal-armhf-2020-05-10.tar.xz
{code}
h2. Setup microSD card
We need to access the External Drive to be utilized by the target device. Run lsblk to help figure out what linux device has been reserved for your External Drive.
{code:title=Example: for |
Setup microSD card
We need to access the External Drive to be utilized by the target device. Run lsblk to help figure out what linux device has been reserved for your External Drive.
Code Block | ||||
---|---|---|---|---|
| }||||
lsblk
NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINT
sda 8:0 0 465.8G 0 disk
├─sda1 8:1 0 512M 0 part /boot/efi
└─sda2 8:2 0 465.3G 0 part / <- Development Machine Root Partition
sdb 8:16 1 962M 0 disk <- microSD/USB Storage Device
└─sdb1 8:17 1 961M 0 part <- microSD/USB Storage Partition
{code}
{code:title=Thus you would use:} |
Code Block | ||
---|---|---|
| ||
export DISK=/dev/sdb
{code}
{code:title= |
Code Block | ||||||||
---|---|---|---|---|---|---|---|---|
|
|
| }||||||
lsblk
NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINT
sda 8:0 0 465.8G 0 disk
├─sda1 8:1 0 512M 0 part /boot/efi
└─sda2 8:2 0 465.3G 0 part / <- Development Machine Root Partition
mmcblk0 179:0 0 962M 0 disk <- microSD/USB Storage Device
└─mmcblk0p1 179:1 0 961M 0 part <- microSD/USB Storage Partition
{code}
{code:title=Thus you would use:} |
Code Block | ||
---|---|---|
| ||
export DISK=/dev/mmcblk0
{code}
Erase partition |
Erase partition table/labels
...
on
...
microSD
...
card:
...
Code Block |
---|
sudo dd if=/dev/zero of=${DISK} bs=1M count=100
{code}
Install |
Install Bootloader:
...
Code Block | ||||||
---|---|---|---|---|---|---|
| =
| }|||||
wget -c https://rcn-ee.com/repos/git/build-artik/prebuilt/artik10/bl1.bin
sudo dd if=./bl1.bin of=${DISK} seek=1 bs=512
wget -c https://rcn-ee.com/repos/git/build-artik/prebuilt/artik10/bl2.bin
sudo dd if=./bl2.bin of=${DISK} seek=31 bs=512
sudo dd if=./u-boot/u-boot.bin of=${DISK} seek=63 bs=512
wget -c https://rcn-ee.com/repos/git/build-artik/prebuilt/artik10/tzsw.bin
sudo dd if=./tzsw.bin of=${DISK} seek=719 bs=512
{code}
|
Create
...
Partition
...
Layout:
...
With
...
util-linux
...
v2.26,
...
sfdisk
...
was
...
rewritten
...
and
...
is
...
now
...
based
...
on
...
libfdisk.
...
Code Block | ||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| =
|
|
|
|
|
|
|
|
| }|||||||||||||
sudo sfdisk --version
{code}
{code:title=Example Output} |
Code Block | ||
---|---|---|
| ||
sfdisk from util-linux 2.27.1
{code}
{code:title=sfdisk |
Code Block | ||||||
---|---|---|---|---|---|---|
|
| }|||||
sudo sfdisk ${DISK} <<-__EOF__
1M,48M,0xE,*
,,,-
__EOF__
{code}
{code:title=sfdisk |
Code Block | ||||||
---|---|---|---|---|---|---|
|
| }|||||
sudo sfdisk --unit M ${DISK} <<-__EOF__
1,48,0xE,*
,,,-
__EOF__
{code}
Format |
Format Partition:
...
With
...
mkfs.ext4
...
1.43,
...
we
...
need
...
to
...
make
...
sure
...
metadata_csum
...
and
...
64bit
...
ext4
...
features
...
are
...
disabled.
...
As
...
the
...
version
...
of
...
U-Boot
...
needed
...
for
...
this
...
target
...
CAN
...
NOT
...
correctly
...
handle
...
reading
...
files
...
with
...
these
...
newer
...
ext4
...
options.
...
Code Block | ||||||||
---|---|---|---|---|---|---|---|---|
| =
|
| }||||||
sudo mkfs.ext4 -V
mke2fs 1.43-WIP (15-Mar-2016)
Using EXT2FS Library version 1.43-WIP
{code}
{code:title= |
Code Block | ||||||||
---|---|---|---|---|---|---|---|---|
|
|
| }||||||
for: DISK=/dev/mmcblk0
sudo mkfs.vfat -F 16 -n BOOT ${DISK}p1
sudo mkfs.ext4 -L rootfs -O ^metadata_csum,^64bit ${DISK}p2
for: DISK=/dev/sdX
sudo mkfs.vfat -F 16 -n BOOT ${DISK}1
sudo mkfs.ext4 -L rootfs -O ^metadata_csum,^64bit ${DISK}2
{code}
{code:title= |
Code Block | ||||||||
---|---|---|---|---|---|---|---|---|
|
|
| }||||||
for: DISK=/dev/mmcblkX
sudo mkfs.vfat -F 16 -n BOOT ${DISK}p1
sudo mkfs.ext4 -L rootfs ${DISK}p2
for: DISK=/dev/sdX
sudo mkfs.vfat -F 16 -n BOOT ${DISK}1
sudo mkfs.ext4 -L rootfs ${DISK}2
{code}
|
Mount
...
Partition:
...
On
...
most
...
systems
...
these
...
partitions
...
may
...
be
...
auto-mounted...
...
Code Block |
---|
sudo mkdir -p /media/boot/
sudo mkdir -p /media/rootfs/
for: DISK=/dev/mmcblkX
sudo mount ${DISK}p1 /media/boot/
sudo mount ${DISK}p2 /media/rootfs/
for: DISK=/dev/sdX
sudo mount ${DISK}1 /media/boot/
sudo mount ${DISK}2 /media/rootfs/
{code}
|
uEnv.txt
...
script
...
Not
...
used
...
yet...
...
Code Block |
---|
sudo touch /media/boot/uEnv.txt
{code}
h2. Install Kernel and Root File System
To help new users, since the kernel version can change on a daily basis. The kernel building scripts listed on this page will now give you a hint of what kernel version was built.
{code} |
Install Kernel and Root File System
To help new users, since the kernel version can change on a daily basis. The kernel building scripts listed on this page will now give you a hint of what kernel version was built.
Code Block |
---|
-----------------------------
Script Complete
eewiki.net: [user@localhost:~$ export kernel_version=5.X.Y-Z]
-----------------------------
{code}
Copy and paste that "export |
Copy and paste that "export kernel_version=5.X.Y-Z"
...
exactly
...
as
...
shown
...
in
...
your
...
own
...
build/desktop
...
environment
...
and
...
hit
...
enter
...
to
...
create
...
an
...
environment
...
variable
...
to
...
be
...
used
...
later.
...
Code Block |
---|
export kernel_version=5.X.Y-Z {code} h3. Copy Root File System {code:title=Debian; Root File System: user@localhost:~$}.X.Y-Z |
Copy Root File System
Code Block | ||
---|---|---|
| ||
sudo tar xfvp ./debian-*-*-armhf-*/armhf-rootfs-*.tar -C /media/rootfs/
sync
sudo chown root:root /media/rootfs/
sudo chmod 755 /media/rootfs/
{code}
{code:title= |
Code Block | ||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
|
|
|
|
| }||||||||
sudo tar xfvp ./ubuntu-*-*-armhf-*/armhf-rootfs-*.tar -C /media/rootfs/
sync
sudo chown root:root /media/rootfs/
sudo chmod 755 /media/rootfs/
{code}
h3. Copy Kernel Image
Kernel Image:
{code:title=user@localhost:~$} |
Copy Kernel Image
Kernel Image:
Code Block | ||
---|---|---|
| ||
sudo cp -v ./armv7-lpae-multiplatform/deploy/${kernel_version}.zImage /media/boot/zImage
{code}
h3. Copy Kernel Device Tree Binaries
{code:title= |
Copy Kernel Device Tree Binaries
Code Block | ||||
---|---|---|---|---|
| }||||
sudo mkdir -p /media/boot/dtbs/
sudo tar xfvo ./armv7-lpae-multiplatform/deploy/${kernel_version}-dtbs.tar.gz -C /media/boot/dtbs/
{code}
h3. Copy Kernel Modules
{code:title= |
Copy Kernel Modules
Code Block | ||||
---|---|---|---|---|
| }||||
sudo tar xfv ./armv7-lpae-multiplatform/deploy/${kernel_version}-modules.tar.gz -C /media/rootfs/
{code}
h3. File Systems Table |
File Systems Table (/etc/fstab)
...
Code Block | ||||||
---|---|---|---|---|---|---|
| =
| }|||||
sudo sh -c "echo '/dev/mmcblk1p2 / auto errors=remount-ro 0 1' >> /media/rootfs/etc/fstab"
sudo sh -c "echo '/dev/mmcblk1p1 /boot/uboot auto defaults 0 2' >> /media/rootfs/etc/fstab"
{code}
h3. Remove |
Remove microSD/SD
...
card
...
Code Block |
---|
sync
sudo umount /media/boot
sudo umount /media/rootfs
{code}
h2. Comments
Any questions or comments please go to our TechForum: [TechForum|https://forum.digikey.com/c/linux-on-arm/] |
Comments
Any questions or comments please go to our TechForum: TechForum