Config.in 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. comment "dvdrw-tools needs a toolchain w/ threads, C++, wchar"
  2. depends on BR2_USE_MMU
  3. depends on !BR2_TOOLCHAIN_HAS_THREADS || !BR2_INSTALL_LIBSTDCPP || \
  4. !BR2_USE_WCHAR
  5. config BR2_PACKAGE_DVDRW_TOOLS
  6. bool "dvdrw-tools"
  7. depends on BR2_USE_MMU # fork()
  8. depends on BR2_TOOLCHAIN_HAS_THREADS
  9. depends on BR2_INSTALL_LIBSTDCPP
  10. depends on BR2_USE_WCHAR
  11. help
  12. The dvd+rw-tools are used to master Blu-ray Disc
  13. and DVD Disc media, both +RW/+R and -RW/-R. Note:
  14. The +RW in the name is a historical artifact. This
  15. package contains the widely used growisofs program.
  16. Buildroot does not support packages with a '+' sign
  17. in their name, which explains why it is named
  18. dvdrw-tools and not dvd+rw-tools.
  19. Because dvd+rw-tools does not directly interact with
  20. disc media it uses a separate media backend program.
  21. The usual backend is mkisofs from the cdrtools package.
  22. However, cdrtools is not currently part of buildroot.
  23. The Linux From Scratch project uses uses xorriso for the
  24. media backend and Ubuntu uses cdrkit for the backend.
  25. Choose the one which seems most appropriate for your use.
  26. NOTE: xorriso does not currently support UDF.
  27. http://fy.chalmers.se/~appro/linux/DVD+RW/tools
  28. if BR2_PACKAGE_DVDRW_TOOLS
  29. choice
  30. prompt "Media Backend"
  31. help
  32. Choose which media backend program to use.
  33. config BR2_PACKAGE_DVDRW_TOOLS_CDRKIT_BACKEND
  34. bool "cdrkit"
  35. select BR2_PACKAGE_CDRKIT
  36. help
  37. Symlink mkisofs to genisoimage from the cdrkit package.
  38. config BR2_PACKAGE_DVDRW_TOOLS_XORRISO_BACKEND
  39. bool "xorriso"
  40. select BR2_PACKAGE_XORRISO
  41. help
  42. Symlink mkisofs to xorrisofs from the xorriso package.
  43. endchoice
  44. endif