Skip to content
Snippets Groups Projects
Select Git revision
  • ad91ab1be7afa70db7b1077bea9d42be546b4c14
  • v2018.2.x default
  • 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
42 results

0012-hostapd-remove-unused-variable-declarations-in-hostapd.sh.patch

Blame
  • Forked from firmware / FFS Gluon
    Source project has a limited visibility.
    buildall.sh 513 B
    #!/bin/bash
    
    set -eu
    set -o pipefail
    
    branch=nightly
    
    TARGETS=(
    	ar71xx-generic 
    	ar71xx-nand 
    	ar71xx-tiny 
    	brcm2708-bcm2708 
    	brcm2708-bcm2709 
    	ipq40xx 
    	mpc85xx-generic
    	ramips-mt7620
    	ramips-mt76x8
    #	ramips-rt305x # build fails
    	x86-64
    	x86-generic
    	x86-geode
    )
    
    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