Differences between revisions 2 and 4 (spanning 2 versions)
Revision 2 as of 2020-04-14 15:04:32
Size: 838
Editor: JanPrunk
Comment:
Revision 4 as of 2020-04-14 15:17:01
Size: 1071
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. = This page is work in progress, please do not edit, until I remove this notice. =

<<TableOfContents(2)>>
Line 5: Line 7:
= PC Utilite Pro support in Debian buster =
Line 6: 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]]
Line 7: Line 12:
{{{
Line 15: Line 21:
# Remove comments from arch/arm/mach-imx/spl_sd.cfg }}}
Remove comments from arch/arm/mach-imx/spl_sd.cfg
{{{
Line 20: Line 28:
}}}

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

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