[kvm-devel] [PATCH 3 of 7] Create new load_uimage() gunzip support to uboot loader in Qemu

2008-03-19 Thread Jerone Young
# HG changeset patch # User Jerone Young [EMAIL PROTECTED] # Date 1205937719 18000 # Branch merge # Node ID 6bc8a342745dd8fefbe229cc4626144b19786117 # Parent 5371763b15da496413c4e818fb87a92c5e66eb56 Create new load_uimage() gunzip support to uboot loader in Qemu This patch adds the ability for

[kvm-devel] [PATCH 3 of 7] Create new load_uimage() gunzip support to uboot loader in Qemu

2008-03-19 Thread Jerone Young
# HG changeset patch # User Jerone Young [EMAIL PROTECTED] # Date 1205953006 18000 # Branch merge # Node ID 05d6146c77066b2bc0dd8349ee39636bc303628d # Parent be1aa50ab7de0a9e0441e46769e2a40a582fc3c0 Create new load_uimage() gunzip support to uboot loader in Qemu This patch adds the ability for

Re: [kvm-devel] [PATCH 3 of 7] Create new load_uimage() gunzip support to uboot loader in Qemu

2008-03-19 Thread Anthony Liguori
-cpu_physical_memory_write_rom(hdr-ih_load, data, hdr-ih_size); - -return hdr-ih_size; +tmp_loaded_image_size = hdr-ih_size; + +if (hdr-ih_comp == IH_COMP_GZIP) { +uncompressed_data = qemu_malloc(MAX_KERNEL_SIZE); +ret = gunzip(uncompressed_data,

[kvm-devel] [PATCH 3 of 7] Create new load_uimage() gunzip support to uboot loader in Qemu

2008-03-19 Thread Jerone Young
# HG changeset patch # User Jerone Young [EMAIL PROTECTED] # Date 1205956788 18000 # Branch merge # Node ID e106ad4ec36334a0e2158a1396b4cbfbfeeb552e # Parent cd9ca907432cd14522809f098cc64d5a2b88705b Create new load_uimage() gunzip support to uboot loader in Qemu This patch adds the ability for

[kvm-devel] [PATCH 3 of 7] Create new load_uimage() gunzip support to uboot loader in Qemu

2008-03-18 Thread Jerone Young
# HG changeset patch # User Jerone Young [EMAIL PROTECTED] # Date 1205870472 18000 # Branch merge # Node ID 25515e6983ba1e070cbdcb7be1527426a097048b # Parent aa10b5ca2f11cd571ae8a06c1e92425b7f7407ca Create new load_uimage() gunzip support to uboot loader in Qemu This patch adds the ability for