diff options
author | Jeremie Koenig <jk@jk.fr.eu.org> | 2010-07-19 00:44:56 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2010-07-19 00:44:56 +0200 |
commit | 1d7266d3b59be361763dab61f680103bbb70f3e9 (patch) | |
tree | 631f533af2f9ceb9ba8d5cfcc978a3c33a0393cc /init/Config.src | |
parent | b175462422f02a159a14dc5561d8bef6f84b2b66 (diff) | |
download | busybox-w32-1d7266d3b59be361763dab61f680103bbb70f3e9.tar.gz busybox-w32-1d7266d3b59be361763dab61f680103bbb70f3e9.tar.bz2 busybox-w32-1d7266d3b59be361763dab61f680103bbb70f3e9.zip |
mark Linux-specific configuration options
PLATFORM_LINUX is used as a dependency for applets or features
which require Linux-specific interfaces.
Signed-off-by: Jeremie Koenig <jk@jk.fr.eu.org>
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'init/Config.src')
-rw-r--r-- | init/Config.src | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/init/Config.src b/init/Config.src index 590e29890..a5e76be6a 100644 --- a/init/Config.src +++ b/init/Config.src | |||
@@ -10,6 +10,7 @@ INSERT | |||
10 | config INIT | 10 | config INIT |
11 | bool "init" | 11 | bool "init" |
12 | default y | 12 | default y |
13 | depends on PLATFORM_LINUX | ||
13 | select FEATURE_SYSLOG | 14 | select FEATURE_SYSLOG |
14 | help | 15 | help |
15 | init is the first program run when the system boots. | 16 | init is the first program run when the system boots. |
@@ -92,6 +93,7 @@ config FEATURE_INITRD | |||
92 | config HALT | 93 | config HALT |
93 | bool "poweroff, halt, and reboot" | 94 | bool "poweroff, halt, and reboot" |
94 | default y | 95 | default y |
96 | depends on PLATFORM_LINUX | ||
95 | help | 97 | help |
96 | Stop all processes and either halt, reboot, or power off the system. | 98 | Stop all processes and either halt, reboot, or power off the system. |
97 | 99 | ||