summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorP. J. McDermott <pjm@nac.net>2014-03-18 15:17:54 (EDT)
committer P. J. McDermott <pjm@nac.net>2014-03-18 15:17:54 (EDT)
commitfde5b66ff7577ed2e53d5eafe8f52c14103ab4ba (patch)
tree00ac2b331fb3720d5b572134a8410796b39d4c5b
parent302700a2dc252042dc8e25b84d090fb56d769895 (diff)
bootstrap-stage1-test.sh: Don't install cross pkg.
Cross build-essential packages are currently uninstallable due to the lack of cross gcc packages.
-rwxr-xr-xbootstrap-stage1-test.sh5
1 files changed, 5 insertions, 0 deletions
diff --git a/bootstrap-stage1-test.sh b/bootstrap-stage1-test.sh
index 7f100c6..543fcd5 100755
--- a/bootstrap-stage1-test.sh
+++ b/bootstrap-stage1-test.sh
@@ -74,6 +74,11 @@ test_packages()
for opk in ../pkg/*_${ARCH}_${PLAT}.opk ../pkg/*_${ARCH}_all.opk \
../pkg/*_all_${PLAT}.opk ../pkg/*_all_all.opk; do
[ -f "${opk}" ] || continue
+ case "${opk#../pkg/}" in
+ "build-essential-${ARCH}_"*) ;;
+ 'build-essential-common_'*) ;;
+ 'build-essential-'*) continue ;;
+ esac
cp "${opk}" .
done
sudo chroot . sh -c 'opkg install /*.opk'