summaryrefslogtreecommitdiffstats
path: root/rules/file.in
blob: c3858b13f158cdcbb84c6b2b5f557e51465ce2fc (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
## SECTION=shell_and_console

menuconfig FILE
	tristate
	select HOST_FILE
	select ZLIB
	select GCCLIBS_GCC_S
	select LIBSECCOMP if FILE_SECCOMP
	prompt "file"
	help
	  The file command is "a file type guesser", that is, a command-line tool
	  that tells you in words what kind of data a file contains. Unlike most
	  GUI systems, command-line UNIX systems - with this program leading the
	  charge - don't rely on filename extensions to tell you the type of a
	  file, but look at the file's actual contents. This is, of course, more
	  reliable, but requires a bit of I/O.
	  
	  http://www.darwinsys.com/file/

if FILE

config FILE_SECCOMP
	bool
	default y
	prompt "enable seccomp sandboxing"
	help
	  Enables seccomp sandboxing to reduce the attack surface.

endif