Skip to content

Commit

Permalink
Phonet: add CONFIG_PHONET
Browse files Browse the repository at this point in the history
Signed-off-by: Remi Denis-Courmont <[email protected]>
Signed-off-by: David S. Miller <[email protected]>
  • Loading branch information
Remi Denis-Courmont authored and davem330 committed Sep 23, 2008
1 parent 4b07b3f commit 8ead536
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 0 deletions.
1 change: 1 addition & 0 deletions net/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -232,6 +232,7 @@ source "net/can/Kconfig"
source "net/irda/Kconfig"
source "net/bluetooth/Kconfig"
source "net/rxrpc/Kconfig"
source "net/phonet/Kconfig"

config FIB_RULES
bool
Expand Down
1 change: 1 addition & 0 deletions net/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ obj-$(CONFIG_AF_RXRPC) += rxrpc/
obj-$(CONFIG_ATM) += atm/
obj-$(CONFIG_DECNET) += decnet/
obj-$(CONFIG_ECONET) += econet/
obj-$(CONFIG_PHONET) += phonet/
ifneq ($(CONFIG_VLAN_8021Q),)
obj-y += 8021q/
endif
Expand Down
16 changes: 16 additions & 0 deletions net/phonet/Kconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
#
# Phonet protocol
#

config PHONET
tristate "Phonet protocols family"
help
The Phone Network protocol (PhoNet) is a packet-oriented
communication protocol developped by Nokia for use with its modems.

This is required for Maemo to use cellular data connectivity (if
supported). It can also be used to control Nokia phones
from a Linux computer, although AT commands may be easier to use.

To compile this driver as a module, choose M here: the module
will be called phonet. If unsure, say N.
4 changes: 4 additions & 0 deletions net/phonet/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
obj-$(CONFIG_PHONET) += phonet.o

phonet-objs := \
af_phonet.o

0 comments on commit 8ead536

Please sign in to comment.