Go to file
j3d1 8209a9a936
continuous-integration/drone/push Build is failing Details
minify web content
2023-02-12 08:54:29 +01:00
case setup CI skeleton 2021-07-02 16:47:03 +02:00
docker Added gzip compression 2021-09-09 14:30:10 +02:00
firmware minify web content 2023-02-12 08:54:29 +01:00
modules minify web content 2023-02-12 08:54:29 +01:00
pcb update ignore files 2022-07-04 21:05:22 +02:00
webapp update ignore files 2022-07-04 21:05:22 +02:00
.build.yml minify web content 2023-02-12 08:54:29 +01:00
.gitmodules use hostname in dhcp request 2021-11-21 00:24:19 +01:00
Makefile minify web content 2023-02-12 08:54:29 +01:00
README.md Added gzip compression 2021-09-09 14:30:10 +02:00
shell.nix add build environment files for nixpkgs 2021-07-14 23:31:51 +02:00

README.md

fiatlux

Cloning

git clone --recursive https://git.neulandlabor.de/j3d1/fiatlux.git

or after cloning normally

git submodule update --init --recursive

Build Requirements

  • make

  • bash gawk

  • g++ gcc

  • libc6-dev

  • flex bison

  • automake autoconf

  • gperf

  • wget

  • git

  • bzip2 unzip zip unrar-free

  • help2man texinfo

  • libtool libtool-bin

  • ncurses-dev libexpat-dev

  • python3 python3-serial python-dev

  • pip install websocket-client (for otaflash.py, optional)

Build Steps

Workarounds for submodules

sed -i 's/GNU bash, version (3\\\.\[1-9\]|4)/GNU bash, version (3.[1-9]|4|5)/g' modules/sdk/crosstool-NG/configure.ac
mkdir -p modules/sdk/crosstool-NG/.build/tarballs
wget https://github.com/libexpat/libexpat/releases/download/R_2_1_0/expat-2.1.0.tar.gz -O modules/sdk/crosstool-NG/.build/tarballs/expat-2.1.0.tar.gz

Build Toolchain

make -C modules/sdk standalone=y -j$(nproc)
export PATH=$(pwd)/modules/sdk/xtensa-lx106-elf/bin:$PATH

Compile Firmware

make firmware -j$(nproc)

Flash

make flash

Build Steps (using docker)

install docker on your platform and buil with

make firmware_docker -j$(nproc)

Build Steps (using nixos)

In the project root run:

nix-shell --option sandbox false
make firmware -j$(nproc)