add qemu_configure.sh (It enables to add option to the configure file)
authormunkyu.im <munkyu.im@samsung.com>
Mon, 16 May 2011 04:31:20 +0000 (13:31 +0900)
committermunkyu.im <munkyu.im@samsung.com>
Mon, 16 May 2011 04:31:20 +0000 (13:31 +0900)
, [new file with mode: 0755]
configure [changed mode: 0644->0755]
qemu_configure.sh [new file with mode: 0755]

diff --git a/, b/,
new file mode 100755 (executable)
index 0000000..99d4373
--- /dev/null
+++ b/,
@@ -0,0 +1,38 @@
+#!/bin/sh
+# OS specific
+#--target-list=i386-softmmu,arm-softmmu \
+targetos=`uname -s`
+case $targetos in
+Linux*)
+echo "checking for os... targetos $targetos"
+exec ./configure \
+ --target-list=i386-softmmu \
+ --enable-profiler \
+ --disable-werror \
+ --audio-drv-list=alsa \
+ --audio-card-list=es1370 \
+ --enable-mixemu \
+ --disable-vnc-tls \
+# --enable-gles2 --gles2dir=/usr
+;;
+CYGWIN*)
+echo "checking for os... targetos $targetos"
+exec ./configure \
+ --target-list=i386-softmmu \
+ --audio-drv-list=dsound \
+ --audio-card-list=es1370 \
+ --enable-mixemu \
+ --disable-vnc-tls 
+;;
+MINGW*)
+echo "checking for os... targetos $targetos"
+exec ./configure \
+ --target-list=i386-softmmu,arm-softmmu \
+ --audio-drv-list=dsound \
+ --audio-card-list=es1370 \
+ --enable-mixemu \
+ --disable-vnc-tls \
+ --disable-vnc-jpeg \
+ --disable-jpeg
+;;
+esac
old mode 100644 (file)
new mode 100755 (executable)
diff --git a/qemu_configure.sh b/qemu_configure.sh
new file mode 100755 (executable)
index 0000000..99d4373
--- /dev/null
@@ -0,0 +1,38 @@
+#!/bin/sh
+# OS specific
+#--target-list=i386-softmmu,arm-softmmu \
+targetos=`uname -s`
+case $targetos in
+Linux*)
+echo "checking for os... targetos $targetos"
+exec ./configure \
+ --target-list=i386-softmmu \
+ --enable-profiler \
+ --disable-werror \
+ --audio-drv-list=alsa \
+ --audio-card-list=es1370 \
+ --enable-mixemu \
+ --disable-vnc-tls \
+# --enable-gles2 --gles2dir=/usr
+;;
+CYGWIN*)
+echo "checking for os... targetos $targetos"
+exec ./configure \
+ --target-list=i386-softmmu \
+ --audio-drv-list=dsound \
+ --audio-card-list=es1370 \
+ --enable-mixemu \
+ --disable-vnc-tls 
+;;
+MINGW*)
+echo "checking for os... targetos $targetos"
+exec ./configure \
+ --target-list=i386-softmmu,arm-softmmu \
+ --audio-drv-list=dsound \
+ --audio-card-list=es1370 \
+ --enable-mixemu \
+ --disable-vnc-tls \
+ --disable-vnc-jpeg \
+ --disable-jpeg
+;;
+esac