<feed xmlns='http://www.w3.org/2005/Atom'>
<title>linux-dev/Documentation/DocBook/media/Makefile, branch master</title>
<subtitle>Linux kernel development work - see feature branches</subtitle>
<id>https://git.zx2c4.com/linux-dev/atom/Documentation/DocBook/media/Makefile?h=master</id>
<link rel='self' href='https://git.zx2c4.com/linux-dev/atom/Documentation/DocBook/media/Makefile?h=master'/>
<link rel='alternate' type='text/html' href='https://git.zx2c4.com/linux-dev/'/>
<updated>2016-07-28T23:08:19Z</updated>
<entry>
<title>doc-rst: Remove the media docbook</title>
<updated>2016-07-28T23:08:19Z</updated>
<author>
<name>Mauro Carvalho Chehab</name>
<email>mchehab@s-opensource.com</email>
</author>
<published>2016-07-27T09:32:31Z</published>
<link rel='alternate' type='text/html' href='https://git.zx2c4.com/linux-dev/commit/?id=43f71d93a0cb342f0c918fba3f6abb7661e40ad2'/>
<id>urn:sha1:43f71d93a0cb342f0c918fba3f6abb7661e40ad2</id>
<content type='text'>
Now that all media documentation was converted to Sphinx, we
should get rid of the old DocBook one, as we don't want people
to submit patches against the old stuff.

Signed-off-by: Mauro Carvalho Chehab &lt;mchehab@s-opensource.com&gt;
Acked-by: Hans Verkuil &lt;hans.verkuil@cisco.com&gt;
Signed-off-by: Mauro Carvalho Chehab &lt;mchehab@s-opensource.com&gt;
</content>
</entry>
<entry>
<title>[media] DocBook/media: add CEC documentation</title>
<updated>2016-06-28T14:45:24Z</updated>
<author>
<name>Hans Verkuil</name>
<email>hans.verkuil@cisco.com</email>
</author>
<published>2015-09-07T13:12:58Z</published>
<link rel='alternate' type='text/html' href='https://git.zx2c4.com/linux-dev/commit/?id=c7169ad5616229b87cabf886bc5f9cbd1fc35a5f'/>
<id>urn:sha1:c7169ad5616229b87cabf886bc5f9cbd1fc35a5f</id>
<content type='text'>
Add DocBook documentation for the CEC API.

Signed-off-by: Hans Verkuil &lt;hansverk@cisco.com&gt;
[k.debski@samsung.com: add documentation for passthrough mode]
[k.debski@samsung.com: minor fixes and change of reserved field sizes]
Signed-off-by: Kamil Debski &lt;kamil@wypas.org&gt;
Signed-off-by: Hans Verkuil &lt;hans.verkuil@cisco.com&gt;

Signed-off-by: Mauro Carvalho Chehab &lt;mchehab@s-opensource.com&gt;
</content>
</entry>
<entry>
<title>DocBook: only copy stuff to media_api if media xml is generated</title>
<updated>2015-11-19T09:46:39Z</updated>
<author>
<name>Mauro Carvalho Chehab</name>
<email>mchehab@osg.samsung.com</email>
</author>
<published>2015-11-19T09:41:40Z</published>
<link rel='alternate' type='text/html' href='https://git.zx2c4.com/linux-dev/commit/?id=d01b2d53a5a4db38c7c95651ca9ff23bb930844e'/>
<id>urn:sha1:d01b2d53a5a4db38c7c95651ca9ff23bb930844e</id>
<content type='text'>
It is possible to use:
	make DOCBOOKS=device-drivers.xml htmldocs

To produce just a few docbooks. In such case, the media docs
won't be built, causing the makefile target to return an error.

While this is ok for human eyes, if the above is used on an script,
it would cause troubles.

Fix it by only creating/filling the media_api directory if the
media_api.xml is found at DOCBOOKS.

