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

Configure Feed

Select the types of activity you want to include in your feed.

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>

+53 -11
Documentation/BUG-HUNTING Documentation/admin-guide/bug-hunting.rst
+6 -6
Documentation/SecurityBugs Documentation/admin-guide/security-bugs.rst
··· 8 8 disclosed as quickly as possible. Please report security bugs to the 9 9 Linux kernel security team. 10 10 11 - 1) Contact 12 - ---------- 11 + Contact 12 + ------- 13 13 14 14 The Linux kernel security team can be contacted by email at 15 15 <security@kernel.org>. This is a private list of security officers ··· 23 23 Any exploit code is very helpful and will not be released without 24 24 consent from the reporter unless it has already been made public. 25 25 26 - 2) Disclosure 27 - ------------- 26 + Disclosure 27 + ---------- 28 28 29 29 The goal of the Linux kernel security team is to work with the 30 30 bug submitter to bug resolution as well as disclosure. We prefer ··· 39 39 to a few weeks. As a basic default policy, we expect report date to 40 40 disclosure date to be on the order of 7 days. 41 41 42 - 3) Non-disclosure agreements 43 - ---------------------------- 42 + Non-disclosure agreements 43 + ------------------------- 44 44 45 45 The Linux kernel security team is not a formal body and therefore unable 46 46 to enter any non-disclosure agreements.
Documentation/VGA-softcursor.txt Documentation/admin-guide/vga-softcursor.rst
+10
Documentation/admin-guide/conf.py
··· 1 + # -*- coding: utf-8; mode: python -*- 2 + 3 + project = 'Linux Kernel User Documentation' 4 + 5 + tags.add("subproject") 6 + 7 + latex_documents = [ 8 + ('index', 'linux-user.tex', 'Linux Kernel User Documentation', 9 + 'The kernel development community', 'manual'), 10 + ]
+34
Documentation/admin-guide/index.rst
··· 1 + Linux Kernel User's Documentation 2 + ================================= 3 + 4 + Contents: 5 + 6 + .. toctree:: 7 + :maxdepth: 2 8 + :numbered: 9 + 10 + README 11 + reporting-bugs 12 + bug-hunting 13 + oops-tracing 14 + ramoops 15 + initrd 16 + init 17 + dynamic-debug-howto 18 + security-bugs 19 + kernel-parameters 20 + serial-console 21 + braille-console 22 + parport 23 + md 24 + module-signing 25 + sysrq 26 + unicode 27 + vga-softcursor 28 + sysfs-rules 29 + devices 30 + binfmt-misc 31 + mono 32 + java 33 + bad-memory 34 + basic-profiling
-1
Documentation/bad_memory.txt Documentation/admin-guide/bad-memory.rst
··· 48 48 or:: 49 49 50 50 memmap=0x10000$0x18690000 51 -
-1
Documentation/basic_profiling.txt Documentation/admin-guide/basic-profiling.rst
··· 66 66 To only report on the kernel, run ``opreport -l /boot/vmlinux > output_file`` 67 67 68 68 A reset is needed to clear old statistics, which survive a reboot. 69 -
Documentation/binfmt_misc.txt Documentation/admin-guide/binfmt-misc.rst
Documentation/braille-console.txt Documentation/admin-guide/braille-console.rst
+2
Documentation/conf.py
··· 336 336 # (source start file, target name, title, 337 337 # author, documentclass [howto, manual, or own class]). 338 338 latex_documents = [ 339 + ('user/index', 'linux-user.tex', 'Linux Kernel User Documentation', 340 + 'The kernel development community', 'manual'), 339 341 ('kernel-documentation', 'kernel-documentation.tex', 'The Linux Kernel Documentation', 340 342 'The kernel development community', 'manual'), 341 343 ('process/index', 'development-process.tex', 'Linux Kernel Development Documentation',
-1
Documentation/devices.txt Documentation/admin-guide/devices.rst
··· 3348 3348 in our notation). This removes the problem of exhausting the 3349 3349 namespace and enables the kernel to automatically create the device 3350 3350 nodes for the slaves on demand using the "devpts" filesystem. 3351 -
Documentation/dynamic-debug-howto.txt Documentation/admin-guide/dynamic-debug-howto.rst
+1
Documentation/index.rst
··· 11 11 .. toctree:: 12 12 :maxdepth: 2 13 13 14 + admin-guide/index 14 15 kernel-documentation 15 16 process/index 16 17 dev-tools/tools
Documentation/init.txt Documentation/admin-guide/init.rst
Documentation/initrd.txt Documentation/admin-guide/initrd.rst
-1
Documentation/java.txt Documentation/admin-guide/java.rst
··· 415 415 heavily edited for binfmt_misc by Richard Günther 416 416 new scripts by Colin J. Watson <cjw44@cam.ac.uk> 417 417 added executable Jar file support by Kurt Huwig <kurt@iku-netz.de> 418 -
Documentation/kernel-parameters.txt Documentation/admin-guide/kernel-parameters.rst
Documentation/md.txt Documentation/admin-guide/md.rst
Documentation/mono.txt Documentation/admin-guide/mono.rst
Documentation/oops-tracing.txt Documentation/admin-guide/oops-tracing.rst
Documentation/parport.txt Documentation/admin-guide/parport.rst
Documentation/ramoops.txt Documentation/admin-guide/ramoops.rst
Documentation/serial-console.txt Documentation/admin-guide/serial-console.rst
Documentation/sysfs-rules.txt Documentation/admin-guide/sysfs-rules.rst
Documentation/sysrq.txt Documentation/admin-guide/sysrq.rst
Documentation/unicode.txt Documentation/admin-guide/unicode.rst
-1
README Documentation/admin-guide/README.rst
··· 408 408 409 409 gdb'ing a non-running kernel currently fails because ``gdb`` (wrongly) 410 410 disregards the starting offset for which the kernel is compiled. 411 -
REPORTING-BUGS Documentation/admin-guide/reporting-bugs.rst