From: Marcel Apfelbaum <marcel@redhat.com>
To: Thomas Huth <thuth@redhat.com>,
qemu-devel@nongnu.org, Eduardo Habkost <ehabkost@redhat.com>
Cc: Peter Maydell <peter.maydell@linaro.org>
Subject: Re: [Qemu-devel] [PATCH] hw/core/null-machine: Print error message when using the -kernel parameter
Date: Tue, 28 Feb 2017 15:17:09 +0200 [thread overview]
Message-ID: <2bdeedaa-294f-5395-680f-ffb912ecfe74@redhat.com> (raw)
In-Reply-To: <1488271971-12624-1-git-send-email-thuth@redhat.com>
On 02/28/2017 10:52 AM, Thomas Huth wrote:
> If the user currently tries to use the -kernel parameter, simply nothing
> happens, and the user might get confused that there is nothing loaded
> to memory, but also no error message has been issued. Since there is no
> real generic way to load a kernel on all CPU types (but on some targets,
> the generic loader can be used instead), issue an appropriate error
> message here now to avoid the possible confusion.
>
> Signed-off-by: Thomas Huth <thuth@redhat.com>
> ---
> hw/core/null-machine.c | 6 ++++++
> 1 file changed, 6 insertions(+)
>
> diff --git a/hw/core/null-machine.c b/hw/core/null-machine.c
> index 27c8369..864832d 100644
> --- a/hw/core/null-machine.c
> +++ b/hw/core/null-machine.c
> @@ -40,6 +40,12 @@ static void machine_none_init(MachineState *mch)
> memory_region_allocate_system_memory(ram, NULL, "ram", mch->ram_size);
> memory_region_add_subregion(get_system_memory(), 0, ram);
> }
> +
> + if (mch->kernel_filename) {
> + error_report("The -kernel parameter is not supported "
> + "(use the generic 'loader' device instead).");
> + exit(1);
> + }
> }
>
> static void machine_none_machine_init(MachineClass *mc)
>
Reviewed-by: Marcel Apfelbaum <marcel@redhat.com>
Thanks,
Marcel
next prev parent reply other threads:[~2017-02-28 13:17 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-02-28 8:52 [Qemu-devel] [PATCH] hw/core/null-machine: Print error message when using the -kernel parameter Thomas Huth
2017-02-28 13:17 ` Marcel Apfelbaum [this message]
2017-02-28 19:41 ` Philippe Mathieu-Daudé
2017-03-03 18:35 ` Eduardo Habkost
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=2bdeedaa-294f-5395-680f-ffb912ecfe74@redhat.com \
--to=marcel@redhat.com \
--cc=ehabkost@redhat.com \
--cc=peter.maydell@linaro.org \
--cc=qemu-devel@nongnu.org \
--cc=thuth@redhat.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).