Michael Brown
Michael Brown
Quoting the Python documentation for sets: "The subset and equality comparisons do not generalize to a total ordering function. For example, any two nonempty disjoint sets are not equal and...
# Description As a user, I would like iPXE's `netX` to point to the autoboot device (if known) on entry, so that my scripts can operate on the least surprising...
On FreeBSD the gcc package installs a versioned binary such as "gcc12". There is no plain "gcc" binary. Simplify building on such systems by respecting the $(CC) variable. Signed-off-by: Michael...
The isohybrid tool (that creates a partition table to describe the ESP embedded within the ISO image) relies upon the existence of the x86-only isolinux.bin file. This file may not...
> Same problem with Virtualbox 7.0.8 and all Intel 1000 cards in EFI mode _Originally posted by @Reonaydo in https://github.com/ipxe/ipxe/issues/624#issuecomment-1591551656_ Reproduction instructions: create new VirtualBox VM with EFI mode selected,...
Flask 2.2.x removed the MethodViewType metaclass from which ResourceMeta currently inherits. Fix by inheriting from type(MethodView) instead. Fixes: #212 Fixed-by: James Wu
### Description As a user, I would like to be able to boot ARM versions of Windows via wimboot, so that I can take advantage of HTTP boot. ### Acceptance...
Not all SPI controllers seem to support DMA from data declared as "static const". Work around this problem by placing static data values either on the stack (for immediate spi_sync()...
The UEFI specification allows GetRNG() to return EFI_NOT_READY, which is not a particularly helpful error status since there is nothing that can sensibly be done except to retry immediately. Retry...