search for: initrd_len

Displaying 5 results from an estimated 5 matches for "initrd_len".

2007 Apr 26
2
boot 32 or 64 kernel depending on cpu
...t; #include <stdlib.h> #include <console.h> #include <syslinux/loadfile.h> #include <syslinux/linux.h> #include "cpuid.h" int main(int argc, char *argv[]) { const char *kernel, *initrd; void *kernel_data, *initrd_data; struct initramfs *rd; size_t kernel_len, initrd_len; char cmdline[1024]; uint32_t mem_limit = 0; uint16_t video_mode = 0; int i; unsigned p; char _b[64]; #define pause() (fgets(_b, sizeof _b, stdin)) s_cpu cpu; openconsole(&dev_stdcon_r, &dev_stdcon_w); for (i = 0; i < argc; i++) { printf("argument %d: '%s'\n&q...
2005 May 31
0
[PATCH] Store page and evtchn in start_info_t
...1,6 +265,8 @@ start_info->nr_pt_frames = nr_pt_pages; start_info->mfn_list = vphysmap_start; start_info->domain_controller_evtchn = control_evtchn; + start_info->store_page = vstartinfo_start + PAGE_SIZE; + start_info->store_evtchn = store_evtchn; if ( initrd_len != 0 ) { start_info->mod_start = vinitrd_start; @@ -270,6 +276,9 @@ start_info->cmd_line[MAX_CMDLINE-1] = ''\0''; munmap(start_info, PAGE_SIZE); + /* Tell our caller where we told domain store page was. */ + *store_mfn = page_array[((vstartin...
2013 Nov 19
23
[PATCH v6 00/16] xen: arm: 64-bit guest support and domU FDT autogeneration
Biggest change is to switch the new DTB node to /xen-core-devices instead of /xen at Stefano''s request. I also dropped the few patches title HACK etc which weren''t supposed to be there and fixed up some bits and pieces which folks commented on. George, WRT the freeze I think this is functionality which we cannot ship Xen 4.4 without. The impact is entirely constrained to the
2012 Oct 18
10
[PATCH 0/10] Add a mini-library for running external commands.
Inspired by libvirt's virCommand* internal mini-library, this adds some internal APIs for running commands. The first patch contains the new APIs. The subsequent patches change various parts of the library over to use it. Rich.
2005 Aug 30
4
Re: [Xen-changelog] New console transport and update xenconsoled.
...@@ > start_info->domain_controller_evtchn = control_evtchn; > start_info->store_mfn = *store_mfn; > start_info->store_evtchn = store_evtchn; >+ start_info->console_mfn = *console_mfn; >+ start_info->console_evtchn = console_evtchn; > if ( initrd_len != 0 ) > { > start_info->mod_start = vinitrd_start; >@@ -631,7 +642,9 @@ > unsigned long flags, > unsigned int vcpus, > unsigned int store_evtchn, >- unsigned long *store_mfn) >+...