Re: [web:] document Damien's audio subsystem plan.

2024-10-28 Thread Samuel Thibault
jbra...@dismail.de, le ven. 18 oct. 2024 12:45:50 -0400, a ecrit: > * open_issues/audio.mdwn: new file based on some irc logs. Applied, thanks! > --- > open_issues/audio.mdwn | 115 + > 1 file changed, 115 insertions(+) > create mode 100644 open_issues/au

Re: [PATCH v2 3/3 hurd] console-client: Enable switching to gfx console when available

2024-10-28 Thread Samuel Thibault
Applied, thanks! Damien Zammit, le lun. 28 oct. 2024 08:09:20 +, a ecrit: > This compiles in and enables the new framebuffer codepath > in the vga driver, if detected. > > --- > console-client/Makefile | 3 ++- > console-client/vga.c| 48 +++-- > 2 fi

Re: [PATCH v2 2/3 hurd] console-client: Add graphical console video passthrough

2024-10-28 Thread Samuel Thibault
Applied, thanks! Damien Zammit, le lun. 28 oct. 2024 08:09:13 +, a ecrit: > When bootloader sets a linear framebuffer mode and passes > the required info to Hurd via multiboot info table, we > can use this framebuffer as is. > Otherwise, fall back to EGA text mode as before. > > This is just

Re: [PATCH v2 1/3 hurd] xkb: Fix delete key in console

2024-10-28 Thread Samuel Thibault
Applied, thanks! Damien Zammit, le lun. 28 oct. 2024 08:09:05 +, a ecrit: > Adding the missing NULL sentinel pointer allows > delete key to function without crashing pc_kbd driver. > --- > console-client/xkb/xkb.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/conso

Re: Using tm_t in a defs file

2024-10-28 Thread Sergey Bugaev
On Mon, Oct 28, 2024 at 9:35 AM Zhaoming Luo wrote: > I see, so _IOR is a wrapper of _IOC for calculating an ioctl number. > This ioctl number is used for invoking the routine in the rtc server. We > need to define _IOT_rtc_time because calculating RTC_RD_TIME requires > the ioctl number of rtc, _

[PATCH v2 2/3 hurd] console-client: Add graphical console video passthrough

2024-10-28 Thread Damien Zammit
When bootloader sets a linear framebuffer mode and passes the required info to Hurd via multiboot info table, we can use this framebuffer as is. Otherwise, fall back to EGA text mode as before. This is just the new framebuffer code as a separate commit. --- console-client/fb.c | 638

[PATCH v2 1/3 hurd] xkb: Fix delete key in console

2024-10-28 Thread Damien Zammit
Adding the missing NULL sentinel pointer allows delete key to function without crashing pc_kbd driver. --- console-client/xkb/xkb.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/console-client/xkb/xkb.c b/console-client/xkb/xkb.c index 31253f5c..8759c8bf 100644 --- a/console-

[PATCH v2 3/3 hurd] console-client: Enable switching to gfx console when available

2024-10-28 Thread Damien Zammit
This compiles in and enables the new framebuffer codepath in the vga driver, if detected. --- console-client/Makefile | 3 ++- console-client/vga.c| 48 +++-- 2 files changed, 39 insertions(+), 12 deletions(-) diff --git a/console-client/Makefile b/consol