mirror of
https://github.com/ipxe/ipxe
synced 2025-12-21 12:30:20 +03:00
[vmware] Allow settings to be specified in the VMware .vmx file
Allow iPXE settings to be specified in the .vmx file via the VMware
GuestInfo mechanism. For example:
guestinfo.ipxe.filename = "http://boot.ipxe.org/demo/boot.php"
guestinfo.ipxe.dns = "192.168.0.1"
guestinfo.ipxe.net0.ip = "192.168.0.15"
guestinfo.ipxe.net0.netmask = "255.255.255.0"
guestinfo.ipxe.net0.gateway = "192.168.0.1"
Signed-off-by: Michael Brown <mcb30@ipxe.org>
This commit is contained in:
@@ -280,13 +280,16 @@ REQUIRE_OBJECT ( tap );
|
||||
#endif
|
||||
|
||||
/*
|
||||
* Drag in relevant BOFM entry points
|
||||
* Drag in relevant sideband entry points
|
||||
*/
|
||||
#ifdef CONFIG_BOFM
|
||||
#ifdef BOFM_EFI
|
||||
REQUIRE_OBJECT ( efi_bofm );
|
||||
#endif /* BOFM_EFI */
|
||||
#endif /* CONFIG_BOFM */
|
||||
#ifdef VMWARE_SETTINGS
|
||||
REQUIRE_OBJECT ( guestinfo );
|
||||
#endif /* VMWARE_SETTINGS */
|
||||
|
||||
/*
|
||||
* Drag in selected keyboard map
|
||||
|
||||
@@ -10,5 +10,6 @@
|
||||
FILE_LICENCE ( GPL2_OR_LATER );
|
||||
|
||||
//#define CONFIG_BOFM /* IBM's BladeCenter Open Fabric Manager */
|
||||
//#define VMWARE_SETTINGS /* VMware GuestInfo settings */
|
||||
|
||||
#endif /* CONFIG_SIDEBAND_H */
|
||||
|
||||
Reference in New Issue
Block a user