Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

Input: create a book with Linux Input documentation

Now that all files under Documentation/input follows the ReST markup
language, rename them to *.rst and create a book for the Linux Input
subsystem.

Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>

authored by

Mauro Carvalho Chehab and committed by
Dmitry Torokhov
e2ba5731 1ad1473f

+91 -22
+2
Documentation/conf.py
··· 348 348 'The kernel development community', 'manual'), 349 349 ('driver-api/index', 'driver-api.tex', 'The kernel driver API manual', 350 350 'The kernel development community', 'manual'), 351 + ('input/index', 'linux-input.tex', 'The Linux input driver subsystem', 352 + 'The kernel development community', 'manual'), 351 353 ('kernel-documentation', 'kernel-documentation.tex', 'The Linux Kernel Documentation', 352 354 'The kernel development community', 'manual'), 353 355 ('process/index', 'development-process.tex', 'Linux Kernel Development Documentation',
Documentation/input/alps.txt Documentation/input/alps.rst
Documentation/input/amijoy.txt Documentation/input/amijoy.rst
Documentation/input/appletouch.txt Documentation/input/appletouch.rst
Documentation/input/atarikbd.txt Documentation/input/atarikbd.rst
Documentation/input/bcm5974.txt Documentation/input/bcm5974.rst
Documentation/input/cd32.txt Documentation/input/cd32.rst
Documentation/input/cma3000_d0x.txt Documentation/input/cma3000_d0x.rst
+10
Documentation/input/conf.py
··· 1 + # -*- coding: utf-8; mode: python -*- 2 + 3 + project = "The Linux input driver subsystem" 4 + 5 + tags.add("subproject") 6 + 7 + latex_documents = [ 8 + ('index', 'linux-input.tex', project, 9 + 'The kernel development community', 'manual'), 10 + ]
Documentation/input/cs461x.txt Documentation/input/cs461x.rst
Documentation/input/edt-ft5x06.txt Documentation/input/edt-ft5x06.rst
Documentation/input/elantech.txt Documentation/input/elantech.rst
Documentation/input/event-codes.txt Documentation/input/event-codes.rst
Documentation/input/ff.txt Documentation/input/ff.rst
Documentation/input/gamepad.txt Documentation/input/gamepad.rst
Documentation/input/gameport-programming.txt Documentation/input/gameport-programming.rst
Documentation/input/gpio-tilt.txt Documentation/input/gpio-tilt.rst
Documentation/input/iforce-protocol.txt Documentation/input/iforce-protocol.rst
+77
Documentation/input/index.rst
··· 1 + ============================= 2 + The Linux Input Documentation 3 + ============================= 4 + 5 + Disclaimer 6 + ========== 7 + 8 + This program is free software; you can redistribute it and/or modify it 9 + under the terms of the GNU General Public License as published by the Free 10 + Software Foundation; either version 2 of the License, or (at your option) 11 + any later version. 12 + 13 + This program is distributed in the hope that it will be useful, but 14 + WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY 15 + or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for 16 + more details. 17 + 18 + You should have received a copy of the GNU General Public License along 19 + with this program; if not, write to the Free Software Foundation, Inc., 59 20 + Temple Place, Suite 330, Boston, MA 02111-1307 USA 21 + 22 + For your convenience, the GNU General Public License version 2 is included 23 + in the package: See the file COPYING. 24 + 25 + 26 + Core API 27 + ======== 28 + 29 + .. toctree:: 30 + :maxdepth: 2 31 + :numbered: 32 + 33 + input 34 + input-programming 35 + event-codes 36 + joystick 37 + joystick-api 38 + multi-touch-protocol 39 + gamepad 40 + gameport-programming 41 + ff 42 + notifier 43 + userio 44 + 45 + Input drivers 46 + ============= 47 + 48 + .. toctree:: 49 + :maxdepth: 2 50 + :numbered: 51 + 52 + alps 53 + amijoy 54 + appletouch 55 + atarikbd 56 + bcm5974 57 + cd32 58 + cma3000_d0x 59 + cs461x 60 + edt-ft5x06 61 + elantech 62 + iforce-protocol 63 + joystick-parport 64 + gpio-tilt 65 + ntrig 66 + rotary-encoder 67 + sentelic 68 + walkera0701 69 + xpad 70 + yealink 71 + 72 + .. only:: subproject and html 73 + 74 + Indices 75 + ======= 76 + 77 + * :ref:`genindex`
Documentation/input/input-programming.txt Documentation/input/input-programming.rst
-20
Documentation/input/input.txt Documentation/input/input.rst
··· 6 6 7 7 :Copyright: |copy| 1999-2001 Vojtech Pavlik <vojtech@ucw.cz> - Sponsored by SuSE 8 8 9 - Disclaimer 10 - ========== 11 - 12 - This program is free software; you can redistribute it and/or modify it 13 - under the terms of the GNU General Public License as published by the Free 14 - Software Foundation; either version 2 of the License, or (at your option) 15 - any later version. 16 - 17 - This program is distributed in the hope that it will be useful, but 18 - WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY 19 - or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for 20 - more details. 21 - 22 - You should have received a copy of the GNU General Public License along 23 - with this program; if not, write to the Free Software Foundation, Inc., 59 24 - Temple Place, Suite 330, Boston, MA 02111-1307 USA 25 - 26 9 Should you need to contact me, the author, you can do so either by e-mail 27 10 - mail your message to <vojtech@ucw.cz>, or by paper mail: Vojtech Pavlik, 28 11 Simunkova 1594, Prague 8, 182 00 Czech Republic 29 - 30 - For your convenience, the GNU General Public License version 2 is included 31 - in the package: See the file COPYING. 32 12 33 13 Introduction 34 14 ============
Documentation/input/joystick-api.txt Documentation/input/joystick-api.rst
Documentation/input/joystick-parport.txt Documentation/input/joystick-parport.rst
Documentation/input/joystick.txt Documentation/input/joystick.rst
Documentation/input/multi-touch-protocol.txt Documentation/input/multi-touch-protocol.rst
Documentation/input/notifier.txt Documentation/input/notifier.rst
Documentation/input/ntrig.txt Documentation/input/ntrig.rst
Documentation/input/rotary-encoder.txt Documentation/input/rotary-encoder.rst
Documentation/input/sentelic.txt Documentation/input/sentelic.rst
Documentation/input/userio.txt Documentation/input/userio.rst
Documentation/input/walkera0701.txt Documentation/input/walkera0701.rst
Documentation/input/xpad.txt Documentation/input/xpad.rst
Documentation/input/yealink.txt Documentation/input/yealink.rst
+2 -2
MAINTAINERS
··· 6488 6488 M: Henrik Rydberg <rydberg@bitmath.org> 6489 6489 L: linux-input@vger.kernel.org 6490 6490 S: Odd fixes 6491 - F: Documentation/input/multi-touch-protocol.txt 6491 + F: Documentation/input/multi-touch-protocol.rst 6492 6492 F: drivers/input/input-mt.c 6493 6493 K: \b(ABS|SYN)_MT_ 6494 6494 ··· 13812 13812 M: Henk Vergonet <Henk.Vergonet@gmail.com> 13813 13813 L: usbb2k-api-dev@nongnu.org 13814 13814 S: Maintained 13815 - F: Documentation/input/yealink.txt 13815 + F: Documentation/input/yealink.rst 13816 13816 F: drivers/input/misc/yealink.* 13817 13817 13818 13818 Z8530 DRIVER FOR AX.25