diff options
author | landley <landley@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2005-12-15 07:25:54 +0000 |
---|---|---|
committer | landley <landley@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2005-12-15 07:25:54 +0000 |
commit | 8af2a2ad88e7ceb7dc6a66f0a6861feea3c387cb (patch) | |
tree | e03f9d292096eedba0bedca225db5f89938a9630 /sysdeps/linux | |
parent | a44195dcc3515b2634c2aebc4df839e7602015c6 (diff) | |
download | busybox-w32-8af2a2ad88e7ceb7dc6a66f0a6861feea3c387cb.tar.gz busybox-w32-8af2a2ad88e7ceb7dc6a66f0a6861feea3c387cb.tar.bz2 busybox-w32-8af2a2ad88e7ceb7dc6a66f0a6861feea3c387cb.zip |
The rest of Yann E. Morin's install revamp.
git-svn-id: svn://busybox.net/trunk/busybox@12891 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'sysdeps/linux')
-rw-r--r-- | sysdeps/linux/Config.in | 29 |
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 | ||
232 | choice | ||
233 | prompt "Applets links" | ||
234 | default CONFIG_INSTALL_APPLET_SYMLINKS | ||
235 | help | ||
236 | Choose how you install applets links. | ||
237 | |||
238 | config 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 | |||
245 | config 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 | |||
251 | config 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 | |||
259 | endchoice | ||
260 | |||
232 | config PREFIX | 261 | config PREFIX |
233 | string "BusyBox installation prefix" | 262 | string "BusyBox installation prefix" |
234 | default "./_install" | 263 | default "./_install" |