[ipxe-devel] [PATCH 1/2] [autoboot] Support platforms which don't process the CTRL key

2015-05-23 Thread bazz
The user can now press the ESC key to abort the autoboot process and gain access to the shell. Signed-off-by: Michael J. Bazzinotti mbazzino...@gmail.com --- src/usr/autoboot.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/usr/autoboot.c b/src/usr/autoboot.c index

[ipxe-devel] [PATCH 2/2] [config] Support platforms which do not process the CTRL key

2015-05-23 Thread bazz
This maintains backwards-support for the CTRL key functions, but also adds regular key functions for the platforms that do not process the CTRL key. These new keys are ESC and DELETE, and are meaningful. Signed-off-by: Michael J. Bazzinotti mbazzino...@gmail.com --- src/hci/tui/settings_ui.c | 9

[ipxe-devel] [PATCH 0/2] Support platforms that do not process the CTRL key

2015-05-23 Thread bazz
iPXE does not function properly on platforms that do not support the CTRL key. An example of such a platform is the Apple Macbook Pro (2009). This patchset provides core functionality on these unsupported platforms. Issues Solved: * When booting into iPXE, CTRL-B does not cancel autoboot and

[ipxe-devel] [ipxe/ipxe] successful wpa handshake (memcmp polarity) (#103)

2020-01-14 Thread Bazz
Fix memcmp() to return proper standard positive/negative values for unequal comparisons. Similar to commit 3946aa9. The current implementation is backwards (i.e. the functions are returning negative when they should be positive and vice-versa). Currently all other consumers of these functions