summaryrefslogtreecommitdiffstats
path: root/rules/pdksh.in
blob: 8434efcac5cc861bbea93bef175555c4c5428fc1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
## SECTION=shell_and_console
menuconfig PDKSH
	tristate
	prompt "pdksh [BROKEN]                "
	depends on BROKEN
	help
	  The Public Domain Korn Shell
	  PD-ksh is a clone of the AT&T Korn shell.

if PDKSH

config PDKSH_SHLIKE
	bool
	prompt "Enable minimal sh like configuration [BROKEN]"
	depends on BROKEN
	help
	  FIXME: This item needs to be documented

config PDKSH_POSIX
	bool
	prompt "Enable POSIX behaviour"
	help
	  FIXME: This item needs to be documented

config PDKSH_EMACS
	bool
	prompt "Enable emacs style line editing"
	help
	  FIXME: This item needs to be documented

config PDKSH_VI
	bool
	prompt "Enable vi style line editing"
	help
	  FIXME: This item needs to be documented

config PDKSH_CMDHISTORY
	bool
	prompt "Turn on command history"
	help
	  FIXME: This item needs to be documented

config PDKSH_JOBS
	bool
	prompt "Enable job control features"
	help
	  FIXME: This item needs to be documented

config PDKSH_BRACE_EXPAND
	bool
	prompt "Enable ksh brace expansion"
	help
	  FIXME: This item needs to be documented

endif