Blame view

buildroot/buildroot-2016.08.1/package/dvdrw-tools/Config.in 1.63 KB
6b13f685e   김민수   BSP 최초 추가
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
  comment "dvdrw-tools needs a toolchain w/ threads, C++, wchar"
  	depends on BR2_USE_MMU
  	depends on !BR2_TOOLCHAIN_HAS_THREADS || !BR2_INSTALL_LIBSTDCPP || \
  		!BR2_USE_WCHAR
  
  config BR2_PACKAGE_DVDRW_TOOLS
  	bool "dvdrw-tools"
  	depends on BR2_USE_MMU # fork()
  	depends on BR2_TOOLCHAIN_HAS_THREADS
  	depends on BR2_INSTALL_LIBSTDCPP
  	depends on BR2_USE_WCHAR
  	help
  	  The dvd+rw-tools are used to master Blu-ray Disc
  	  and DVD Disc media, both +RW/+R and -RW/-R. Note:
  	  The +RW in the name is a historical artifact. This
  	  package contains the widely used growisofs program.
  
  	  Buildroot does not support packages with a '+' sign
  	  in their name, which explains why it is named
  	  dvdrw-tools and not dvd+rw-tools.
  
  	  Because dvd+rw-tools does not directly interact with
  	  disc media it uses a separate media backend program.
  	  The usual backend is mkisofs from the cdrtools package.
  	  However, cdrtools is not currently part of buildroot.
  
  	  The Linux From Scratch project uses uses xorriso for the
  	  media backend and Ubuntu uses cdrkit for the backend.
  	  Choose the one which seems most appropriate for your use.
  	  NOTE: xorriso does not currently support UDF.
  
  	  http://fy.chalmers.se/~appro/linux/DVD+RW/tools
  
  if BR2_PACKAGE_DVDRW_TOOLS
  choice
  	prompt "Media Backend"
  	help
  	  Choose which media backend program to use.
  
  config BR2_PACKAGE_DVDRW_TOOLS_CDRKIT_BACKEND
  	bool "cdrkit"
  	select BR2_PACKAGE_CDRKIT
  	help
  	  Symlink mkisofs to genisoimage from the cdrkit package.
  
  config BR2_PACKAGE_DVDRW_TOOLS_XORRISO_BACKEND
  	bool "xorriso"
  	select BR2_PACKAGE_XORRISO
  	help
  	  Symlink mkisofs to xorrisofs from the xorriso package.
  
  endchoice
  endif