Ignore:
Timestamp:
Dec 20, 2016, 4:07:32 PM (7 years ago)
Author:
Bruno Cornec
Message:

New 3?3 banch for incorporation of latest busybox 1.25. Changing minor version to handle potential incompatibilities.

Location:
branches/3.3
Files:
1 edited
1 copied

Legend:

Unmodified
Added
Removed
  • branches/3.3/mindi-busybox/miscutils/rfkill.c

    r3232 r3621  
    77* Licensed under GPLv2 or later, see file LICENSE in this source tree.
    88*/
     9
     10//config:config RFKILL
     11//config:   bool "rfkill"
     12//config:   default n # doesn't build on Ubuntu 9.04
     13//config:   select PLATFORM_LINUX
     14//config:   help
     15//config:     Enable/disable wireless devices.
     16//config:
     17//config:     rfkill list : list all wireless devices
     18//config:     rfkill list bluetooth : list all bluetooth devices
     19//config:     rfkill list 1 : list device corresponding to the given index
     20//config:     rfkill block|unblock wlan : block/unblock all wlan(wifi) devices
     21//config:
     22
     23//applet:IF_RFKILL(APPLET(rfkill, BB_DIR_USR_SBIN, BB_SUID_DROP))
     24
     25//kbuild:lib-$(CONFIG_RFKILL) += rfkill.o
    926
    1027//usage:#define rfkill_trivial_usage
Note: See TracChangeset for help on using the changeset viewer.