mirror of
https://github.com/ipxe/sanbootconf.git
synced 2025-05-08 17:20:11 +08:00
[driver] Warn about use of unsupported software
It is no longer possible to fix any bugs that might be discovered in gPXE, and sanbootconf is unlikely to be hacked to work around any such bugs. Users should upgrade to iPXE instead, since iPXE is actively maintained. Signed-off-by: Michael Brown <mbrown@fensystems.co.uk>
This commit is contained in:
parent
76f7a9e1cd
commit
86e01ad801
@ -86,6 +86,12 @@ NTSTATUS find_acpi_table ( PCHAR signature,
|
||||
"\"%.6s\" OEM table ID \"%.8s\"\n", signature,
|
||||
( BASEMEM_START + offset ), table->oem_id,
|
||||
table->oem_table_id );
|
||||
/* Warn about use of unsupported software */
|
||||
if ( strcmp ( table->oem_table_id, "gPXE" ) == 0 ) {
|
||||
DbgPrint ( "*** WARNING: gPXE is no longer supported; "
|
||||
"please upgrade to iPXE (http://ipxe.org) "
|
||||
"***\n" );
|
||||
}
|
||||
/* Create copy of table */
|
||||
*table_copy = ExAllocatePoolWithTag ( NonPagedPool,
|
||||
table->length,
|
||||
|
Loading…
x
Reference in New Issue
Block a user