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.

Merge tag 'docs-5.2-fixes' of git://git.lwn.net/linux

Pull documentation fixes from Jonathan Corbet:
"A handful of fixes for a docs build problem, along with catching the
spdxcheck.py script up with the current state of affairs"

* tag 'docs-5.2-fixes' of git://git.lwn.net/linux:
Documentation: kdump: fix minor typo
scripts/spdxcheck.py: Add dual license subdirectory
scripts/spdxcheck.py: Fix path to deprecated licenses
counter: fix Documentation build error due to incorrect source file name

+3 -3
+1 -1
Documentation/driver-api/generic-counter.rst
··· 251 251 .. kernel-doc:: include/linux/counter.h 252 252 :internal: 253 253 254 - .. kernel-doc:: drivers/counter/generic-counter.c 254 + .. kernel-doc:: drivers/counter/counter.c 255 255 :export: 256 256 257 257 Implementation
+1 -1
Documentation/kdump/kdump.txt
··· 410 410 * Boot parameter "1" boots the dump-capture kernel into single-user 411 411 mode without networking. If you want networking, use "3". 412 412 413 - * We generally don' have to bring up a SMP kernel just to capture the 413 + * We generally don't have to bring up a SMP kernel just to capture the 414 414 dump. Hence generally it is useful either to build a UP dump-capture 415 415 kernel or specify maxcpus=1 option while loading dump-capture kernel. 416 416 Note, though maxcpus always works, you had better replace it with
+1 -1
scripts/spdxcheck.py
··· 32 32 def read_spdxdata(repo): 33 33 34 34 # The subdirectories of LICENSES in the kernel source 35 - license_dirs = [ "preferred", "other", "exceptions" ] 35 + license_dirs = [ "preferred", "deprecated", "exceptions", "dual" ] 36 36 lictree = repo.head.commit.tree['LICENSES'] 37 37 38 38 spdx = SPDXdata()