mirror of
https://github.com/xcat2/xcat-dep.git
synced 2024-11-21 17:11:45 +00:00
cae1bcfed9
-Add back in harmless kvm workaround, stable kvm still susceptible, two nops areacceptable even when they don't matter. -Add scalability enhancement patches to KVM -Explicitly remove troublesome 'IMAGE_EFI' support (causes UEFI systems to reboot) -Remove Multiboot image support (mboot.c32 is much more usable, and gPXE codebase would require a lot of code to become equivalent that would likely push it beyond the 64k limit. -Add 'NVO' commands, which really includes changing transient DHCP options
67 lines
2.7 KiB
Diff
67 lines
2.7 KiB
Diff
diff -urN gpxe-0.9.7/src/config/general.h gpxe-0.9.7-config/src/config/general.h
|
|
--- gpxe-0.9.7/src/config/general.h 2009-07-09 10:15:27.000000000 -0400
|
|
+++ gpxe-0.9.7-config/src/config/general.h 2009-07-09 10:19:39.000000000 -0400
|
|
@@ -48,7 +48,7 @@
|
|
#undef DOWNLOAD_PROTO_NFS /* Network File System */
|
|
#define DOWNLOAD_PROTO_HTTP /* Hypertext Transfer Protocol */
|
|
#undef DOWNLOAD_PROTO_HTTPS /* Secure Hypertext Transfer Protocol */
|
|
-#undef DOWNLOAD_PROTO_FTP /* File Transfer Protocol */
|
|
+#define DOWNLOAD_PROTO_FTP /* File Transfer Protocol */
|
|
#undef DOWNLOAD_PROTO_TFTM /* Multicast Trivial File Transfer Protocol */
|
|
#undef DOWNLOAD_PROTO_SLAM /* Scalable Local Area Multicast */
|
|
#undef DOWNLOAD_PROTO_FSP /* FSP? */
|
|
@@ -59,7 +59,7 @@
|
|
*/
|
|
|
|
//#undef SANBOOT_PROTO_ISCSI /* iSCSI protocol */
|
|
-//#undef SANBOOT_PROTO_AOE /* AoE protocol */
|
|
+#undef SANBOOT_PROTO_AOE /* AoE protocol */
|
|
|
|
/*
|
|
* Name resolution modules
|
|
@@ -76,17 +76,17 @@
|
|
* you want to use.
|
|
*
|
|
*/
|
|
-//#define IMAGE_NBI /* NBI image support */
|
|
-//#define IMAGE_ELF /* ELF image support */
|
|
-//#define IMAGE_FREEBSD /* FreeBSD kernel image support */
|
|
-//#define IMAGE_MULTIBOOT /* MultiBoot image support */
|
|
-//#define IMAGE_AOUT /* a.out image support */
|
|
-//#define IMAGE_WINCE /* WinCE image support */
|
|
-//#define IMAGE_PXE /* PXE image support */
|
|
-//#define IMAGE_SCRIPT /* gPXE script image support */
|
|
-//#define IMAGE_BZIMAGE /* Linux bzImage image support */
|
|
-//#define IMAGE_COMBOOT /* SYSLINUX COMBOOT image support */
|
|
-//#define IMAGE_EFI /* EFI image support */
|
|
+#define IMAGE_NBI /* NBI image support */
|
|
+#define IMAGE_ELF /* ELF image support */
|
|
+#define IMAGE_FREEBSD /* FreeBSD kernel image support */
|
|
+#undef IMAGE_MULTIBOOT /* MultiBoot image support */
|
|
+#undef IMAGE_AOUT /* a.out image support */
|
|
+#undef IMAGE_WINCE /* WinCE image support */
|
|
+#define IMAGE_PXE /* PXE image support */
|
|
+#define IMAGE_SCRIPT /* gPXE script image support */
|
|
+#define IMAGE_BZIMAGE /* Linux bzImage image support */
|
|
+#undef IMAGE_COMBOOT /* SYSLINUX COMBOOT image support */
|
|
+#undef IMAGE_EFI /* EFI image support */
|
|
|
|
/*
|
|
* Command-line commands to include
|
|
@@ -94,13 +94,13 @@
|
|
*/
|
|
#define AUTOBOOT_CMD /* Automatic booting */
|
|
#define NVO_CMD /* Non-volatile option storage commands */
|
|
-#define CONFIG_CMD /* Option configuration console */
|
|
+#undef CONFIG_CMD /* Option configuration console */
|
|
#define IFMGMT_CMD /* Interface management commands */
|
|
#define ROUTE_CMD /* Routing table management commands */
|
|
#define IMAGE_CMD /* Image management commands */
|
|
#define DHCP_CMD /* DHCP management commands */
|
|
#define SANBOOT_CMD /* SAN boot commands */
|
|
-#define LOGIN_CMD /* Login command */
|
|
+#undef LOGIN_CMD /* Login command */
|
|
|
|
/*
|
|
* Obscure configuration options
|