blob: d488f69da3caf56fd6ba7b78130204728c054746 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#!/bin/bash
#
# this script is used to rebuild all QEMU binaries for the host
# platforms.
#
# assume that the device tree is in TOP
#
cd `dirname $0`
./android-configure.sh $* && \
make -j4 && \
echo "Done. !!"
|