OpenWrt + QEMU: Difference between revisions

From misc notes
Jump to navigation Jump to search
Line 2: Line 2:


<syntaxhighlight lang="text" enclose="div">
<syntaxhighlight lang="text" enclose="div">
qemu-system-mips64el -M malta -cpu MIPS64R2-generic -kernel openwrt-malta-le64-vmlinux-initramfs.elf -nographic -m 1G -localtime
qemu-system-mips64el -M malta -cpu MIPS64R2-generic -kernel openwrt-malta-le64-vmlinux-initramfs.elf -nographic -m 1G -append "root=/dev/sda console=ttyS0"
qemu-system-mips64 -M malta -cpu MIPS64R2-generic -kernel openwrt-malta-be64-vmlinux-initramfs.elf -nographic -m 1G -localtime
qemu-system-mips64 -M malta -cpu MIPS64R2-generic -kernel openwrt-malta-be64-vmlinux-initramfs.elf -nographic -m 1G -append "root=/dev/sda console=ttyS0"
</syntaxhighlight>
</syntaxhighlight>

Revision as of 12:17, 10 May 2019

MEMO

qemu-system-mips64el -M malta -cpu MIPS64R2-generic -kernel openwrt-malta-le64-vmlinux-initramfs.elf -nographic -m 1G -append "root=/dev/sda console=ttyS0"
qemu-system-mips64 -M malta -cpu MIPS64R2-generic -kernel openwrt-malta-be64-vmlinux-initramfs.elf -nographic -m 1G -append "root=/dev/sda console=ttyS0"