From: Ross Kendall Axe <ross.axe@blueyonder.co.uk>
To: qemu-devel@nongnu.org
Subject: [Qemu-devel] [patch] Remove requirement for -hda with -kernel
Date: Wed, 27 Apr 2005 03:54:12 +0100 [thread overview]
Message-ID: <426EFED4.8090002@blueyonder.co.uk> (raw)
[-- Attachment #1.1: Type: text/plain, Size: 210 bytes --]
The requirement to provide an -hda argument when doing a direct boot of
a linux kernel has irritated me for some time. This patch removes that
requirement by creating a temporary 1 sector hda as needed.
Ross
[-- Attachment #1.2: qemu-linux-nohda.patch --]
[-- Type: text/x-patch, Size: 1478 bytes --]
Index: hw/pc.c
===================================================================
RCS file: /cvsroot/qemu/qemu/hw/pc.c,v
retrieving revision 1.35
diff -u -p -r1.35 pc.c
--- hw/pc.c 15 Jan 2005 12:02:56 -0000 1.35
+++ hw/pc.c 27 Apr 2005 02:29:20 -0000
@@ -446,8 +446,26 @@ void pc_init(int ram_size, int vga_ram_s
uint8_t old_bootsect[512];
if (bs_table[0] == NULL) {
- fprintf(stderr, "A disk image must be given for 'hda' when booting a Linux kernel\n");
- exit(1);
+ char template[] = "/tmp/qemu.XXXXXX";
+ int tmpfile = mkstemp(template);
+
+ fprintf(stderr, "qemu: Disk image not given for 'hda' when booting"
+ " a Linux kernel; inventing one\n");
+ if(tmpfile == -1) {
+ fprintf(stderr, "qemu: couldn't create temporary diskimage\n");
+ exit(1);
+ }
+ lseek(tmpfile, 511, SEEK_SET);
+ write(tmpfile, "", 1);
+ bs_table[0] = bdrv_new("hda");
+ if (bdrv_open(bs_table[0], template, snapshot) < 0) {
+ fprintf(stderr, "qemu: could not load temporary diskimage '%s'\n",
+ template);
+ exit(1);
+ }
+ close(tmpfile);
+ unlink(template);
+ boot_device = 'c';
}
snprintf(buf, sizeof(buf), "%s/%s", bios_dir, LINUX_BOOT_FILENAME);
ret = load_image(buf, bootsect);
[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 256 bytes --]
next reply other threads:[~2005-04-27 2:55 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2005-04-27 2:54 Ross Kendall Axe [this message]
2005-04-28 19:53 ` [Qemu-devel] [patch] Remove requirement for -hda with -kernel Fabrice Bellard
2005-04-29 0:47 ` Ross Kendall Axe
2005-04-29 21:56 ` Ross Kendall Axe
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=426EFED4.8090002@blueyonder.co.uk \
--to=ross.axe@blueyonder.co.uk \
--cc=qemu-devel@nongnu.org \
/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).