diff options
author | Kang-Che Sung <explorer09@gmail.com> | 2017-01-07 15:16:46 +0800 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2017-01-08 14:43:54 +0100 |
commit | 4d06b314532f7f52a9d8a5d6b7dcafaf00ff1334 (patch) | |
tree | 2bb558d1d970ff7cc6a1dd48f4b52184c4fe4d92 | |
parent | d5e7ff02921854e28a9859d443f96900e041ca03 (diff) | |
download | busybox-w32-4d06b314532f7f52a9d8a5d6b7dcafaf00ff1334.tar.gz busybox-w32-4d06b314532f7f52a9d8a5d6b7dcafaf00ff1334.tar.bz2 busybox-w32-4d06b314532f7f52a9d8a5d6b7dcafaf00ff1334.zip |
build system: no longer prompt for PLATFORM_LINUX option
With the new "select PLATFORM_LINUX" mechanism
(commit e3b1a1fd28558f7a1b3c0ec33313bedb675be8a1), the PLATFORM_LINUX
option alone no longer has any purpose of changing program behavior or
affecting compiled code. So there is no longer need to prompt user of
this config question.
Signed-off-by: Kang-Che Sung <explorer09@gmail.com>
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-rw-r--r-- | Config.in | 22 |
1 files changed, 11 insertions, 11 deletions
@@ -50,17 +50,6 @@ config USE_PORTABLE_CODE | |||
50 | compiler other than gcc. | 50 | compiler other than gcc. |
51 | If you do use gcc, this option may needlessly increase code size. | 51 | If you do use gcc, this option may needlessly increase code size. |
52 | 52 | ||
53 | config PLATFORM_LINUX | ||
54 | bool "Enable Linux-specific applets and features" | ||
55 | default y | ||
56 | help | ||
57 | For the most part, busybox requires only POSIX compatibility | ||
58 | from the target system, but some applets and features use | ||
59 | Linux-specific interfaces. | ||
60 | |||
61 | Answering 'N' here will disable such applets and hide the | ||
62 | corresponding configuration options. | ||
63 | |||
64 | config SHOW_USAGE | 53 | config SHOW_USAGE |
65 | bool "Show applet usage messages" | 54 | bool "Show applet usage messages" |
66 | default y | 55 | default y |
@@ -338,6 +327,17 @@ config FEATURE_HAVE_RPC | |||
338 | # This is automatically selected if any of enabled applets need it. | 327 | # This is automatically selected if any of enabled applets need it. |
339 | # You do not need to select it manually. | 328 | # You do not need to select it manually. |
340 | 329 | ||
330 | config PLATFORM_LINUX | ||
331 | bool #No description makes it a hidden option | ||
332 | default n | ||
333 | #help | ||
334 | # For the most part, busybox requires only POSIX compatibility | ||
335 | # from the target system, but some applets and features use | ||
336 | # Linux-specific interfaces. | ||
337 | # | ||
338 | # This is automatically selected if any applet or feature requires | ||
339 | # Linux-specific interfaces. You do not need to select it manually. | ||
340 | |||
341 | comment 'Build Options' | 341 | comment 'Build Options' |
342 | 342 | ||
343 | config STATIC | 343 | config STATIC |