[SeaBIOS] Re: [PATCH] Support multiple USB HID keyboards/mice

2024-10-27 Thread Daniel Khodabakhsh
From 354935deae7cb79ee9a400222ed950314694194a Mon Sep 17 00:00:00 2001 From: Daniel Khodabakhsh Date: Sat, 26 Oct 2024 04:18:49 -0700 Subject: [PATCH] Support multiple USB HID devices by storing them in a linked list. --- src/hw/usb-hid.c | 108

[SeaBIOS] Re: [PATCH] Add force-boot-menu runtime configuration

2024-11-10 Thread Daniel Khodabakhsh
rom 17a5b1cd90a10661652911a541afc13b69709ebf Mon Sep 17 00:00:00 2001 From: Daniel Khodabakhsh Date: Thu, 7 Nov 2024 18:46:16 -0800 Subject: [PATCH] Force display of the boot menu when boot-menu-wait is a negative number. --- docs/Runtime_config.md | 2 +- src/boot.c | 29 - 2 fi

[SeaBIOS] [PATCH] Support multiple USB HID keyboards/mice

2024-10-26 Thread Daniel Khodabakhsh
This change allows the use of multiple USB HID keyboards and mice. It's similar to the change by Stef van Os from this thread: https://mail.coreboot.org/hyperkitty/list/seabios@seabios.org/thread/O6Y4LUKPFZLNBBJUGKB6MUHG4LPCP3KB/ however this new change uses the linked list approach instead of a

[SeaBIOS] Re: [PATCH] Support multiple USB HID keyboards/mice

2024-11-13 Thread Daniel Khodabakhsh
s to the original linked list approach as 0001-Support-multiple-USB-HID-devices-3.patch Cheers, - Daniel K. From 4d647e6a33638e0e889607d01de24df39ded59fd Mon Sep 17 00:00:00 2001 From: Daniel Khodabakhsh Date: Wed, 13 Nov 2024 01:54:06 -0800 Subject: [PATCH] Use hlists to track USB HID

[SeaBIOS] Re: [PATCH] Support multiple USB HID keyboards/mice

2024-11-07 Thread Daniel Khodabakhsh
Reworked the change a bit to escalate memory errors allowing usb.c:configure_usb_device() to free memory during device initialisation. Also removed some code duplication. >From f6a653b0fcac0359d598c342ed0a51b05d6ebe16 Mon Sep 17 00:00:00 2001 From: Daniel Khodabakhsh Date: Thu, 7 Nov 2024 10

[SeaBIOS] [PATCH] Add force-boot-menu runtime configuration

2024-11-07 Thread Daniel Khodabakhsh
implement it that way but the function to retrieve an integer retrieves an unsigned one so I thought this "boolean" configuration is a good way to implement it. Tested on ASUS KGPE-D16. >From b1d69c8da90ab9ec25cc3f35ed5ee651e8405ff1 Mon Sep 17 00:00:00 2001 From: Daniel Khodabakhsh D

[SeaBIOS] Re: [PATCH] Support multiple USB HID keyboards/mice

2024-11-14 Thread Daniel Khodabakhsh
so I thought I should check just to be sure. I've just removed these checks now What's the best way to post the latest changes, is just an attachment preferred or in the email body as well? Cheers, - Daniel K. From 1822908294904302ed5c5e103ef502ae13db09ab Mon Sep 17 00:00:00 2001 From: Daniel K

[SeaBIOS] Re: [PATCH] Support multiple USB HID keyboards/mice

2024-11-21 Thread Daniel Khodabakhsh
As per your comments in my other patch Kevin I've updated this one with the signed-off by line as well: Support multiple USB HID devices by storing them in a linked list. Signed-off-by: Daniel Khodabakhsh --- src/hw/usb-hid.c | 109 ++- 1

[SeaBIOS] Re: [PATCH] Add force-boot-menu runtime configuration

2024-11-21 Thread Daniel Khodabakhsh
hile (get_keystroke(0) >= 0) ; -- 2.46.0 Force display of the boot menu when boot-menu-wait is a negative number. Signed-off-by: Daniel Khodabakhsh --- docs/Runtime_config.md | 2 +- src/boot.c | 29 - 2 files changed, 17 insertions(+), 14 d

[SeaBIOS] Re: [PATCH] Add force-boot-menu runtime configuration

2024-12-21 Thread Daniel Khodabakhsh
Here's the patch file with the Signed-off-by line attached On Thu, Nov 21, 2024 at 9:15 PM Daniel Khodabakhsh wrote: > > > > > Thanks. Looks fine to me, but a patch would require a signed-off-by > > line - see: https://www.seabios.org/Contributing > > > >

[SeaBIOS] Re: [PATCH] Support multiple USB HID keyboards/mice

2025-01-03 Thread Daniel Khodabakhsh
the program flow for usb initialisation attached as an image On Thu, Nov 21, 2024 at 9:19 PM Daniel Khodabakhsh wrote: > > As per your comments in my other patch Kevin I've updated this one > with the signed-off by line as well: > > Support multiple USB HID devices by stor

[SeaBIOS] Re: [PATCH] Support multiple USB HID keyboards/mice

2025-01-05 Thread Daniel Khodabakhsh
Thanks for the explanation Kevin! I made the modification and tried it locally and it does work. I've updated the patch and attached it to this email. Cheers, - Daniel K. From e74ab54887e1c67bccffd618bb43b59d89e6fe2c Mon Sep 17 00:00:00 2001 From: Daniel Khodabakhsh Date: Thu, 7 Nov 2024