Signed-off-by: Mauro Carvalho Chehab &lt;mchehab@osg.samsung.com&gt;
</content>
</entry>
<entry>
<title>[media] DocBook/media/Makefile: Do not fail mkdir if dir already exists</title>
<updated>2015-11-17T08:47:19Z</updated>
<author>
<name>Graham Whaley</name>
<email>graham.whaley@linux.intel.com</email>
</author>
<published>2015-11-12T20:51:51Z</published>
<link rel='alternate' type='text/html' href='https://git.zx2c4.com/linux-dev/commit/?id=f82a9ece922fd299e03ef5986e02b4e6bce8405a'/>
<id>urn:sha1:f82a9ece922fd299e03ef5986e02b4e6bce8405a</id>
<content type='text'>
Commit 5240f4e68d42 ("[media] DocBook/media/Makefile: Avoid make htmldocs
to fail") introduced a mkdir which is always called through
install_media_images from the Documentation/DocBook/Makefile htmldocs rule.
If you run 'make htmldocs' more than once you get:

 mkdir: cannot create directory ‘./Documentation/DocBook//media_api’:
  File exists

Add -p to the mkdir to continue no matter if the dir already exists.

Signed-off-by: Graham Whaley &lt;graham.whaley@linux.intel.com&gt;
Signed-off-by: Mauro Carvalho Chehab &lt;mchehab@osg.samsung.com&gt;
</content>
</entry>
<entry>
<title>[media] DocBook/media/Makefile: Avoid make htmldocs to fail</title>
<updated>2015-08-22T08:06:35Z</updated>
<author>
<name>Mauro Carvalho Chehab</name>
<email>mchehab@osg.samsung.com</email>
</author>
<published>2015-08-22T08:02:21Z</published>
<link rel='alternate' type='text/html' href='https://git.zx2c4.com/linux-dev/commit/?id=5240f4e68d4209588194ea1db60f7c822e2a1c6f'/>
<id>urn:sha1:5240f4e68d4209588194ea1db60f7c822e2a1c6f</id>
<content type='text'>
If make is called twice like that:
	make V=1 DOCBOOKS=device-drivers.xml htmldocs

Make will fail with:

	make -f ./scripts/Makefile.build obj=scripts/basic
	rm -f .tmp_quiet_recordmcount
	make -f ./scripts/Makefile.build obj=scripts build_docproc
	make -f ./scripts/Makefile.build obj=Documentation/DocBook htmldocs
	rm -rf Documentation/DocBook/index.html; echo '&lt;h1&gt;Linux Kernel HTML Documentation&lt;/h1&gt;' &gt;&gt; Documentation/DocBook/index.html &amp;&amp; echo '&lt;h2&gt;Kernel Version: 4.2.0-rc2&lt;/h2&gt;' &gt;&gt; Documentation/DocBook/index.html &amp;&amp; cat Documentation/DocBook/device-drivers.html &gt;&gt; Documentation/DocBook/index.html
	cp ./Documentation/DocBook//bayer.png ./Documentation/DocBook//constraints.png ./Documentation/DocBook//crop.gif ./Documentation/DocBook//dvbstb.png ./Documentation/DocBook//fieldseq_bt.gif ./Documentation/DocBook//fieldseq_tb.gif ./Documentation/DocBook//nv12mt.gif ./Documentation/DocBook//nv12mt_example.gif ./Documentation/DocBook//pipeline.png ./Documentation/DocBook//selection.png ./Documentation/DocBook//vbi_525.gif ./Documentation/DocBook//vbi_625.gif ./Documentation/DocBook//vbi_hsync.gif ./Documentation/DocBook/media/*.svg ./Documentation/DocBook/media/v4l/*.svg ./Documentation/DocBook//media_api
	cp: target './Documentation/DocBook//media_api' is not a directory
	Documentation/DocBook/Makefile:53: recipe for target 'htmldocs' failed

Signed-off-by: Mauro Carvalho Chehab &lt;mchehab@osg.samsung.com&gt;
Acked-by: Jonathan Corbet &lt;corbet@lwn.net&gt;
</content>
</entry>
<entry>
<title>[media] DocBook: Change format for enum dmx_output documentation</title>
<updated>2015-06-09T20:47:38Z</updated>
<author>
<name>Mauro Carvalho Chehab</name>
<email>mchehab@osg.samsung.com</email>
</author>
<published>2015-06-07T22:29:43Z</published>
<link rel='alternate' type='text/html' href='https://git.zx2c4.com/linux-dev/commit/?id=6eab8043f9b91a998dc06ce0b770b9664e51bfc3'/>
<id>urn:sha1:6eab8043f9b91a998dc06ce0b770b9664e51bfc3</id>
<content type='text'>
Use a table for the Demux output. No new information added
here. They were all merged inside the table.

Signed-off-by: Mauro Carvalho Chehab &lt;mchehab@osg.samsung.com&gt;
</content>
</entry>
<entry>
<title>[media] DocBook: Remove comments before parsing enum values</title>
<updated>2015-06-09T20:47:36Z</updated>
<author>
<name>Mauro Carvalho Chehab</name>
<email>mchehab@osg.samsung.com</email>
</author>
<published>2015-06-07T19:17:56Z</published>
<link rel='alternate' type='text/html' href='https://git.zx2c4.com/linux-dev/commit/?id=429c2024cb7b4e3be50dae9a5976692bf733f08c'/>
<id>urn:sha1:429c2024cb7b4e3be50dae9a5976692bf733f08c</id>
<content type='text'>
The comments may affect enum value parsing. Use cpp to remove
them.

Signed-off-by: Mauro Carvalho Chehab &lt;mchehab@osg.samsung.com&gt;
</content>
</entry>
<entry>
<title>[media] DocBook: handle enums on frontend.h</title>
<updated>2015-06-09T20:47:29Z</updated>
<author>
<name>Mauro Carvalho Chehab</name>
<email>mchehab@osg.samsung.com</email>
</author>
<published>2015-06-07T08:21:51Z</published>
<link rel='alternate' type='text/html' href='https://git.zx2c4.com/linux-dev/commit/?id=2695e66f94cdb7790b2f16c154690aaa366f8417'/>
<id>urn:sha1:2695e66f94cdb7790b2f16c154690aaa366f8417</id>
<content type='text'>
In order to be sure that all enum definitions will be documented,
let's parse the enum values and add xref links to them.

Lots of missing references will be risen as we miss adding
id's to those symbols at the documentation. Next patches will
fix this.

Signed-off-by: Mauro Carvalho Chehab &lt;mchehab@osg.samsung.com&gt;
</content>
</entry>
<entry>
<title>[media] DocBook: document DVB net API</title>
<updated>2015-06-08T17:53:42Z</updated>
<author>
<name>Mauro Carvalho Chehab</name>
<email>mchehab@osg.samsung.com</email>
</author>
<published>2015-06-01T11:56:49Z</published>
<link rel='alternate' type='text/html' href='https://git.zx2c4.com/linux-dev/commit/?id=315d27aacf1801b009e8f7ec9f92adba6243aec2'/>
<id>urn:sha1:315d27aacf1801b009e8f7ec9f92adba6243aec2</id>
<content type='text'>
The DVB network API was not documented. There are just some
placeholders there.

Replace it by a proper documentation.

Signed-off-by: Mauro Carvalho Chehab &lt;mchehab@osg.samsung.com&gt;
</content>
</entry>
<entry>
<title>[media] DocBook/Makefile: improve typedef parser</title>
<updated>2015-05-30T13:56:45Z</updated>
<author>
<name>Mauro Carvalho Chehab</name>
<email>mchehab@osg.samsung.com</email>
</author>
<published>2015-05-28T23:09:45Z</published>
<link rel='alternate' type='text/html' href='https://git.zx2c4.com/linux-dev/commit/?id=edcf3cdfcd49ef4a178226c9173b88245fb04dec'/>
<id>urn:sha1:edcf3cdfcd49ef4a178226c9173b88245fb04dec</id>
<content type='text'>
The typedef parser is wrong and doesn't get some of the
types defined at the DVB API. Improve it, as we want to add
cross-references to those types.

Signed-off-by: Mauro Carvalho Chehab &lt;mchehab@osg.samsung.com&gt;
</content>
</entry>
</feed>
