blob: 941f0cf61e46c91d796ca5becf2e79bfc49036a9 [file] [log] [blame]
bellard08785f42004-01-04 18:12:46 +00001#!/bin/sh
ths1e0e6d82007-03-31 19:10:01 +00002# enable automatic i386/ARM/M68K/MIPS/SPARC/PPC program execution by the kernel
bellard08785f42004-01-04 18:12:46 +00003
4# load the binfmt_misc module
ths1e0e6d82007-03-31 19:10:01 +00005if [ ! -d /proc/sys/fs/binfmt_misc ]; then
6 /sbin/modprobe binfmt_misc
7fi
8if [ ! -f /proc/sys/fs/binfmt_misc/register ]; then
9 mount binfmt_misc -t binfmt_misc /proc/sys/fs/binfmt_misc
10fi
bellard08785f42004-01-04 18:12:46 +000011
12# probe cpu type
13cpu=`uname -m`
14case "$cpu" in
15 i386|i486|i586|i686|i86pc|BePC)
16 cpu="i386"
17 ;;
ths1e0e6d82007-03-31 19:10:01 +000018 m68k)
19 cpu="m68k"
20 ;;
21 mips*)
22 cpu="mips"
23 ;;
bellard08785f42004-01-04 18:12:46 +000024 "Power Macintosh"|ppc|ppc64)
25 cpu="ppc"
26 ;;
27 armv4l)
28 cpu="arm"
29 ;;
30esac
31
32# register the interpreter for each cpu except for the native one
33if [ $cpu != "i386" ] ; then
bellard909a8762005-12-06 21:43:35 +000034 echo ':i386:M::\x7fELF\x01\x01\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x00\x03\x00:\xff\xff\xff\xff\xff\xfe\xfe\xff\xff\xff\xff\xff\xff\xff\xff\xff\xfe\xff\xff\xff:/usr/local/bin/qemu-i386:' > /proc/sys/fs/binfmt_misc/register
35 echo ':i486:M::\x7fELF\x01\x01\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x00\x06\x00:\xff\xff\xff\xff\xff\xfe\xfe\xff\xff\xff\xff\xff\xff\xff\xff\xff\xfe\xff\xff\xff:/usr/local/bin/qemu-i386:' > /proc/sys/fs/binfmt_misc/register
bellard08785f42004-01-04 18:12:46 +000036fi
37if [ $cpu != "arm" ] ; then
bellard909a8762005-12-06 21:43:35 +000038 echo ':arm:M::\x7fELF\x01\x01\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x00\x28\x00:\xff\xff\xff\xff\xff\xff\xff\x00\xff\xff\xff\xff\xff\xff\xff\xff\xfe\xff\xff\xff:/usr/local/bin/qemu-arm:' > /proc/sys/fs/binfmt_misc/register
39 echo ':armeb:M::\x7fELF\x01\x02\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x00\x28:\xff\xff\xff\xff\xff\xff\xff\x00\xff\xff\xff\xff\xff\xff\xff\xff\xff\xfe\xff\xff:/usr/local/bin/qemu-armeb:' > /proc/sys/fs/binfmt_misc/register
bellard08785f42004-01-04 18:12:46 +000040fi
41if [ $cpu != "sparc" ] ; then
bellard909a8762005-12-06 21:43:35 +000042 echo ':sparc:M::\x7fELF\x01\x02\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x00\x02:\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xfe\xff\xff:/usr/local/bin/qemu-sparc:' > /proc/sys/fs/binfmt_misc/register
bellard08785f42004-01-04 18:12:46 +000043fi
44if [ $cpu != "ppc" ] ; then
bellard909a8762005-12-06 21:43:35 +000045 echo ':ppc:M::\x7fELF\x01\x02\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x00\x14:\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xfe\xff\xff:/usr/local/bin/qemu-ppc:' > /proc/sys/fs/binfmt_misc/register
46fi
ths1e0e6d82007-03-31 19:10:01 +000047if [ $cpu != "m68k" ] ; then
48 echo 'Please check cpu value and header information for m68k!'
ths540635b2007-09-30 01:58:33 +000049 echo ':m68k:M::\x7fELF\x01\x02\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x00\x04:\xff\xff\xff\xff\xff\xff\xff\x00\xff\xff\xff\xff\xff\xff\xff\xff\xff\xfe\xff\xff:/usr/local/bin/qemu-m68k:' > /proc/sys/fs/binfmt_misc/register
ths1e0e6d82007-03-31 19:10:01 +000050fi
bellard909a8762005-12-06 21:43:35 +000051if [ $cpu != "mips" ] ; then
ths1e0e6d82007-03-31 19:10:01 +000052 # FIXME: We could use the other endianness on a MIPS host.
bellard909a8762005-12-06 21:43:35 +000053 echo ':mips:M::\x7fELF\x01\x02\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x00\x08:\xff\xff\xff\xff\xff\xff\xff\x00\xff\xff\xff\xff\xff\xff\xff\xff\xff\xfe\xff\xff:/usr/local/bin/qemu-mips:' > /proc/sys/fs/binfmt_misc/register
54 echo ':mipsel:M::\x7fELF\x01\x01\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x00\x08\x00:\xff\xff\xff\xff\xff\xff\xff\x00\xff\xff\xff\xff\xff\xff\xff\xff\xfe\xff\xff\xff:/usr/local/bin/qemu-mipsel:' > /proc/sys/fs/binfmt_misc/register
ths540635b2007-09-30 01:58:33 +000055 echo ':mipsn32:M::\x7fELF\x01\x02\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x00\x08:\xff\xff\xff\xff\xff\xff\xff\x00\xff\xff\xff\xff\xff\xff\xff\xff\xff\xfe\xff\xff:/usr/local/bin/qemu-mipsn32:' > /proc/sys/fs/binfmt_misc/register
56 echo ':mipsn32el:M::\x7fELF\x01\x01\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x00\x08\x00:\xff\xff\xff\xff\xff\xff\xff\x00\xff\xff\xff\xff\xff\xff\xff\xff\xfe\xff\xff\xff:/usr/local/bin/qemu-mipsn32el:' > /proc/sys/fs/binfmt_misc/register
57 echo ':mips64:M::\x7fELF\x02\x02\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x00\x08:\xff\xff\xff\xff\xff\xff\xff\x00\xff\xff\xff\xff\xff\xff\xff\xff\xff\xfe\xff\xff:/usr/local/bin/qemu-mips64:' > /proc/sys/fs/binfmt_misc/register
58 echo ':mips64el:M::\x7fELF\x02\x01\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x00\x08\x00:\xff\xff\xff\xff\xff\xff\xff\x00\xff\xff\xff\xff\xff\xff\xff\xff\xfe\xff\xff\xff:/usr/local/bin/qemu-mips64el:' > /proc/sys/fs/binfmt_misc/register
bellard08785f42004-01-04 18:12:46 +000059fi