summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorP. J. McDermott <pj@pehjota.net>2015-05-26 00:35:54 (EDT)
committer P. J. McDermott <pj@pehjota.net>2015-05-26 00:35:54 (EDT)
commit39cb9c2e42e581ef832bbe8f63d7ac6db37c6ef5 (patch)
tree722a31361fab3d55fd38cd4bb63f5d7007d1ebd7
parent1c5339948d72442107f2689a5979b2a9f6373860 (diff)
profile_validate_archplat(): Pass through to profile
-rw-r--r--lib/profile.sh31
1 files changed, 10 insertions, 21 deletions
diff --git a/lib/profile.sh b/lib/profile.sh
index de2c6a1..44c58a2 100644
--- a/lib/profile.sh
+++ b/lib/profile.sh
@@ -66,31 +66,20 @@ profile_default_plat()
"prof_${profile}_default_plat"
}
-# TODO: This should pass through to prof_${profile}_validate_archplat().
-profile_validate_archplat()
+profile_select_mirror()
{
- local arch="${1}"
- local plat="${2}"
- local prof_arch=
- local prof_plat=
-
- while read -r prof_arch prof_plat; do
- [ "x${prof_arch}" = 'x' ] && continue
- if [ "x${arch}" = "x${prof_arch}" ]; then
- if [ "x${plat}" = "x${prof_plat}" ]; then
- return 0
- fi
- fi
- done <<-EOF
- $(eval "printf '%s\n' \"\${prof_${profile}_archplats}\"")
- EOF
-
- return 1
+ "prof_${profile}_select_mirror"
}
-profile_select_mirror()
+profile_validate_archplat()
{
- "prof_${profile}_select_mirror"
+ local mirror="${1}"
+ local arch="${2}"
+ local plat="${3}"
+ local suite="${4}"
+
+ "prof_${profile}_validate_archplat" "${mirror}" "${arch}" "${plat}" \
+ "${suite}"
}
profile_feeds()