Nick: hell__ E-mail: NULL Board: unknown Contents: [mani@2c822ba02933 flashrom]$ git status On branch master Your branch is behind 'origin/master' by 57 commits, and can be fast-forwarded. (use "git pull" to update your local branch) Changes not staged for commit: (use "git add ..." to update what will be committed) (use "git checkout -- ..." to discard changes in working directory) modified: util/manibuilder/Dockerfile.anita modified: util/manibuilder/anita-wrapper.sh no changes added to commit (use "git add" and/or "git commit -a") [mani@2c822ba02933 flashrom]$ git diff diff --git a/util/manibuilder/Dockerfile.anita b/util/manibuilder/Dockerfile.anita index 5fba6cc..8bf6f7f 100644 --- a/util/manibuilder/Dockerfile.anita +++ b/util/manibuilder/Dockerfile.anita @@ -35,7 +35,7 @@ RUN cd && anita --persist --run \ boot ${INST_IMG} RUN cd && dd if=/dev/zero bs=1M count=64 of=cache.img && \ - anita --vmm-args '-hdb cache.img' --persist --run \ + anita --vmm-args '-hdb cache.img --enable-kvm' --persist --run \ "echo fdisk -0 -s 169/63/131009 -f -u wd1 && \ newfs wd1a && \ mkdir .ccache && \ diff --git a/util/manibuilder/anita-wrapper.sh b/util/manibuilder/anita-wrapper.sh index 617e17f..782de23 100644 --- a/util/manibuilder/anita-wrapper.sh +++ b/util/manibuilder/anita-wrapper.sh @@ -9,9 +9,9 @@ CCACHE=.ccache/anita-${IDENT}.img [ -f ${CCACHE} ] || zcat cache.img.gz >${CCACHE} if [ $# -eq 0 ]; then - exec anita --vmm-args "-hdb ${CCACHE}" interact ${INST_IMG} + exec anita --vmm-args "-hdb ${CCACHE} --enable-kvm" interact ${INST_IMG} else - exec anita --vmm-args "-hdb ${CCACHE}" --persist \ + exec anita --vmm-args "-hdb ${CCACHE} --enable-kvm" --persist \ --run ". ./init && manitest \"$*\"" \ boot ${INST_IMG} fi [mani@2c822ba02933 flashrom]$