search for: scan_etherboot_nic

Displaying 3 results from an estimated 3 matches for "scan_etherboot_nic".

2008 Apr 10
1
Xen tools build error on c/s 17427
...eclaration-after-statement -D__XEN_TOOLS__ -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -mno-tls-direct-seg-refs -Werror -fno-stack-protector -fno-builtin -msoft-float -I../../../tools/include -I. -c -o hvmloader.o hvmloader.c cc1: warnings being treated as errors hvmloader.c: In function ''scan_etherboot_nic'': hvmloader.c:363: warning: pointer targets in passing argument 1 of ''strncmp'' differ in signedness hvmloader.c:378: warning: pointer targets in passing argument 1 of ''strncmp'' differ in signedness hvmloader.c:396: warning: pointer targets in passing arg...
2012 Feb 11
14
[PATCH v3 0/5] hvmloader: Make ROM dependencies optional
This patch set mainly allows the user to build a seabios or rombios only version of hvmloader. In addition, when building a seabios only hvmloader, Option ROMs like vgabios and etherboot are no longer required, and therefore can be disabled from the build. Dependency on the bcc compiler can also be avoided the same way. v2: Separate patches for separate issues Introduced config option to
2012 Feb 05
4
[PATCH RFC] hvmloader: Make ROM dependencies optional
...static int scan_option_rom( return round_option_rom(rom->rom_size * 512 + 1); } +#ifdef ENABLE_ETHERBOOT /* * Scan the PCI bus for the first NIC supported by etherboot, and copy * the corresponding rom data to *copy_rom_dest. Returns the length of the @@ -264,6 +265,7 @@ static int scan_etherboot_nic(unsigned int option_rom_end, return rom_size; } +#endif /* * Scan the PCI bus for the devices that have an option ROM, and copy @@ -475,16 +477,20 @@ int main(void) switch ( virtual_vga ) { case VGA_cirrus: +#ifdef ENABLE_CIRRUSVGA printf("L...