diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2017-07-21 09:50:55 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2017-07-21 09:50:55 +0200 |
commit | 72089cf6b4a77214ec4fd21d5ee5bf56958781cb (patch) | |
tree | a5cd9d8f47e909834d3dbc44f895556e68bcf18f /networking/ifupdown.c | |
parent | 75d151e31d135ebab083307ded4e9b98970baa75 (diff) | |
download | busybox-w32-72089cf6b4a77214ec4fd21d5ee5bf56958781cb.tar.gz busybox-w32-72089cf6b4a77214ec4fd21d5ee5bf56958781cb.tar.bz2 busybox-w32-72089cf6b4a77214ec4fd21d5ee5bf56958781cb.zip |
config: deindent all help texts
Those two spaces after tab have no effect, and always a nuisance when editing.
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'networking/ifupdown.c')
-rw-r--r-- | networking/ifupdown.c | 64 |
1 files changed, 32 insertions, 32 deletions
diff --git a/networking/ifupdown.c b/networking/ifupdown.c index e067543fa..f8c29ab00 100644 --- a/networking/ifupdown.c +++ b/networking/ifupdown.c | |||
@@ -21,63 +21,63 @@ | |||
21 | //config: bool "ifup (17 kb)" | 21 | //config: bool "ifup (17 kb)" |
22 | //config: default y | 22 | //config: default y |
23 | //config: help | 23 | //config: help |
24 | //config: Activate the specified interfaces. This applet makes use | 24 | //config: Activate the specified interfaces. This applet makes use |
25 | //config: of either "ifconfig" and "route" or the "ip" command to actually | 25 | //config: of either "ifconfig" and "route" or the "ip" command to actually |
26 | //config: configure network interfaces. Therefore, you will probably also want | 26 | //config: configure network interfaces. Therefore, you will probably also want |
27 | //config: to enable either IFCONFIG and ROUTE, or enable | 27 | //config: to enable either IFCONFIG and ROUTE, or enable |
28 | //config: FEATURE_IFUPDOWN_IP and the various IP options. Of | 28 | //config: FEATURE_IFUPDOWN_IP and the various IP options. Of |
29 | //config: course you could use non-busybox versions of these programs, so | 29 | //config: course you could use non-busybox versions of these programs, so |
30 | //config: against my better judgement (since this will surely result in plenty | 30 | //config: against my better judgement (since this will surely result in plenty |
31 | //config: of support questions on the mailing list), I do not force you to | 31 | //config: of support questions on the mailing list), I do not force you to |
32 | //config: enable these additional options. It is up to you to supply either | 32 | //config: enable these additional options. It is up to you to supply either |
33 | //config: "ifconfig", "route" and "run-parts" or the "ip" command, either | 33 | //config: "ifconfig", "route" and "run-parts" or the "ip" command, either |
34 | //config: via busybox or via standalone utilities. | 34 | //config: via busybox or via standalone utilities. |
35 | //config: | 35 | //config: |
36 | //config:config IFDOWN | 36 | //config:config IFDOWN |
37 | //config: bool "ifdown (15 kb)" | 37 | //config: bool "ifdown (15 kb)" |
38 | //config: default y | 38 | //config: default y |
39 | //config: help | 39 | //config: help |
40 | //config: Deactivate the specified interfaces. | 40 | //config: Deactivate the specified interfaces. |
41 | //config: | 41 | //config: |
42 | //config:config IFUPDOWN_IFSTATE_PATH | 42 | //config:config IFUPDOWN_IFSTATE_PATH |
43 | //config: string "Absolute path to ifstate file" | 43 | //config: string "Absolute path to ifstate file" |
44 | //config: default "/var/run/ifstate" | 44 | //config: default "/var/run/ifstate" |
45 | //config: depends on IFUP || IFDOWN | 45 | //config: depends on IFUP || IFDOWN |
46 | //config: help | 46 | //config: help |
47 | //config: ifupdown keeps state information in a file called ifstate. | 47 | //config: ifupdown keeps state information in a file called ifstate. |
48 | //config: Typically it is located in /var/run/ifstate, however | 48 | //config: Typically it is located in /var/run/ifstate, however |
49 | //config: some distributions tend to put it in other places | 49 | //config: some distributions tend to put it in other places |
50 | //config: (debian, for example, uses /etc/network/run/ifstate). | 50 | //config: (debian, for example, uses /etc/network/run/ifstate). |
51 | //config: This config option defines location of ifstate. | 51 | //config: This config option defines location of ifstate. |
52 | //config: | 52 | //config: |
53 | //config:config FEATURE_IFUPDOWN_IP | 53 | //config:config FEATURE_IFUPDOWN_IP |
54 | //config: bool "Use ip tool (else ifconfig/route is used)" | 54 | //config: bool "Use ip tool (else ifconfig/route is used)" |
55 | //config: default y | 55 | //config: default y |
56 | //config: depends on IFUP || IFDOWN | 56 | //config: depends on IFUP || IFDOWN |
57 | //config: help | 57 | //config: help |
58 | //config: Use the iproute "ip" command to implement "ifup" and "ifdown", rather | 58 | //config: Use the iproute "ip" command to implement "ifup" and "ifdown", rather |
59 | //config: than the default of using the older "ifconfig" and "route" utilities. | 59 | //config: than the default of using the older "ifconfig" and "route" utilities. |
60 | //config: | 60 | //config: |
61 | //config: If Y: you must install either the full-blown iproute2 package | 61 | //config: If Y: you must install either the full-blown iproute2 package |
62 | //config: or enable "ip" applet in Busybox, or the "ifup" and "ifdown" applets | 62 | //config: or enable "ip" applet in Busybox, or the "ifup" and "ifdown" applets |
63 | //config: will not work. | 63 | //config: will not work. |
64 | //config: | 64 | //config: |
65 | //config: If N: you must install either the full-blown ifconfig and route | 65 | //config: If N: you must install either the full-blown ifconfig and route |
66 | //config: utilities, or enable these applets in Busybox. | 66 | //config: utilities, or enable these applets in Busybox. |
67 | //config: | 67 | //config: |
68 | //config:config FEATURE_IFUPDOWN_IPV4 | 68 | //config:config FEATURE_IFUPDOWN_IPV4 |
69 | //config: bool "Support IPv4" | 69 | //config: bool "Support IPv4" |
70 | //config: default y | 70 | //config: default y |
71 | //config: depends on IFUP || IFDOWN | 71 | //config: depends on IFUP || IFDOWN |
72 | //config: help | 72 | //config: help |
73 | //config: If you want ifup/ifdown to talk IPv4, leave this on. | 73 | //config: If you want ifup/ifdown to talk IPv4, leave this on. |
74 | //config: | 74 | //config: |
75 | //config:config FEATURE_IFUPDOWN_IPV6 | 75 | //config:config FEATURE_IFUPDOWN_IPV6 |
76 | //config: bool "Support IPv6" | 76 | //config: bool "Support IPv6" |
77 | //config: default y | 77 | //config: default y |
78 | //config: depends on (IFUP || IFDOWN) && FEATURE_IPV6 | 78 | //config: depends on (IFUP || IFDOWN) && FEATURE_IPV6 |
79 | //config: help | 79 | //config: help |
80 | //config: If you need support for IPv6, turn this option on. | 80 | //config: If you need support for IPv6, turn this option on. |
81 | //config: | 81 | //config: |
82 | //UNUSED: | 82 | //UNUSED: |
83 | ////////:config FEATURE_IFUPDOWN_IPX | 83 | ////////:config FEATURE_IFUPDOWN_IPX |
@@ -93,18 +93,18 @@ | |||
93 | //config: default y | 93 | //config: default y |
94 | //config: depends on IFUP || IFDOWN | 94 | //config: depends on IFUP || IFDOWN |
95 | //config: help | 95 | //config: help |
96 | //config: This enables support for the "mapping" stanza, unless you have | 96 | //config: This enables support for the "mapping" stanza, unless you have |
97 | //config: a weird network setup you don't need it. | 97 | //config: a weird network setup you don't need it. |
98 | //config: | 98 | //config: |
99 | //config:config FEATURE_IFUPDOWN_EXTERNAL_DHCP | 99 | //config:config FEATURE_IFUPDOWN_EXTERNAL_DHCP |
100 | //config: bool "Support external DHCP clients" | 100 | //config: bool "Support external DHCP clients" |
101 | //config: default n | 101 | //config: default n |
102 | //config: depends on IFUP || IFDOWN | 102 | //config: depends on IFUP || IFDOWN |
103 | //config: help | 103 | //config: help |
104 | //config: This enables support for the external dhcp clients. Clients are | 104 | //config: This enables support for the external dhcp clients. Clients are |
105 | //config: tried in the following order: dhcpcd, dhclient, pump and udhcpc. | 105 | //config: tried in the following order: dhcpcd, dhclient, pump and udhcpc. |
106 | //config: Otherwise, if udhcpc applet is enabled, it is used. | 106 | //config: Otherwise, if udhcpc applet is enabled, it is used. |
107 | //config: Otherwise, ifup/ifdown will have no support for DHCP. | 107 | //config: Otherwise, ifup/ifdown will have no support for DHCP. |
108 | 108 | ||
109 | // APPLET_ODDNAME:name main location suid_type help | 109 | // APPLET_ODDNAME:name main location suid_type help |
110 | //applet:IF_IFUP( APPLET_ODDNAME(ifup, ifupdown, BB_DIR_SBIN, BB_SUID_DROP, ifup)) | 110 | //applet:IF_IFUP( APPLET_ODDNAME(ifup, ifupdown, BB_DIR_SBIN, BB_SUID_DROP, ifup)) |