1config BR2_PACKAGE_XORRISO 2 bool "xorriso" 3 depends on BR2_USE_WCHAR 4 depends on BR2_TOOLCHAIN_HAS_THREADS 5 depends on BR2_USE_MMU # fork() 6 select BR2_PACKAGE_LIBICONV if !BR2_ENABLE_LOCALE 7 help 8 xorriso copies file objects from POSIX compliant 9 filesystems into Rock Ridge enhanced ISO 9660 filesystems 10 and allows session-wise manipulation of such filesystems. 11 It can load the management information of existing ISO 12 images and it writes the session results to optical media 13 or to filesystem objects. 14 15 Vice versa xorriso is able to copy file objects out of ISO 16 9660 filesystems. 17 18 https://www.gnu.org/software/xorriso 19 20comment "xorriso needs a toolchain w/ wchar, threads" 21 depends on BR2_USE_MMU 22 depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS 23