1config BR2_PACKAGE_BRLTTY 2 bool "brltty" 3 depends on BR2_USE_WCHAR 4 depends on BR2_TOOLCHAIN_HAS_THREADS 5 depends on !BR2_STATIC_LIBS 6 depends on BR2_USE_MMU # fork() 7 select BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_HID if BR2_PACKAGE_BLUEZ5_UTILS # runtime 8 help 9 A daemon providing access to the Linux console for a blind 10 person using a refreshable braille display. 11 12 http://brltty.app/ 13 14if BR2_PACKAGE_BRLTTY 15 16config BR2_PACKAGE_BRLTTY_TEXT_TABLE 17 string "text-table" 18 19endif 20 21comment "brltty needs a toolchain w/ dynamic lib, threads, wchar" 22 depends on BR2_USE_MMU 23 depends on BR2_STATIC_LIBS || !BR2_TOOLCHAIN_HAS_THREADS || !BR2_USE_WCHAR 24