Sponsored Content
Full Discussion: Port Linux Driver to Unix
Operating Systems Linux Port Linux Driver to Unix Post 302147869 by idle on Wednesday 28th of November 2007 10:44:53 PM
Old 11-28-2007
1. The OS-X kernel is based on NetBSD.

2. Is this for an Intel Mac or a PowerPC Mac?

3. Could you explain what "the modem/printer port of the usb side in unix" means?

4. Do you have the source code for the Linux version, or just the binary driver?

5. Are you allowed to port their Intellectual Property to another OS? Will they own it if you do?

6. Have you ever done any programming? Writing a device driver is not something I'd recommend as a first project.
 

10 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

modem driver for linux

how to get modem driver for linux on intel netvista a22p model?please help.Thanks.:( (2 Replies)
Discussion started by: xinubhaskar
2 Replies

2. UNIX for Dummies Questions & Answers

Need Book for Linux Basics and Linux device driver.

hai friend, I am new to Linux, i need a book for Linux basic and Linux device driver .. plz send the book name and author(Easy to learn and mostly used by programmers) and also send the link if it is available in Net... Thank you. ... (0 Replies)
Discussion started by: sundar.lsr
0 Replies

3. UNIX for Advanced & Expert Users

Help with porting a linux SNC driver to OSX

Hi guys! I'm a regular joe, so this thread might be in the wrong section and if I appear dumb it mostly because I am..and have lack of knowledge about the unix world. :) Please move the tread if needed. To the problem. We are allot of people in the OSx86 community that need a linux driver... (0 Replies)
Discussion started by: Blackshore
0 Replies

4. Solaris

Porting a Linux Driver to Solaris

Hi all, Has anyone experience with proting a Linux driver (C-code) to Solaris 10? I have a Sunix SATA card with a inicio1622 chipset, but no driver available. From the website of inicio I downloaded the drivercode for Linux 2.4. Having done some investigation I found a Solaris driver... (4 Replies)
Discussion started by: longwave
4 Replies

5. Ubuntu

driver for external drive case on usb port

Hi I have to buy my selfe external case for hdd but I don't know whether my ubuntu linux, needs some driver to be able to work with this device or it has inside of itselfe this driver ? rhx for help. (1 Reply)
Discussion started by: presul
1 Replies

6. UNIX for Dummies Questions & Answers

Linux driver installation and so on.

I find Linux drivers to be the most elusive topic that there is and have enough questions about them that could fill a guide or tutorial if there was one. From what I can gather drivers are installed by one of three ways. 1- Recompile the kernel to include a driver that is included in the... (2 Replies)
Discussion started by: theKbStockpiler
2 Replies

7. Hardware

Difference between platform driver,codec driver and Machine driver

In general terms what are the differences platform driver,codec driver and Machine driver? (1 Reply)
Discussion started by: rupeshkp728
1 Replies

8. Hardware

ATI Radeon HD 7450 DP Linux driver

I'm looking for Linux driver for ATI Radeon HD 7450 graphics card. The OS I'm using is RHEL5.7 server. The desktop is HP compaq elite 8300 SFF. Couldn't find it in hp.com support website. Downloaded AMD Catalyst 13.1 Proprietary Linux x86 Display Driver (file size is 109MB) from... (1 Reply)
Discussion started by: joker_789us
1 Replies

9. Red Hat

Linux ODBC driver issue

Hi Gurus, I have a odbc in Linux. when I run command ldd. I got following result: # ldd DWora26.so linux-vdso.so.1 => (0x00007fff26355000) libpthread.so.0 => /lib64/libpthread.so.0 (0x00007fc31e70a000) librt.so.1 => /lib64/librt.so.1 (0x00007fc31e501000) ... (1 Reply)
Discussion started by: ken6503
1 Replies

10. UNIX for Advanced & Expert Users

Graphics Driver Support in Linux

It's not exactly a question and more of a discussion. I found very less graphics application being developed for linux system. I'm not really fond of graphics programming and have a very little knowledge about it. Can any one suggest me that whether linux lack in ghraphics support? or... (2 Replies)
Discussion started by: kg_gaurav
2 Replies
Data::ObjectDriver::Driver::Multiplexer(3pm)		User Contributed Perl Documentation	      Data::ObjectDriver::Driver::Multiplexer(3pm)

NAME
Data::ObjectDriver::Driver::Multiplexer - Multiplex multiple partitioned drivers SYNOPSIS
package MappingTable; use Foo; use Bar; my $foo_driver = Foo->driver; my $bar_driver = Bar->driver; __PACKAGE__->install_properties({ columns => [ qw( foo_id bar_id value ) ], primary_key => 'foo_id', driver => Data::ObjectDriver::Driver::Multiplexer->new( on_search => { foo_id => $foo_driver, bar_id => $bar_driver, }, on_lookup => $foo_driver, drivers => [ $foo_driver, $bar_driver ], ), }); DESCRIPTION
Data::ObjectDriver::Driver::Multiplexer associates a set of drivers to a particular class. In practice, this means that all INSERTs and DELETEs are propagated to all associated drivers (for example, all associated databases or tables in a database), and that SELECTs are sent to the appropriate multiplexed driver, based on partitioning criteria. Note that this driver has the following limitations currently: 1. It's very experimental. 2. It's very experimental. 3. IT'S VERY EXPERIMENTAL. 4. This documentation you're reading is incomplete. the api is likely to evolve perl v5.12.4 2011-08-29 Data::ObjectDriver::Driver::Multiplexer(3pm)
All times are GMT -4. The time now is 01:02 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy