Skip to content

Commit 8ead536

Browse files
Remi Denis-Courmontdavem330
authored andcommitted
Phonet: add CONFIG_PHONET
Signed-off-by: Remi Denis-Courmont <[email protected]> Signed-off-by: David S. Miller <[email protected]>
1 parent 4b07b3f commit 8ead536

File tree

4 files changed

+22
-0
lines changed

4 files changed

+22
-0
lines changed

net/Kconfig

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -232,6 +232,7 @@ source "net/can/Kconfig"
232232
source "net/irda/Kconfig"
233233
source "net/bluetooth/Kconfig"
234234
source "net/rxrpc/Kconfig"
235+
source "net/phonet/Kconfig"
235236

236237
config FIB_RULES
237238
bool

net/Makefile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ obj-$(CONFIG_AF_RXRPC) += rxrpc/
4242
obj-$(CONFIG_ATM) += atm/
4343
obj-$(CONFIG_DECNET) += decnet/
4444
obj-$(CONFIG_ECONET) += econet/
45+
obj-$(CONFIG_PHONET) += phonet/
4546
ifneq ($(CONFIG_VLAN_8021Q),)
4647
obj-y += 8021q/
4748
endif

net/phonet/Kconfig

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
#
2+
# Phonet protocol
3+
#
4+
5+
config PHONET
6+
tristate "Phonet protocols family"
7+
help
8+
The Phone Network protocol (PhoNet) is a packet-oriented
9+
communication protocol developped by Nokia for use with its modems.
10+
11+
This is required for Maemo to use cellular data connectivity (if
12+
supported). It can also be used to control Nokia phones
13+
from a Linux computer, although AT commands may be easier to use.
14+
15+
To compile this driver as a module, choose M here: the module
16+
will be called phonet. If unsure, say N.

net/phonet/Makefile

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
obj-$(CONFIG_PHONET) += phonet.o
2+
3+
phonet-objs := \
4+
af_phonet.o

0 commit comments

Comments
 (0)