Skip to content

Commit

Permalink
Updated installation doc
Browse files Browse the repository at this point in the history
  • Loading branch information
gfabiano committed Jan 20, 2019
1 parent 0123707 commit 8e49997
Showing 1 changed file with 4 additions and 13 deletions.
17 changes: 4 additions & 13 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# ETeam Linux Distribution``
# ETeam Linux Distribution

This distro is used on UDOO Quad to control the car display. It's based on ARCH and use a custom kernel. The idea is to use the ATMEL SAM3X8E ARM processor to compute real time things(steering wheel control) and use the ARM i.MX6 NPX processor to show infos on display.
The communication between the two processors is serial(UART):
Expand Down Expand Up @@ -35,15 +35,15 @@ mount /dev/mmcblk0p1 mnt
```
6. download and extract latest ETeamLinux
```
wget https://github.com/E-TeamUnipi/ETeamLinux/releases/download/v0.1/ETeamLinux.tar.gz
wget https://github.com/E-TeamUnipi/ETeamLinux/releases/download/latest/ETeamLinux.tar.gz
bsdtar -xpf ETeamLinux.tar.gz -C mnt
sync
umount mnt
```
7. Install u-boot:
```
wget http://os.archlinuxarm.org/os/imx6/boot/udoo/SPL
wget http://os.archlinuxarm.org/os/imx6/boot/udoo/u-boot.img
wget https://github.com/E-TeamUnipi/ETeamLinux/releases/download/latest/SPL
wget https://github.com/E-TeamUnipi/ETeamLinux/releases/download/latest/u-boot.img
dd if=SPL of=/dev/mmcblk0 seek=1 bs=1k
dd if=u-boot.img of=/dev/mmcblk0 seek=69 bs=1k
sync
Expand All @@ -53,15 +53,6 @@ sync
- login: alarm, password: alarm
- root password: root

## Set bootdelay to zero

To set bootdelay to zero enter u-boot and run these commands
```
setenv bootdelay 0
saveenv
reset
```

## Update the display

To update the display connect the UDOO Quad to an ethernet port. Next apply the power and enter the serial console.
Expand Down

0 comments on commit 8e49997

Please sign in to comment.