diff options
author | Michael S. Tsirkin <mst@redhat.com> | 2014-02-02 22:45:28 +0200 |
---|---|---|
committer | Michael S. Tsirkin <mst@redhat.com> | 2014-02-05 16:55:50 +0200 |
commit | 7454e51d2b26ca6c2fd6fb77c4adc3ab11ec590f (patch) | |
tree | 761f56db6c560ed6efd54ef167cedda0d23c0370 /hw/i386/pc.c | |
parent | d160024fe52cd4970ee80904dbdc7a22ddf86c96 (diff) | |
download | qemu-7454e51d2b26ca6c2fd6fb77c4adc3ab11ec590f.tar.gz qemu-7454e51d2b26ca6c2fd6fb77c4adc3ab11ec590f.tar.bz2 qemu-7454e51d2b26ca6c2fd6fb77c4adc3ab11ec590f.zip |
pc.c: better error message on initrd sizing failure
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Diffstat (limited to 'hw/i386/pc.c')
-rw-r--r-- | hw/i386/pc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/hw/i386/pc.c b/hw/i386/pc.c index 348b15f267..e715a3312d 100644 --- a/hw/i386/pc.c +++ b/hw/i386/pc.c @@ -835,8 +835,8 @@ static void load_linux(FWCfgState *fw_cfg, initrd_size = get_image_size(initrd_filename); if (initrd_size < 0) { - fprintf(stderr, "qemu: error reading initrd %s\n", - initrd_filename); + fprintf(stderr, "qemu: error reading initrd %s: %s\n", + initrd_filename, strerror(errno)); exit(1); } |