Browse Source

docs-rst: create an user's manual book

Place README, REPORTING-BUGS, SecurityBugs and kernel-parameters
on an user's manual book.

As we'll be numbering the user's manual, remove the manual
numbering from SecurityBugs.

Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
Mauro Carvalho Chehab 9 years ago
parent
commit
9d85025b04

+ 0 - 1
README → Documentation/admin-guide/README.rst

@@ -408,4 +408,3 @@ If something goes wrong
 
    gdb'ing a non-running kernel currently fails because ``gdb`` (wrongly)
    disregards the starting offset for which the kernel is compiled.
-

+ 0 - 1
Documentation/bad_memory.txt → Documentation/admin-guide/bad-memory.rst

@@ -48,4 +48,3 @@ With the numbers of the example above::
 or::
 
 	memmap=0x10000$0x18690000
-

+ 0 - 1
Documentation/basic_profiling.txt → Documentation/admin-guide/basic-profiling.rst

@@ -66,4 +66,3 @@ Some ``opcontrol`` commands::
 To only report on the kernel, run ``opreport -l /boot/vmlinux > output_file``
 
 A reset is needed to clear old statistics, which survive a reboot.
-

+ 0 - 0
Documentation/binfmt_misc.txt → Documentation/admin-guide/binfmt-misc.rst


+ 0 - 0
Documentation/braille-console.txt → Documentation/admin-guide/braille-console.rst


+ 0 - 0
Documentation/BUG-HUNTING → Documentation/admin-guide/bug-hunting.rst


+ 10 - 0
Documentation/admin-guide/conf.py

@@ -0,0 +1,10 @@
+# -*- coding: utf-8; mode: python -*-
+
+project = 'Linux Kernel User Documentation'
+
+tags.add("subproject")
+
+latex_documents = [
+    ('index', 'linux-user.tex', 'Linux Kernel User Documentation',
+     'The kernel development community', 'manual'),
+]

+ 0 - 1
Documentation/devices.txt → Documentation/admin-guide/devices.rst

@@ -3348,4 +3348,3 @@ for the slaves; the slaves are named with decimal integers (``/dev/pts/#``
 in our notation).  This removes the problem of exhausting the
 namespace and enables the kernel to automatically create the device
 nodes for the slaves on demand using the "devpts" filesystem.
-

+ 0 - 0
Documentation/dynamic-debug-howto.txt → Documentation/admin-guide/dynamic-debug-howto.rst


+ 34 - 0
Documentation/admin-guide/index.rst

@@ -0,0 +1,34 @@
+Linux Kernel User's Documentation
+=================================
+
+Contents:
+
+.. toctree::
+   :maxdepth: 2
+   :numbered:
+
+   README
+   reporting-bugs
+   bug-hunting
+   oops-tracing
+   ramoops
+   initrd
+   init
+   dynamic-debug-howto
+   security-bugs
+   kernel-parameters
+   serial-console
+   braille-console
+   parport
+   md
+   module-signing
+   sysrq
+   unicode
+   vga-softcursor
+   sysfs-rules
+   devices
+   binfmt-misc
+   mono
+   java
+   bad-memory
+   basic-profiling

+ 0 - 0
Documentation/init.txt → Documentation/admin-guide/init.rst


+ 0 - 0
Documentation/initrd.txt → Documentation/admin-guide/initrd.rst


+ 0 - 1
Documentation/java.txt → Documentation/admin-guide/java.rst

@@ -415,4 +415,3 @@ originally by Brian A. Lantz, brian@lantz.com
 heavily edited for binfmt_misc by Richard Günther
 new scripts by Colin J. Watson <cjw44@cam.ac.uk>
 added executable Jar file support by Kurt Huwig <kurt@iku-netz.de>
-

+ 0 - 0
Documentation/kernel-parameters.txt → Documentation/admin-guide/kernel-parameters.rst


+ 0 - 0
Documentation/md.txt → Documentation/admin-guide/md.rst


+ 0 - 0
Documentation/mono.txt → Documentation/admin-guide/mono.rst


+ 0 - 0
Documentation/oops-tracing.txt → Documentation/admin-guide/oops-tracing.rst


+ 0 - 0
Documentation/parport.txt → Documentation/admin-guide/parport.rst


+ 0 - 0
Documentation/ramoops.txt → Documentation/admin-guide/ramoops.rst


+ 0 - 0
REPORTING-BUGS → Documentation/admin-guide/reporting-bugs.rst


+ 6 - 6
Documentation/SecurityBugs → Documentation/admin-guide/security-bugs.rst

@@ -8,8 +8,8 @@ like to know when a security bug is found so that it can be fixed and
 disclosed as quickly as possible.  Please report security bugs to the
 Linux kernel security team.
 
-1) Contact
-----------
+Contact
+-------
 
 The Linux kernel security team can be contacted by email at
 <security@kernel.org>.  This is a private list of security officers
@@ -23,8 +23,8 @@ REPORTING-BUGS if you are unclear about what information is helpful.
 Any exploit code is very helpful and will not be released without
 consent from the reporter unless it has already been made public.
 
-2) Disclosure
--------------
+Disclosure
+----------
 
 The goal of the Linux kernel security team is to work with the
 bug submitter to bug resolution as well as disclosure.  We prefer
@@ -39,8 +39,8 @@ disclosure is from immediate (esp. if it's already publicly known)
 to a few weeks.  As a basic default policy, we expect report date to
 disclosure date to be on the order of 7 days.
 
-3) Non-disclosure agreements
-----------------------------
+Non-disclosure agreements
+-------------------------
 
 The Linux kernel security team is not a formal body and therefore unable
 to enter any non-disclosure agreements.

+ 0 - 0
Documentation/serial-console.txt → Documentation/admin-guide/serial-console.rst


+ 0 - 0
Documentation/sysfs-rules.txt → Documentation/admin-guide/sysfs-rules.rst


+ 0 - 0
Documentation/sysrq.txt → Documentation/admin-guide/sysrq.rst


+ 0 - 0
Documentation/unicode.txt → Documentation/admin-guide/unicode.rst


+ 0 - 0
Documentation/VGA-softcursor.txt → Documentation/admin-guide/vga-softcursor.rst


+ 2 - 0
Documentation/conf.py

@@ -336,6 +336,8 @@ latex_elements = {
 # (source start file, target name, title,
 #  author, documentclass [howto, manual, or own class]).
 latex_documents = [
+    ('user/index', 'linux-user.tex', 'Linux Kernel User Documentation',
+     'The kernel development community', 'manual'),
     ('kernel-documentation', 'kernel-documentation.tex', 'The Linux Kernel Documentation',
      'The kernel development community', 'manual'),
     ('process/index', 'development-process.tex', 'Linux Kernel Development Documentation',

+ 1 - 0
Documentation/index.rst

@@ -11,6 +11,7 @@ Contents:
 .. toctree::
    :maxdepth: 2
 
+   admin-guide/index
    kernel-documentation
    process/index
    dev-tools/tools