diff options
author | hpa <hpa> | 2005-01-06 22:34:06 +0000 |
---|---|---|
committer | hpa <hpa> | 2005-01-06 22:34:06 +0000 |
commit | a966e54c41674cfb72340fd436bdf85988c14dd7 (patch) | |
tree | 93d244d27e6c2f9a6bca7b2432ba66c841be57fb /memdisk/setup.c | |
parent | fb7489b14bc413a373e4138157a34e2683a1aa26 (diff) | |
download | syslinux-a966e54c41674cfb72340fd436bdf85988c14dd7.tar.gz |
Commit 3.10 changes to mainline. In particular, support multi-file
initrd, and the shuffle and boot API.
Diffstat (limited to 'memdisk/setup.c')
-rw-r--r-- | memdisk/setup.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/memdisk/setup.c b/memdisk/setup.c index 24ce060b..0832a266 100644 --- a/memdisk/setup.c +++ b/memdisk/setup.c @@ -317,7 +317,8 @@ void unzip_if_needed(uint32_t *where_p, uint32_t *size_p) } if ( !okmem ) { - puts("Not enough memory to decompress image\n"); + printf("Not enough memory to decompress image (need 0x%08x bytes)\n", + gzdatasize); die(); } |