diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2007-09-22 20:51:41 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2007-09-22 20:51:41 +0000 |
commit | 23856ab8e6805538f907dcf032a0168676df0d90 (patch) | |
tree | 8cb15ef5b68d2681ba75e1af7e8439359d1a8a6a | |
parent | f588f70b91f7d4b36bf7c3b7010d2b583b574c12 (diff) | |
download | busybox-w32-23856ab8e6805538f907dcf032a0168676df0d90.tar.gz busybox-w32-23856ab8e6805538f907dcf032a0168676df0d90.tar.bz2 busybox-w32-23856ab8e6805538f907dcf032a0168676df0d90.zip |
move microcom to miscutils
-rw-r--r-- | miscutils/Config.in | 6 | ||||
-rw-r--r-- | miscutils/Kbuild | 1 | ||||
-rw-r--r-- | util-linux/Config.in | 6 | ||||
-rw-r--r-- | util-linux/Kbuild | 1 |
4 files changed, 7 insertions, 7 deletions
diff --git a/miscutils/Config.in b/miscutils/Config.in index 3dd2674d6..e6c65044a 100644 --- a/miscutils/Config.in +++ b/miscutils/Config.in | |||
@@ -276,6 +276,12 @@ config FEATURE_MAKEDEVS_TABLE | |||
276 | 276 | ||
277 | endchoice | 277 | endchoice |
278 | 278 | ||
279 | config MICROCOM | ||
280 | bool "microcom" | ||
281 | default n | ||
282 | help | ||
283 | The poor man's minicom utility for chatting with serial port devices. | ||
284 | |||
279 | config MOUNTPOINT | 285 | config MOUNTPOINT |
280 | bool "mountpoint" | 286 | bool "mountpoint" |
281 | default n | 287 | default n |
diff --git a/miscutils/Kbuild b/miscutils/Kbuild index b420d68e7..a9dc833e6 100644 --- a/miscutils/Kbuild +++ b/miscutils/Kbuild | |||
@@ -17,6 +17,7 @@ lib-$(CONFIG_HDPARM) += hdparm.o | |||
17 | lib-$(CONFIG_LAST) += last.o | 17 | lib-$(CONFIG_LAST) += last.o |
18 | lib-$(CONFIG_LESS) += less.o | 18 | lib-$(CONFIG_LESS) += less.o |
19 | lib-$(CONFIG_MAKEDEVS) += makedevs.o | 19 | lib-$(CONFIG_MAKEDEVS) += makedevs.o |
20 | lib-$(CONFIG_MICROCOM) += microcom.o | ||
20 | lib-$(CONFIG_MOUNTPOINT) += mountpoint.o | 21 | lib-$(CONFIG_MOUNTPOINT) += mountpoint.o |
21 | lib-$(CONFIG_MT) += mt.o | 22 | lib-$(CONFIG_MT) += mt.o |
22 | lib-$(CONFIG_RAIDAUTORUN) += raidautorun.o | 23 | lib-$(CONFIG_RAIDAUTORUN) += raidautorun.o |
diff --git a/util-linux/Config.in b/util-linux/Config.in index 7d8e94890..107382f51 100644 --- a/util-linux/Config.in +++ b/util-linux/Config.in | |||
@@ -305,12 +305,6 @@ 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 | |||
314 | config MKSWAP | 308 | config MKSWAP |
315 | bool "mkswap" | 309 | bool "mkswap" |
316 | default n | 310 | default n |
diff --git a/util-linux/Kbuild b/util-linux/Kbuild index 8f3138a87..cc1d0e05d 100644 --- a/util-linux/Kbuild +++ b/util-linux/Kbuild | |||
@@ -30,4 +30,3 @@ 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 | ||