TODO 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. Speakup project home: http://www.linux-speakup.org
  2. Mailing List: speakup@linux-speakup.org
  3. Speakup is a kernel based screen review package for the linux operating
  4. system. It allows blind users to interact with applications on the
  5. linux console by means of synthetic speech.
  6. Currently, speakup has several issues we know of.
  7. The first issue has to do with the way speakup communicates with serial
  8. ports. Currently, we communicate directly with the hardware
  9. ports. This however conflicts with the standard serial port drivers,
  10. which poses various problems. This is also not working for modern hardware
  11. such as PCI-based serial ports. Also, there is not a way we can
  12. communicate with USB devices. The current serial port handling code is
  13. in serialio.c in this directory.
  14. Some places are currently using in_atomic() because speakup functions
  15. are called in various contexts, and a couple of things can't happen
  16. in these cases. Pushing work to some worker thread would probably help,
  17. as was already done for the serial port driving part.
  18. There is a duplication of the selection functions in selections.c. These
  19. functions should get exported from drivers/char/selection.c (clear_selection
  20. notably) and used from there instead.
  21. The kobjects may have to move to a more proper place in /sys. The
  22. discussion on lkml resulted to putting speech synthesizers in the
  23. "speech" class, and the speakup screen reader itself into
  24. /sys/class/vtconsole/vtcon0/speakup, the nasty path being handled by
  25. userland tools.
  26. Another issue seems to only happen on SMP systems. It seems
  27. that text in the output buffer gets garbled because a lock is not set.
  28. This bug happens regularly, but no one has been able to find a situation
  29. which produces it consistently.
  30. Patches, suggestions, corrections, etc, are definitely welcome.
  31. We prefer that you contact us on the mailing list; however, if you do
  32. not want to subscribe to a mailing list, send your email to all of the
  33. following:
  34. w.d.hubbs@gmail.com, chris@the-brannons.com, kirk@braille.uwo.ca and
  35. samuel.thibault@ens-lyon.org.