summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2014-12-21 01:17:30 -0600
committerWaldemar Brodkorb <wbx@openadk.org>2014-12-21 01:17:30 -0600
commitf919a87612241c71e924588610f22260a3e9370e (patch)
treee29c2f1e726d96c618de7de0cbc8d78772f80dcf /scripts
parentf82981b97110ac217ff7f0d7e5fd7d26036adfde (diff)
fix various automatic configuration targets
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/bulk-qemu.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/bulk-qemu.sh b/scripts/bulk-qemu.sh
index ef3d11465..4bd153f83 100755
--- a/scripts/bulk-qemu.sh
+++ b/scripts/bulk-qemu.sh
@@ -3,7 +3,7 @@
if [ ! -z $1 ];then
c=$1
else
- c="glibc musl uclibc"
+ c="uclibc-ng glibc musl uclibc"
fi
for libc in $c; do
@@ -11,7 +11,7 @@ for libc in $c; do
echo "Cleaning old stuff"
make cleandir
echo "Building $libc for $arch"
- DEFAULT="VERBOSE=1 ADK_TARGET_ARCH=$arch ADK_TARGET_SYSTEM=qemu-$arch ADK_TARGET_LIBC=$libc ADK_TARGET_FS=initramfspiggyback"
+ DEFAULT="ADK_VERBOSE=1 ADK_APPLIANCE=new ADK_TARGET_ARCH=$arch ADK_TARGET_SYSTEM=qemu-$arch ADK_TARGET_LIBC=$libc ADK_TARGET_FS=initramfspiggyback"
case $arch in
mips|microblaze)
for endian in little big;do