#!/usr/bin/env bash set -e { echo "all::" for x in *.ys; do echo "all:: run-$x" echo "run-$x:" echo " @echo 'Running $x..'" echo " @../../../yosys -ql ${x%.ys}.log -w 'Yosys has only limited support for tri-state logic at the moment.' $x" done for s in *.sh; do if [ "$s" != "run-test.sh" ]; then echo "all:: run-$s" echo "run-$s:" echo " @echo 'Running $s..'" echo " @bash $s" fi done } > run-test.mk exec ${MAKE:-make} -f run-test.mk upstream' title='openwrt/upstream Git repository'/>
aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/generic/patches-3.3/850-glamo_headers.patch
blob: d6d49fdf50ac790c37a18daaf878752ea375531e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21