summaryrefslogtreecommitdiffstats
path: root/rules/dash.in
blob: 88ea87942f6e714e435a41e6ed42243aed2f347e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
## SECTION=shell_and_console

menuconfig DASH
	tristate
	prompt "dash                          "
	help
	  DASH is a POSIX-compliant implementation of /bin/sh that aims
	  to be as small as possible. It does this without sacrificing speed where
	  possible. In fact, it is significantly faster than bash (the GNU
	  Bourne-Again SHell) for most tasks.

if DASH

config DASH_LINK_SH
	bool
	prompt "link to /bin/sh"
	help
	  Create a link "/bin/sh" that points to "/bin/dash". Select
	  this if dash should be you default shell

endif