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/nameif.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/nameif.c')
-rw-r--r-- | networking/nameif.c | 34 |
1 files changed, 17 insertions, 17 deletions
diff --git a/networking/nameif.c b/networking/nameif.c index e65aef417..31ee98a39 100644 --- a/networking/nameif.c +++ b/networking/nameif.c | |||
@@ -16,29 +16,29 @@ | |||
16 | //config: select PLATFORM_LINUX | 16 | //config: select PLATFORM_LINUX |
17 | //config: select FEATURE_SYSLOG | 17 | //config: select FEATURE_SYSLOG |
18 | //config: help | 18 | //config: help |
19 | //config: nameif is used to rename network interface by its MAC address. | 19 | //config: nameif is used to rename network interface by its MAC address. |
20 | //config: Renamed interfaces MUST be in the down state. | 20 | //config: Renamed interfaces MUST be in the down state. |
21 | //config: It is possible to use a file (default: /etc/mactab) | 21 | //config: It is possible to use a file (default: /etc/mactab) |
22 | //config: with list of new interface names and MACs. | 22 | //config: with list of new interface names and MACs. |
23 | //config: Maximum interface name length: IFNAMSIZ = 16 | 23 | //config: Maximum interface name length: IFNAMSIZ = 16 |
24 | //config: File fields are separated by space or tab. | 24 | //config: File fields are separated by space or tab. |
25 | //config: File format: | 25 | //config: File format: |
26 | //config: # Comment | 26 | //config: # Comment |
27 | //config: new_interface_name XX:XX:XX:XX:XX:XX | 27 | //config: new_interface_name XX:XX:XX:XX:XX:XX |
28 | //config: | 28 | //config: |
29 | //config:config FEATURE_NAMEIF_EXTENDED | 29 | //config:config FEATURE_NAMEIF_EXTENDED |
30 | //config: bool "Extended nameif" | 30 | //config: bool "Extended nameif" |
31 | //config: default y | 31 | //config: default y |
32 | //config: depends on NAMEIF | 32 | //config: depends on NAMEIF |
33 | //config: help | 33 | //config: help |
34 | //config: This extends the nameif syntax to support the bus_info, driver, | 34 | //config: This extends the nameif syntax to support the bus_info, driver, |
35 | //config: phyaddr selectors. The syntax is compatible to the normal nameif. | 35 | //config: phyaddr selectors. The syntax is compatible to the normal nameif. |
36 | //config: File format: | 36 | //config: File format: |
37 | //config: new_interface_name driver=asix bus=usb-0000:00:08.2-3 | 37 | //config: new_interface_name driver=asix bus=usb-0000:00:08.2-3 |
38 | //config: new_interface_name bus=usb-0000:00:08.2-3 00:80:C8:38:91:B5 | 38 | //config: new_interface_name bus=usb-0000:00:08.2-3 00:80:C8:38:91:B5 |
39 | //config: new_interface_name phy_address=2 00:80:C8:38:91:B5 | 39 | //config: new_interface_name phy_address=2 00:80:C8:38:91:B5 |
40 | //config: new_interface_name mac=00:80:C8:38:91:B5 | 40 | //config: new_interface_name mac=00:80:C8:38:91:B5 |
41 | //config: new_interface_name 00:80:C8:38:91:B5 | 41 | //config: new_interface_name 00:80:C8:38:91:B5 |
42 | 42 | ||
43 | //applet:IF_NAMEIF(APPLET(nameif, BB_DIR_SBIN, BB_SUID_DROP)) | 43 | //applet:IF_NAMEIF(APPLET(nameif, BB_DIR_SBIN, BB_SUID_DROP)) |
44 | 44 | ||