qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] qemu-binfmt-conf.sh


From: Sean Omalley
Subject: [Qemu-devel] qemu-binfmt-conf.sh
Date: Fri, 11 Apr 2014 16:57:57 -0700 (PDT)

I was looking at  rc2 and /scripts/qemu-binfmt-conf.sh briefly,
it has

# probe cpu type
cpu=`uname -m`
case "$cpu" in

Then there is no cpu for aarch64, but if you poke down further,
there is a if-then that uses a cpu=aarch64.

Should this be split into something like:

armv[4-7]*)
    cpu="arm"
  ;;
armv[8-9]*)
    cpu="aarch64"
  ;;

Sean


reply via email to

[Prev in Thread] Current Thread [Next in Thread]