1 #
2 # IrDA protocol configuration
3 #
4
5 if [ "$CONFIG_NET" != "n" ]; then
6
7 mainmenu_option next_comment
8 comment 'IrDA (infrared) support'
9 dep_tristate 'IrDA subsystem support' CONFIG_IRDA $CONFIG_NET
10
11 if [ "$CONFIG_IRDA" != "n" ]; then
12 comment 'IrDA protocols'
13 source net/irda/irlan/Config.in
14 source net/irda/irnet/Config.in
15 source net/irda/ircomm/Config.in
16 bool ' Ultra (connectionless) protocol' CONFIG_IRDA_ULTRA
17 bool ' IrDA protocol options' CONFIG_IRDA_OPTIONS
18 if [ "$CONFIG_IRDA_OPTIONS" != "n" ]; then
19 comment ' IrDA options'
20 bool ' Cache last LSAP' CONFIG_IRDA_CACHE_LAST_LSAP
21 bool ' Fast RRs' CONFIG_IRDA_FAST_RR
22 bool ' Debug information' CONFIG_IRDA_DEBUG
23 fi
24 fi
25
26 if [ "$CONFIG_IRDA" != "n" ]; then
27 source drivers/net/irda/Config.in
28 fi
29 endmenu
30 fi
31
This page was automatically generated by the
LXR engine.
Visit the LXR main site for more
information.