Skip to content

Commit e4ac9bc

Browse files
author
Karsten Keil
committed
Add mISDN driver
mISDN is a new modular ISDN driver, in the long term it should replace the old I4L driver architecture for passiv ISDN cards. Signed-off-by: Karsten Keil <[email protected]>
1 parent a048d3a commit e4ac9bc

File tree

4 files changed

+11
-1
lines changed

4 files changed

+11
-1
lines changed

Documentation/isdn/README.mISDN

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
mISDN is a new modular ISDN driver, in the long term it should replace
2+
the old I4L driver architecture for passiv ISDN cards.
3+
It was designed to allow a broad range of applications and interfaces
4+
but only have the basic function in kernel, the interface to the user
5+
space is based on sockets with a own address family AF_ISDN.
6+

drivers/isdn/Kconfig

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#
44

55
menuconfig ISDN
6-
tristate "ISDN support"
6+
bool "ISDN support"
77
depends on NET
88
depends on !S390
99
---help---
@@ -21,6 +21,8 @@ menuconfig ISDN
2121

2222
if ISDN
2323

24+
source "drivers/isdn/mISDN/Kconfig"
25+
2426
menuconfig ISDN_I4L
2527
tristate "Old ISDN4Linux (deprecated)"
2628
---help---

drivers/isdn/Makefile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44

55
obj-$(CONFIG_ISDN_I4L) += i4l/
66
obj-$(CONFIG_ISDN_CAPI) += capi/
7+
obj-$(CONFIG_MISDN) += mISDN/
78
obj-$(CONFIG_ISDN_CAPI) += hardware/
89
obj-$(CONFIG_ISDN_DIVERSION) += divert/
910
obj-$(CONFIG_ISDN_DRV_HISAX) += hisax/

drivers/isdn/hardware/Makefile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,4 @@
44

55
obj-$(CONFIG_CAPI_AVM) += avm/
66
obj-$(CONFIG_CAPI_EICON) += eicon/
7+
obj-$(CONFIG_MISDN) += mISDN/

0 commit comments

Comments
 (0)