summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorStephane Desneux <stephane.desneux@iot.bzh>2016-09-09 13:53:37 +0000
committerStephane Desneux <stephane.desneux@iot.bzh>2016-09-09 14:17:49 +0000
commitfb58b6599373ee0a134c09c53a76fca54a0a8880 (patch)
tree03dfc3bacdf122dfb2aada7485b45cc815b89cd5 /scripts
parent85844f4d250d1a45129455c76e467e38d3b3e92c (diff)
aglsetup.sh: handle machines/features from any layer
This patch allows the setup script called by scripts/aglsetup.sh to search for available machines and features in all repositories located in the meta directory (the directory where meta-agl has been cloned). In particular, this now allows to specify a machine or a feature located in meta-agl-devel. Important note: duplicate machines or features in different layers are detected and forbidden (script fails with error) to avoid any ambiguity. Change-Id: If55105a05889ca95da856d65986a86f4ef5f4b2c Signed-off-by: Stephane Desneux <stephane.desneux@iot.bzh>
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/.aglsetup_genconfig.bash57
1 files changed, 45 insertions, 12 deletions
diff --git a/scripts/.aglsetup_genconfig.bash b/scripts/.aglsetup_genconfig.bash
index c6e5a36a1..57a31e261 100755
--- a/scripts/.aglsetup_genconfig.bash
+++ b/scripts/.aglsetup_genconfig.bash
@@ -30,8 +30,7 @@
# turn execute (source) generated instructions back in the parent shell,
# whether it's bash, zsh, or any other supported shell
-VERSION=1.0.0
-AGL_REPOSITORIES="meta-agl meta-agl-extra meta-agl-contrib"
+VERSION=1.1.0
DEFAULT_MACHINE=qemux86-64
DEFAULT_BUILDDIR=./build
VERBOSE=0
@@ -50,40 +49,64 @@ function debug() { [[ $DEBUG == 1 ]] && echo "DEBUG: $@" >&2; return 0;}
info "------------ $SCRIPT: Starting"
+#compute AGL_REPOSITORIES
+AGL_REPOSITORIES=$(for x in $(ls -d $METADIR/*/templates/{machine,feature}); do echo $(basename $(dirname $(dirname $x))); done | sort -u)
+
function list_machines() {
for x in $@; do
for y in $(ls -d $METADIR/$x/templates/machine/* 2>/dev/null); do
- echo -n "$(basename $y) "
+ echo $(basename $y)
done
done
}
function list_all_machines() {
for x in $AGL_REPOSITORIES; do
- [[ ! -d $METADIR/$x ]] && continue
list_machines $x
done
}
+function validate_machines() {
+ list_all_machines | sort | uniq -c | while read cnt machine; do
+ [[ $cnt == 1 ]] && continue
+ info "Machine $machine found in the following repositories:"
+ for x in $(ls -d $METADIR/*/templates/machine/$machine); do
+ info " - $x"
+ done
+ error "Multiple machine templates are not allowed"
+ done
+ debug "Machines list has no duplicate."
+}
+
function list_features() {
for x in $@; do
for y in $(ls -d $METADIR/$x/templates/feature/* 2>/dev/null); do
- echo -n "$(basename $y) "
+ echo $(basename $y)
done
done
}
function list_all_features() {
for x in $AGL_REPOSITORIES; do
- [[ ! -d $METADIR/$x ]] && continue
list_features $x
done
}
+function validate_features() {
+ list_all_features | sort | uniq -c | while read cnt feature; do
+ [[ $cnt == 1 ]] && continue;
+ info "Feature $feature found in the following repositories:"
+ for x in $(ls -d $METADIR/*/templates/feature/$feature); do
+ info " - $x"
+ done
+ error "Multiple feature templates are not allowed"
+ done
+ debug "Features list has no duplicate."
+}
+
function find_machine_dir() {
machine=$1
for x in $AGL_REPOSITORIES; do
- [[ ! -d $METADIR/$x ]] && continue
dir=$METADIR/$x/templates/machine/$machine
[[ -d $dir ]] && { echo $dir; return 0; }
done
@@ -93,7 +116,6 @@ function find_machine_dir() {
function find_feature_dir() {
feature=$1
for x in $AGL_REPOSITORIES; do
- [[ ! -d $METADIR/$x ]] && continue
dir=$METADIR/$x/templates/feature/$feature
[[ -d $dir ]] && { echo $dir; return 0; }
done
@@ -130,12 +152,14 @@ Options:
get some help
EOF
+ local buf
echo "Available machines:" >&2
for x in $AGL_REPOSITORIES; do
- [[ ! -d $METADIR/$x ]] && continue
+ buf=$(list_machines $x)
+ [[ -z "$buf" ]] && continue
echo " [$x]"
- for y in $(list_machines $x); do
+ for y in $buf; do
[[ $y == $DEFAULT_MACHINE ]] && def="* " || def=" "
echo " $def$y"
done
@@ -144,9 +168,10 @@ EOF
echo "Available features:" >&2
for x in $AGL_REPOSITORIES; do
- [[ ! -d $METADIR/$x ]] && continue
+ buf=$(list_features $x)
+ [[ -z "$buf" ]] && continue
echo " [$x]"
- for y in $(list_features $x); do
+ for y in $buf; do
echo " $y"
done
done
@@ -250,10 +275,18 @@ verbose "Command line arguments: ${GLOBAL_ARGS[@]}"
# the remaining args are the features
FEATURES="$@"
+# validate the machine list
+debug "validating machines list"
+validate_machines
+
# validate the machine
debug "validating machine $MACHINE"
find_machine_dir $MACHINE >/dev/null || error "Machine '$MACHINE' not found in [ $(list_all_machines)]"
+# validate the features list
+debug "validating features list"
+validate_features
+
# validate the features
for f in $FEATURES; do
debug "validating feature $f"