diff options
author | SoonKyu Park <sk7.park@samsung.com> | 2015-11-12 13:20:22 +0900 |
---|---|---|
committer | SoonKyu Park <sk7.park@samsung.com> | 2015-11-12 13:20:22 +0900 |
commit | 947cbef72046f3984d03e518eb3caa9c4f04d9c9 (patch) | |
tree | 841dff54dbd6ddf20705afa629d6d53ec8c7f9ce | |
parent | 4fefed1f75e94a9712e5903e8927a3b3d2722722 (diff) | |
download | tools-testing-947cbef72046f3984d03e518eb3caa9c4f04d9c9.tar.gz tools-testing-947cbef72046f3984d03e518eb3caa9c4f04d9c9.tar.bz2 tools-testing-947cbef72046f3984d03e518eb3caa9c4f04d9c9.zip |
Modify cpu option of qemu-kvm to support for kernel 4.1.10release-1.35
Change-Id: I301a638a759a6321e0d29db9f2eb65ee8b52ab1f
-rw-r--r-- | kvm-worker.sh | 4 | ||||
-rw-r--r-- | packaging/tools-testing.spec | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/kvm-worker.sh b/kvm-worker.sh index a3377a6..9af59e3 100644 --- a/kvm-worker.sh +++ b/kvm-worker.sh @@ -182,9 +182,9 @@ target_project_basename() { compose_cpu_opt() { arch=$1 if [ $arch = "i586" ]; then - echo "-cpu pentium3" + echo "-cpu qemu32" else - echo "-cpu core2duo" + echo "-cpu qemu64" fi } diff --git a/packaging/tools-testing.spec b/packaging/tools-testing.spec index a910aab..25621df 100644 --- a/packaging/tools-testing.spec +++ b/packaging/tools-testing.spec @@ -1,7 +1,7 @@ %{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} Name: tools-testing Summary: Utilities for Tools tester Jenkins worker -Version: 1.35.1 +Version: 1.35.2 Release: 1 Group: Development/Tools/Other License: GPL2 |