Skip to content
Snippets Groups Projects
Select Git revision
  • 78b2775eecd2ba9182b47c255c0229ee81c8c7da
  • experimental
  • master
  • v2021.1.2-ffs
  • v2021.1.1-ffs
  • nrb/gluon-master-cpe510
  • v2021.1-ffs
  • v2020.2.3-ffs
  • nrbffs/fastd-remove-delay
  • v2020.2.2-ffs
  • v2020.2.1-ffs
  • v2020.2-ffs
  • v2020.2.x
  • v2020.1.3-ffs
  • v2020.1.1-ffs
  • v2020.1-ffs
  • v2019.1.2-ffs
  • v2019.1.1-ffs
  • nrb/test-radv-filter
  • v2019.1-ffs
  • nrbffs/netgear-ex6120
  • v2021.1.2-ffs0.2
  • v2021.1.2-ffs0.1
  • v2021.1.1-ffs0.4
  • v2021.1.1-ffs0.3
  • v2021.1.1-ffs0.2
  • v2021.1.1-ffs0.1
  • v2021.1-ffs0.1
  • v2020.2.3-ffs0.3
  • v2020.2.3-ffs0.2
  • v2020.2.3-ffs0.1
  • v2020.2.2-ffs0.1
  • v2020.2.1-ffs0.1
  • v2020.2-ffs0.1
  • v2020.2
  • v2020.2.x-ffs0.1
  • v2020.1.3-ffs0.1
  • v2020.1.1-ffs0.1
  • v2020.1-ffs0.1
  • v2019.1.2-ffs0.1
  • v2019.1.1-ffs0.1
41 results

hardware.rst

Blame
  • Forked from firmware / FFS Gluon
    Source project has a limited visibility.
    buildall.sh 666 B
    #!/bin/bash
    
    set -eu
    set -o pipefail
    
    branch=nightly
    
    TARGETS=(
        ar71xx-generic
        ar71xx-tiny
        ar71xx-nand
        ath79-generic
        brcm2708-bcm2708
        brcm2708-bcm2709
        ipq40xx-generic
        ipq806x-generic
        lantiq-xrx200
        lantiq-xway
        mpc85xx-generic
        mpc85xx-p1020
        ramips-mt7620
        ramips-mt7621
        ramips-mt76x8
        ramips-rt305x
        sunxi-cortexa7
        x86-generic
        x86-geode
        x86-64
    )
    
    sitedir=$(readlink -f $(dirname $0))
    make -C gluon update GLUON_SITEDIR="$sitedir" V=1
    
    for target in ${TARGETS[@]}; do
    	echo Building $target
    	make -C gluon GLUON_TARGET=$target GLUON_BRANCH=$branch GLUON_SITEDIR="$sitedir" V=1 -j`nproc`
    done