aboutsummaryrefslogtreecommitdiff
path: root/devnode
Commit message (Collapse)AuthorAgeFilesLines
* Add a description comment for the MIG type translation filesZhaoming Luo2024-12-141-1/+2
| | | | | Signed-off-by: Zhaoming Luo <zhmingluo@163.com> Message-ID: <20241213005831.748151-1-zhmingluo@163.com>
* devnode: Port to x86_64Sergey Bugaev2023-05-101-8/+12
| | | | Message-Id: <20230508213136.608575-25-bugaevc@gmail.com>
* Implement device_open_new for all the translators implementing the device ↵Flavio Cruz2023-05-072-1/+11
| | | | | | interface. Message-Id: <ZFfcloxDKSiyHJTH@jupiter.tail36e24.ts.net>
* Fix const warningsSamuel Thibault2022-01-171-1/+1
| | | | | Now that the RPCs have const, this forces us cleaning our const-meant functions.
* Make RPC input array parameters constSamuel Thibault2022-01-161-2/+2
| | | | | This follows mig's cf4bcc3f1435 ("Also add const qualifiers on server side")
* Add new RPC server stubs for device_intr_*Samuel Thibault2020-07-181-0/+13
| | | | | | | * boot/boot.c (ds_device_intr_register, ds_device_intr_ack): New stubs. * devnode/devnode.c (ds_device_intr_register, ds_device_intr_ack): New stubs. * eth-multiplexer/device_impl.c (ds_device_intr_register, ds_device_intr_ack): New stubs.
* devnode: fix falling back to the kernel driverJustus Winter2016-02-071-6/+15
| | | | | | * devnode/devnode.c (ds_device_open): Do not exit if opening the master device fails. (parse_opt): Likewise.
* Use DEVICE_IMPORTS to include libports/ports.hFlavio Cruz2015-12-311-0/+2
| | | | | | | | | | | | | | | | | | | | | | On Thu, Dec 31, 2015 at 04:28:14PM +0100, Justus Winter wrote: > Quoting Samuel Thibault (2015-12-31 16:11:30) > > Flavio Cruz, on Thu 31 Dec 2015 15:56:31 +0100, wrote: > > > This fixes three compiler warnings about ports_payload_get_name. > > > > > > * devnode/Makefile: Define DEVICE_IMPORTS. > > > * term/Makefile: Likewise. > > > * trans/Makefile: Likewise. > > > > Why not adding them to the corresponding mig-mutate.h? > > Sometimes we don't have a mig-mutate.h, e.g. for most (all?) > translators in trans/. I prefer stuffing that in a .h as well, but I > wouldn't be opposed to just applying the patch, as we use both ways of > mutating the mig types. Agreed. I think only devnode should include it in mig-mutate.h. For term, only some stubs are including mig-mutate.h. For trans, there's no mig-mutate.h at all. Here's the modified patch.
* Add missing libraries to fix link errorsFlavio Cruz2015-12-301-1/+1
| | | | | | | | | | | | | | This fixes several linking problems I had in my recent cross-compilation of the Hurd. I added missing static libraries and also organized some of the targets for more concise rules. * console-client/Makefile: Add libiohelp.a and libihash.a. * daemons/Makefile: Add libihash.a and libshouldbeinlibc.a. * devnode/Makefile: Add iohelp and ihash to HURDLIBS. * random/Makefile: Likewise. * trans/Makefile: Reorder targets alphabetically and add libiohelp.a and libihash.a. * utils/Makefile: Add libihash.a.
* Add devnode translatorSamuel Thibault2015-11-295-0/+481
* devnode: New directory * Makefile (prog-subdirs): Add devnode.