aboutsummaryrefslogtreecommitdiff
path: root/sysdeps
diff options
context:
space:
mode:
Diffstat (limited to 'sysdeps')
-rw-r--r--sysdeps/linux/Config.in29
1 files changed, 29 insertions, 0 deletions
diff --git a/sysdeps/linux/Config.in b/sysdeps/linux/Config.in
index fb97c8f05..3501ff767 100644
--- a/sysdeps/linux/Config.in
+++ b/sysdeps/linux/Config.in
@@ -229,6 +229,35 @@ config CONFIG_INSTALL_NO_USR
229 Disable use of /usr. Don't activate this option if you don't know 229 Disable use of /usr. Don't activate this option if you don't know
230 that you really want this behaviour. 230 that you really want this behaviour.
231 231
232choice
233 prompt "Applets links"
234 default CONFIG_INSTALL_APPLET_SYMLINKS
235 help
236 Choose how you install applets links.
237
238config CONFIG_INSTALL_APPLET_SYMLINKS
239 bool "as soft-links"
240 help
241 Install applets as soft-links to the busybox binary. This needs some
242 free inodes on the filesystem, but might help with filesystem
243 generators that can't cope with hard-links.
244
245config CONFIG_INSTALL_APPLET_HARDLINKS
246 bool "as hard-links"
247 help
248 Install applets as hard-links to the busybox binary. This might count
249 on a filesystem with few inodes.
250
251config CONFIG_INSTALL_APPLET_DONT
252 bool
253 prompt "not installed"
254 depends on CONFIG_FEATURE_INSTALLER || CONFIG_FEATURE_SH_STANDALONE_SHELL
255 help
256 Do not install applets links. Usefull when using the -install feature
257 or a standalone shell for rescue pruposes.
258
259endchoice
260
232config PREFIX 261config PREFIX
233 string "BusyBox installation prefix" 262 string "BusyBox installation prefix"
234 default "./_install" 263 default "./_install"