[svn-commits] fjoe: freebsd/trunk r7667 - in /freebsd/trunk: ./ drivers/dahdi/ freebsd/
SVN commits to the Digium repositories
svn-commits at lists.digium.com
Tue Dec 8 10:22:13 CST 2009
Author: fjoe
Date: Tue Dec 8 10:22:08 2009
New Revision: 7667
URL: http://svnview.digium.com/svn/dahdi?view=rev&rev=7667
Log:
Add short README about FreeBSD port status with build and install instructions.
Added:
freebsd/trunk/README.freebsd (with props)
Modified:
freebsd/trunk/drivers/dahdi/dahdi_dynamic_ethmf.c
freebsd/trunk/freebsd/Makefile
Added: freebsd/trunk/README.freebsd
URL: http://svnview.digium.com/svn/dahdi/freebsd/trunk/README.freebsd?view=auto&rev=7667
==============================================================================
--- freebsd/trunk/README.freebsd (added)
+++ freebsd/trunk/README.freebsd Tue Dec 8 10:22:08 2009
@@ -1,0 +1,18 @@
+OVERVIEW
+========
+
+This is semi-official DAHDI port to FreeBSD.
+
+The following HW drivers are currently ported and tested:
+- wct4xxp, including HW echo cancellation support (Octasic)
+- wcb4xxp
+
+Drop me an e-mail if you have hardware that is supported by dahdi-linux
+but is not supported by this port.
+
+BUILDING
+========
+
+Just run "make", then "make install" in directory freebsd/
+
+Max Khon <fjoe at FreeBSD.org>
Propchange: freebsd/trunk/README.freebsd
------------------------------------------------------------------------------
svn:eol-style = native
Propchange: freebsd/trunk/README.freebsd
------------------------------------------------------------------------------
svn:keywords = Author Date Id Revision
Propchange: freebsd/trunk/README.freebsd
------------------------------------------------------------------------------
svn:mime-type = text/plain
Modified: freebsd/trunk/drivers/dahdi/dahdi_dynamic_ethmf.c
URL: http://svnview.digium.com/svn/dahdi/freebsd/trunk/drivers/dahdi/dahdi_dynamic_ethmf.c?view=diff&rev=7667&r1=7666&r2=7667
==============================================================================
--- freebsd/trunk/drivers/dahdi/dahdi_dynamic_ethmf.c (original)
+++ freebsd/trunk/drivers/dahdi/dahdi_dynamic_ethmf.c Tue Dec 8 10:22:08 2009
@@ -23,6 +23,8 @@
*
*/
+#if defined(__FreeBSD__)
+#else /* !__FreeBSD__ */
#include <linux/kernel.h>
#include <linux/errno.h>
#include <linux/module.h>
@@ -42,6 +44,7 @@
* support. Undefining this would give a slight performance increase.
*/
#define USE_PROC_FS
+#endif /* !__FreeBSD__ */
#ifdef USE_PROC_FS
# include <linux/proc_fs.h>
@@ -811,6 +814,8 @@
#endif
}
+#if defined(__FreeBSD__)
+#else /* !__FreeBSD__ */
MODULE_DESCRIPTION("DAHDI Dynamic TDMoEmf Support");
MODULE_AUTHOR("Joseph Benden <joe at thrallingpenguin.com>");
#ifdef MODULE_LICENSE
@@ -819,3 +824,4 @@
module_init(ztdethmf_init);
module_exit(ztdethmf_exit);
+#endif /* !__FreeBSD__ */
Modified: freebsd/trunk/freebsd/Makefile
URL: http://svnview.digium.com/svn/dahdi/freebsd/trunk/freebsd/Makefile?view=diff&rev=7667&r1=7666&r2=7667
==============================================================================
--- freebsd/trunk/freebsd/Makefile (original)
+++ freebsd/trunk/freebsd/Makefile Tue Dec 8 10:22:08 2009
@@ -4,6 +4,8 @@
dahdi\
dahdi_dummy\
dahdi_dynamic\
+ dahdi_dynamic_eth\
+ dahdi_dynamic_ethmf\
dahdi_dynamic_loc\
dahdi_echocan_jpah\
dahdi_echocan_kb1\
More information about the svn-commits
mailing list