This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "Hurd".
The branch, master has been updated via 5ca0fa556b24463bd52ce5e45dddefcd766ae9c3 (commit) from 85d59af5be84d122adab484a9c961462d4fdbfda (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 5ca0fa556b24463bd52ce5e45dddefcd766ae9c3 Author: Zhaoming Luo <zhming...@163.com> Date: Wed Dec 11 08:54:15 2024 +0800 Add rtc translator and RTC CMOS driver A /hurd/rtc translator will be created as, users can create a /dev/rtc device using the following command: ``` sudo settrans -c /dev/rtc /hurd/rtc ``` * Makefile: add rtc-cmos server into the compile chain * hurd/pioctl.defs: new file. Interfaces for rtc ioctl operations * hurd/rtc.h: new file. Interfaces for rtc device * rtc/Makefile: new file. Makefile for rtc server * rtc/main.c: new file. Initialisation for rtc translator * rtc/mig-mutate.h: new file. Type translation for rtc server * rtc/rtc-cmos_pioctl-ops.c: new file. The rtc-cmos server-side implementation Signed-off-by: Zhaoming Luo <zhming...@163.com> Message-ID: <20241211005415.507656-2-zhming...@163.com> ----------------------------------------------------------------------- Summary of changes: Makefile | 3 +- hurd/pioctl.defs | 59 +++++++ hurd/rtc.h | 51 ++++++ {include => rtc}/Makefile | 29 ++-- rtc/main.c | 104 ++++++++++++ libcons/vcons-add.c => rtc/mig-mutate.h | 20 +-- rtc/rtc-cmos_pioctl-ops.c | 276 ++++++++++++++++++++++++++++++++ 7 files changed, 517 insertions(+), 25 deletions(-) create mode 100644 hurd/pioctl.defs create mode 100644 hurd/rtc.h copy {include => rtc}/Makefile (63%) create mode 100644 rtc/main.c copy libcons/vcons-add.c => rtc/mig-mutate.h (67%) create mode 100644 rtc/rtc-cmos_pioctl-ops.c hooks/post-receive -- Hurd