Skip to content
Snippets Groups Projects
Commit 5cbf6af0 authored by Nico's avatar Nico
Browse files

update target lists

Add a script which allows generating the target list for copy-pasting to
.gitlab-ci.yaml
parent 142bdc12
No related branches found
No related tags found
No related merge requests found
Pipeline #2140 canceled
...@@ -130,6 +130,11 @@ target:lantiq-xway: ...@@ -130,6 +130,11 @@ target:lantiq-xway:
variables: variables:
GLUON_TARGET: lantiq-xway GLUON_TARGET: lantiq-xway
target:mediatek-filogic:
extends: .target
variables:
GLUON_TARGET: mediatek-filogic
target:mediatek-mt7622: target:mediatek-mt7622:
extends: .target extends: .target
variables: variables:
...@@ -160,6 +165,11 @@ target:ramips-mt76x8: ...@@ -160,6 +165,11 @@ target:ramips-mt76x8:
variables: variables:
GLUON_TARGET: ramips-mt76x8 GLUON_TARGET: ramips-mt76x8
target:realtek-rtl838x:
extends: .target
variables:
GLUON_TARGET: realtek-rtl838x
target:rockchip-armv8: target:rockchip-armv8:
extends: .target extends: .target
variables: variables:
......
#!/bin/bash
set -eu
mydir=$(readlink -f "$(dirname "$0")/..")
make -s -C "$mydir/gluon" GLUON_SITEDIR="$mydir" list-targets | while read target; do
cat <<EOF
target:${target}:
extends: .target
variables:
GLUON_TARGET: ${target}
EOF
done
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment