0

Is any operating system available for mips64 (with complete source code) which can run on QEMU as guest? thank you

marry
  • 307
  • 2
  • 7
  • 20
  • can u elaborate your query about mips64 ? – vinay hunachyal Sep 17 '13 at 09:43
  • I want to run guest operating system with MIPS (64-bit) architecture. And i need to know that any kernel available for this with complete source code? Like Malta mips can be used but its source code is not available, only elf file are available. – marry Sep 18 '13 at 03:02

1 Answers1

0

Just clone newest kernel source code from kernel.org. If u want to build mips for 64 bit malta machine then try below configuration.

There are tree defconfig available in mips/configs so u can choose for your requirements

malta_defconfig

malta_kvm_defconfig

malta_kvm_guest_defconfig

make ARCH=mips (one of above defconfig)

make ARCH=mips menuconfig

here select CPU type (MIPS32 Release 2) --->

here select ( ) MIPS32 Release 1 │ │
│ │ ( ) MIPS32 Release 2 │ │ │ │ (X ) MIPS64 Release 1 │ │ │ │ ( ) MIPS64 Release 2

select mips64

next build as usual using your cross-tools chain

vinay hunachyal
  • 3,781
  • 2
  • 20
  • 31
  • @marry is above one clarifies your doubt or am i wrong in my understanding? .. comment so that people can understand your problem in betterway – vinay hunachyal Sep 19 '13 at 11:26