diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2007-09-21 13:43:28 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2007-09-21 13:43:28 +0000 |
commit | efd3f38f8cc823af30ce2a19d7f4eb55c3866cad (patch) | |
tree | 2ea99ef1a41dc3b56a859f79a2622d7397251b27 /util-linux | |
parent | 0beaff8c19fddb694aab084a59c47b486dd6a8eb (diff) | |
download | busybox-w32-efd3f38f8cc823af30ce2a19d7f4eb55c3866cad.tar.gz busybox-w32-efd3f38f8cc823af30ce2a19d7f4eb55c3866cad.tar.bz2 busybox-w32-efd3f38f8cc823af30ce2a19d7f4eb55c3866cad.zip |
microcom: new applet by Vladimir Dronnikov <dronnikov@gmail.ru>
Diffstat (limited to 'util-linux')
-rw-r--r-- | util-linux/Config.in | 6 | ||||
-rw-r--r-- | util-linux/Kbuild | 1 |
2 files changed, 7 insertions, 0 deletions
diff --git a/util-linux/Config.in b/util-linux/Config.in index 107382f51..7d8e94890 100644 --- a/util-linux/Config.in +++ b/util-linux/Config.in | |||
@@ -305,6 +305,12 @@ config FEATURE_MDEV_LOAD_FIRMWARE | |||
305 | /lib/firmware/ and if it exists, send it to the kernel for | 305 | /lib/firmware/ and if it exists, send it to the kernel for |
306 | loading into the hardware. | 306 | loading into the hardware. |
307 | 307 | ||
308 | config MICROCOM | ||
309 | bool "microcom" | ||
310 | default n | ||
311 | help | ||
312 | The poor man's minicom utility for chatting with serial port devices. | ||
313 | |||
308 | config MKSWAP | 314 | config MKSWAP |
309 | bool "mkswap" | 315 | bool "mkswap" |
310 | default n | 316 | default n |
diff --git a/util-linux/Kbuild b/util-linux/Kbuild index cc1d0e05d..8f3138a87 100644 --- a/util-linux/Kbuild +++ b/util-linux/Kbuild | |||
@@ -30,3 +30,4 @@ lib-$(CONFIG_SETARCH) +=setarch.o | |||
30 | lib-$(CONFIG_SWAPONOFF) +=swaponoff.o | 30 | lib-$(CONFIG_SWAPONOFF) +=swaponoff.o |
31 | lib-$(CONFIG_SWITCH_ROOT) +=switch_root.o | 31 | lib-$(CONFIG_SWITCH_ROOT) +=switch_root.o |
32 | lib-$(CONFIG_UMOUNT) +=umount.o | 32 | lib-$(CONFIG_UMOUNT) +=umount.o |
33 | lib-$(CONFIG_MICROCOM) +=microcom.o | ||