Search results

  1. N

    Compiling kernel module out of tree

    Hi, With FreeBSD 8.1 I was able to build a kernel module in my home directory with a Makefile and the C source file. The Makefile contains: .PATH: ${.CURDIR} KMOD= uslcom SRCS= opt_bus.h opt_usb.h device_if.h bus_if.h usb_if.h usbdevs.h uslcom.c .include <bsd.kmod.mk> Now, with FreeBSD...
  2. N

    Auto mounting again...

    To automount only removable media, pop this in a HAL policy file like /usr/local/etc/hal/fdi/policy/20-disable-fixed-automount.fdi: <device> <match key="storage.hotpluggable" bool="false"> <match key="storage.removable" bool="false"> <merge key="storage.automount_enabled_hint"...
  3. N

    FreeBSD USB equivalent to Linux usb_control_msg

    Hi, Can anyone clarify how to go about doing a synchronous usb control transfer, similar to Linux's usb_control_msg? I want to implement the TIOCMGET ioctl on a usb-to-serial converter. The Linux driver uses synchronous control messages to read DCE and CTS serial pin status, and I want to do...
Back
Top