11 lines
200 B
Bash
11 lines
200 B
Bash
#!/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
|