From: aurel32 Date: Tue, 22 Apr 2008 06:49:43 +0000 (+0000) Subject: x86: remove load_kernel() X-Git-Tag: TizenStudio_2.0_p2.3~11992 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=9b2b32f215019ce85036a1d5e043f73a864baaf7;p=sdk%2Femulator%2Fqemu.git x86: remove load_kernel() (Jan Kiszka) git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@4233 c046a42c-6fe2-441c-8c8c-71466251a162 --- diff --git a/hw/pc.c b/hw/pc.c index 44a021b..abd96f0 100644 --- a/hw/pc.c +++ b/hw/pc.c @@ -445,37 +445,6 @@ static void generate_bootsect(uint32_t gpr[8], uint16_t segs[6], uint16_t ip) bdrv_set_boot_sector(drives_table[hda].bdrv, bootsect, sizeof(bootsect)); } -static int load_kernel(const char *filename, uint8_t *addr, - uint8_t *real_addr) -{ - int fd, size; - int setup_sects; - - fd = open(filename, O_RDONLY | O_BINARY); - if (fd < 0) - return -1; - - /* load 16 bit code */ - if (read(fd, real_addr, 512) != 512) - goto fail; - setup_sects = real_addr[0x1F1]; - if (!setup_sects) - setup_sects = 4; - if (read(fd, real_addr + 512, setup_sects * 512) != - setup_sects * 512) - goto fail; - - /* load 32 bit code */ - size = read(fd, addr, 16 * 1024 * 1024); - if (size < 0) - goto fail; - close(fd); - return size; - fail: - close(fd); - return -1; -} - static long get_file_size(FILE *f) { long where, size;