[bin] add /usr/local/portage to PORTDIR_OVERLAY

This commit is contained in:
Fabio Erculiani
2013-05-16 16:56:01 +02:00
parent 85ebc79f64
commit fb21c9d123
2 changed files with 14 additions and 0 deletions
+4
View File
@@ -71,3 +71,7 @@ eit() {
# Alias configuration
alias cosmos=/particles/cosmos/cosmos
# This is a build server local overlay
# It is used by crossdev
export PORTDIR_OVERLAY="/usr/local/portage"
+10
View File
@@ -0,0 +1,10 @@
#!/bin/bash
ARCHES=(
armv7a-hardfloat-linux-gnueabi
armv7a-unknown-linux-gnueabi
)
for a in "${ARCHES[@]}"; do
crossdev -t "${a}" -S --overlays "" --ov-output "/usr/local/portage" || exit 1
done