Differences between revisions 1 and 6 (spanning 5 versions)
Revision 1 as of 2020-04-14 15:03:36
Size: 756
Editor: JanPrunk
Comment: first entry
Revision 6 as of 2020-04-14 15:39:32
Size: 1470
Editor: JanPrunk
Comment:
Deletions are marked like this. Additions are marked like this.
Line 1: Line 1:
= This page is work in progress, please do not edit, until I remove this notice. =

<<TableOfContents(2)>>
Line 3: Line 7:
= PC Utilite Pro support in Debian buster =
Line 4: Line 10:
This page exists to collate information about the status of support in Debian for the PC Utilite by [[http://www.compulab.com|CompuLab]].
Shell environment to use # for root shell, and $ for user shell.
Line 5: Line 13:
apt install -y build-essential gcc-arm-linux-gnueabihf bison flex bc git
git clone https://gitlab.denx.de/u-boot/u-boot.git
cd u-boot
git checkout v2020.01
export ARCH=arm
export CROSS_COMPILE=arm-linux-gnueabihf-
make cm_fx6_defconfig
make
# Remove comments from arch/arm/mach-imx/spl_sd.cfg
tools/mkimage -n arch/arm/mach-imx/spl_sd.cfg -T imximage -e 0x908000 -d spl/u-boot-spl.bin spl.img
dd if=/dev/zero count=768 bs=1K | tr '\000' '\377' > cm-fx6-firmware
dd if=spl.img of=cm-fx6-firmware bs=1K seek=1 conv=notrunc
dd if=u-boot.img of=cm-fx6-firmware bs=1K seek=64 conv=notrunc
= Download armhf ISO image =
You can download armhf ISO image from [[https://cdimage.debian.org/debian-cd/current/armhf/iso-cd/|Debian cdimage depository]].
The file to download tested in this installation was [[https://cdimage.debian.org/debian-cd/current/armhf/iso-cd/debian-10.3.0-armhf-netinst.iso|debian-10.3.0-armhf-netinst.iso]].


= Starting =
Install required Debian packages.

{{{
# apt install -y build-essential gcc-arm-linux-gnueabihf bison flex bc git
$ git clone https://gitlab.denx.de/u-boot/u-boot.git
$ cd u-boot
$ git checkout v2020.01
$ export ARCH=arm
$ export CROSS_COMPILE=arm-linux-gnueabihf-
$ make cm_fx6_defconfig
$ make
$ tools/mkimage -n spl/u-boot-spl.cfgout -T imximage -e 0x908000 -d spl/u-boot-spl.bin spl.img
# dd if=/dev/zero of=cm-fx6-firmware bs=64K count=1
# dd if=spl.img of=cm-fx6-firmware bs=1K seek=1 conv=notrunc
# dd if=u-boot.img of=cm-fx6-firmware bs=1K seek=64 conv=notrunc
}}}

This page is work in progress, please do not edit, until I remove this notice.

Describe InstallingDebianOn/CompuLab/PC-Utilite/buster here.

PC Utilite Pro support in Debian buster

This manual explains how to upgrade U-boot and install Debian buster to Utilite Pro device. This page exists to collate information about the status of support in Debian for the PC Utilite by CompuLab. Shell environment to use # for root shell, and $ for user shell.

Download armhf ISO image

You can download armhf ISO image from Debian cdimage depository. The file to download tested in this installation was debian-10.3.0-armhf-netinst.iso.

Starting

Install required Debian packages.

# apt install -y build-essential gcc-arm-linux-gnueabihf bison flex bc git
$ git clone https://gitlab.denx.de/u-boot/u-boot.git
$ cd u-boot
$ git checkout v2020.01
$ export ARCH=arm
$ export CROSS_COMPILE=arm-linux-gnueabihf-
$ make cm_fx6_defconfig
$ make
$ tools/mkimage -n spl/u-boot-spl.cfgout -T imximage -e 0x908000 -d spl/u-boot-spl.bin spl.img
# dd if=/dev/zero of=cm-fx6-firmware bs=64K count=1
# dd if=spl.img of=cm-fx6-firmware bs=1K seek=1 conv=notrunc
# dd if=u-boot.img of=cm-fx6-firmware bs=1K seek=64 conv=notrunc