diff mbox

[U-Boot,1/2] board/qemu-mips: fix a typo in README

Message ID 1357647771-22572-1-git-send-email-juhosg@openwrt.org
State Accepted
Delegated to: Daniel Schwierzeck
Headers show

Commit Message

Gabor Juhos Jan. 8, 2013, 12:22 p.m. UTC
The 'Limitations & comments' section refers to the
'-m mips' switch which is not valid. The '-m' switch
can be used for setting the virtual RAM size:

    $qemu-system-mips --help | grep '^-m '
    -m megs         set virtual RAM size to megs MB [default=128]
    $

The correct switch for specifying the machine type is '-M'.
Fix the text to refer to that.

Signed-off-by: Gabor Juhos <juhosg@openwrt.org>
Cc: Daniel Schwierzeck <daniel.schwierzeck@googlemail.com>
Cc: Vlad Lungu <vlad.lungu@windriver.com>
---
 board/qemu-mips/README |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Daniel Schwierzeck Jan. 8, 2013, 5:29 p.m. UTC | #1
2013/1/8 Gabor Juhos <juhosg@openwrt.org>:
> The 'Limitations & comments' section refers to the
> '-m mips' switch which is not valid. The '-m' switch
> can be used for setting the virtual RAM size:
>
>     $qemu-system-mips --help | grep '^-m '
>     -m megs         set virtual RAM size to megs MB [default=128]
>     $
>
> The correct switch for specifying the machine type is '-M'.
> Fix the text to refer to that.
>
> Signed-off-by: Gabor Juhos <juhosg@openwrt.org>
> Cc: Daniel Schwierzeck <daniel.schwierzeck@googlemail.com>
> Cc: Vlad Lungu <vlad.lungu@windriver.com>
> ---
>  board/qemu-mips/README |    2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)

applied to u-boot-mips/next, thanks
diff mbox

Patch

diff --git a/board/qemu-mips/README b/board/qemu-mips/README
index 9fd97e1..b2c2b54 100644
--- a/board/qemu-mips/README
+++ b/board/qemu-mips/README
@@ -6,7 +6,7 @@  http://www.nongnu.org/qemu/
 
 Limitations & comments
 ----------------------
-Supports the "-m mips" configuration of qemu: serial,NE2000,IDE.
+Supports the "-M mips" configuration of qemu: serial,NE2000,IDE.
 Support is big endian only for now (or at least this is what I tested).
 Derived from au1x00 with a lot of things cut out.