<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	>
<channel>
	<title>Comments for Martin Pitt's Weblog</title>
	<atom:link href="http://martinpitt.wordpress.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://martinpitt.wordpress.com</link>
	<description>addicted to Ubuntu development</description>
	<pubDate>Wed, 20 Aug 2008 21:56:37 +0000</pubDate>
	<generator>http://wordpress.org/?v=MU</generator>
		<item>
		<title>Comment on packaged DVB-T drivers for Ubuntu 8.04 by Alain Hertog</title>
		<link>http://martinpitt.wordpress.com/2008/06/10/packaged-dvb-t-drivers-for-ubuntu-804/#comment-139</link>
		<dc:creator>Alain Hertog</dc:creator>
		<pubDate>Sun, 10 Aug 2008 17:50:17 +0000</pubDate>
		<guid isPermaLink="false">http://martinpitt.wordpress.com/2008/06/10/packaged-dvb-t-drivers-for-ubuntu-804/#comment-139</guid>
		<description>Sorry for the type...my name is Alain not lain... ;-)
Where did the "A" go ?</description>
		<content:encoded><![CDATA[<p>Sorry for the type&#8230;my name is Alain not lain&#8230; <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /><br />
Where did the &#8220;A&#8221; go ?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on packaged DVB-T drivers for Ubuntu 8.04 by lain hertog</title>
		<link>http://martinpitt.wordpress.com/2008/06/10/packaged-dvb-t-drivers-for-ubuntu-804/#comment-138</link>
		<dc:creator>lain hertog</dc:creator>
		<pubDate>Sun, 10 Aug 2008 17:48:17 +0000</pubDate>
		<guid isPermaLink="false">http://martinpitt.wordpress.com/2008/06/10/packaged-dvb-t-drivers-for-ubuntu-804/#comment-138</guid>
		<description>I'm having the same problem as Ronald Verbeek, only that it breaks my  Logitech Quickcam ( quickcam.ko ) with the same errors.
My Pinnacle DVB-T Stick Solo 72e however works flawlessly with this package. Is there any solution that both the new v4l-dvb devices work and the 'old' v4l devices keep working.

The package also worked on my Asus Eeepc 901 with the stock Xandros distro.

Thanks,

Alain</description>
		<content:encoded><![CDATA[<p>I&#8217;m having the same problem as Ronald Verbeek, only that it breaks my  Logitech Quickcam ( quickcam.ko ) with the same errors.<br />
My Pinnacle DVB-T Stick Solo 72e however works flawlessly with this package. Is there any solution that both the new v4l-dvb devices work and the &#8216;old&#8217; v4l devices keep working.</p>
<p>The package also worked on my Asus Eeepc 901 with the stock Xandros distro.</p>
<p>Thanks,</p>
<p>Alain</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on packaged DVB-T drivers for Ubuntu 8.04 by takushi</title>
		<link>http://martinpitt.wordpress.com/2008/06/10/packaged-dvb-t-drivers-for-ubuntu-804/#comment-130</link>
		<dc:creator>takushi</dc:creator>
		<pubDate>Tue, 22 Jul 2008 07:25:25 +0000</pubDate>
		<guid isPermaLink="false">http://martinpitt.wordpress.com/2008/06/10/packaged-dvb-t-drivers-for-ubuntu-804/#comment-130</guid>
		<description>rakudave :
i have the same but dont works :/

dmesg only say 
dvb-usb: found a 'Pinnacle PCTV 72e' in cold state, will try to load a firmware
dvb-usb: downloading firmware from file 'dvb-usb-dib0700-1.10.fw'

but if i open kaffeine it say  that dont have any dvb-t isntaled</description>
		<content:encoded><![CDATA[<p>rakudave :<br />
i have the same but dont works :/</p>
<p>dmesg only say<br />
dvb-usb: found a &#8216;Pinnacle PCTV 72e&#8217; in cold state, will try to load a firmware<br />
dvb-usb: downloading firmware from file &#8216;dvb-usb-dib0700-1.10.fw&#8217;</p>
<p>but if i open kaffeine it say  that dont have any dvb-t isntaled</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on That edgy chroot can go &#8230; oops! by foo</title>
		<link>http://martinpitt.wordpress.com/2008/07/21/that-edgy-chroot-can-go-oops/#comment-129</link>
		<dc:creator>foo</dc:creator>
		<pubDate>Tue, 22 Jul 2008 07:11:08 +0000</pubDate>
		<guid isPermaLink="false">http://martinpitt.wordpress.com/?p=16#comment-129</guid>
		<description>Use schroot instead of wasting time with scripting. schroot rocks.</description>
		<content:encoded><![CDATA[<p>Use schroot instead of wasting time with scripting. schroot rocks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on That edgy chroot can go &#8230; oops! by Michael MacDonald</title>
		<link>http://martinpitt.wordpress.com/2008/07/21/that-edgy-chroot-can-go-oops/#comment-128</link>
		<dc:creator>Michael MacDonald</dc:creator>
		<pubDate>Mon, 21 Jul 2008 19:38:56 +0000</pubDate>
		<guid isPermaLink="false">http://martinpitt.wordpress.com/?p=16#comment-128</guid>
		<description>It's not a foolproof way to handle it, but you could write a wrapper script to manage your chroot work.

I can't share my work scripts, but the logic goes something like this:

BIND_MOUNTS=/foo /bar /baz

for mount in $BIND_MOUNTS; do
  
done

sudo chroot $CHROOT 

The trick is to create a rollback() function that un-does all the mounts, and then do something like this:

trap rollback INT
trap rollback TERM
trap rollback EXIT

That way, things get cleaned up on most exit conditions.  You can make your script pretty fancy, to avoid multiple mounts and do distro-specific stuff.  You can also use a ROLLBACK array, instead of hard-coding the cleanup process...  etc. etc.

Might be too much work for a one-off, but if you spend a lot of time inside chroots, it makes life a lot easier.</description>
		<content:encoded><![CDATA[<p>It&#8217;s not a foolproof way to handle it, but you could write a wrapper script to manage your chroot work.</p>
<p>I can&#8217;t share my work scripts, but the logic goes something like this:</p>
<p>BIND_MOUNTS=/foo /bar /baz</p>
<p>for mount in $BIND_MOUNTS; do</p>
<p>done</p>
<p>sudo chroot $CHROOT </p>
<p>The trick is to create a rollback() function that un-does all the mounts, and then do something like this:</p>
<p>trap rollback INT<br />
trap rollback TERM<br />
trap rollback EXIT</p>
<p>That way, things get cleaned up on most exit conditions.  You can make your script pretty fancy, to avoid multiple mounts and do distro-specific stuff.  You can also use a ROLLBACK array, instead of hard-coding the cleanup process&#8230;  etc. etc.</p>
<p>Might be too much work for a one-off, but if you spend a lot of time inside chroots, it makes life a lot easier.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on That edgy chroot can go &#8230; oops! by Rob J. Caskey</title>
		<link>http://martinpitt.wordpress.com/2008/07/21/that-edgy-chroot-can-go-oops/#comment-127</link>
		<dc:creator>Rob J. Caskey</dc:creator>
		<pubDate>Mon, 21 Jul 2008 18:16:47 +0000</pubDate>
		<guid isPermaLink="false">http://martinpitt.wordpress.com/?p=16#comment-127</guid>
		<description>I have, in the past, rm -rf'd /target, although fortunately is a fresh install w/ debootstrap, but still, yeah, been there.</description>
		<content:encoded><![CDATA[<p>I have, in the past, rm -rf&#8217;d /target, although fortunately is a fresh install w/ debootstrap, but still, yeah, been there.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on That edgy chroot can go &#8230; oops! by John Gill</title>
		<link>http://martinpitt.wordpress.com/2008/07/21/that-edgy-chroot-can-go-oops/#comment-126</link>
		<dc:creator>John Gill</dc:creator>
		<pubDate>Mon, 21 Jul 2008 18:05:29 +0000</pubDate>
		<guid isPermaLink="false">http://martinpitt.wordpress.com/?p=16#comment-126</guid>
		<description>I would do:

  alias rid='rm --one-file-system'

instead and then get into the habit of using rid.

aliasing standard commands like rm to a less dangerous version of themselves seems a great idea until you go onto a system that doesn't have the alias.</description>
		<content:encoded><![CDATA[<p>I would do:</p>
<p>  alias rid=&#8217;rm &#8211;one-file-system&#8217;</p>
<p>instead and then get into the habit of using rid.</p>
<p>aliasing standard commands like rm to a less dangerous version of themselves seems a great idea until you go onto a system that doesn&#8217;t have the alias.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on packaged DVB-T drivers for Ubuntu 8.04 by Nasenbaer</title>
		<link>http://martinpitt.wordpress.com/2008/06/10/packaged-dvb-t-drivers-for-ubuntu-804/#comment-125</link>
		<dc:creator>Nasenbaer</dc:creator>
		<pubDate>Sun, 20 Jul 2008 18:00:49 +0000</pubDate>
		<guid isPermaLink="false">http://martinpitt.wordpress.com/2008/06/10/packaged-dvb-t-drivers-for-ubuntu-804/#comment-125</guid>
		<description>Hi,
my eeepc with 2.6.4-19 Kernel hangs up when starting - shows :  v4l-dvb (0.20080610): Installing module ........................................... (and many more dots...)
Any idea for this?

Thanks!

Regards

Sebastian / Nasenbaer</description>
		<content:encoded><![CDATA[<p>Hi,<br />
my eeepc with 2.6.4-19 Kernel hangs up when starting - shows :  v4l-dvb (0.20080610): Installing module &#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;. (and many more dots&#8230 <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /><br />
Any idea for this?</p>
<p>Thanks!</p>
<p>Regards</p>
<p>Sebastian / Nasenbaer</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on packaged DVB-T drivers for Ubuntu 8.04 by rakudave</title>
		<link>http://martinpitt.wordpress.com/2008/06/10/packaged-dvb-t-drivers-for-ubuntu-804/#comment-124</link>
		<dc:creator>rakudave</dc:creator>
		<pubDate>Fri, 18 Jul 2008 13:08:22 +0000</pubDate>
		<guid isPermaLink="false">http://martinpitt.wordpress.com/2008/06/10/packaged-dvb-t-drivers-for-ubuntu-804/#comment-124</guid>
		<description>works like a charm
(pinnacle 72e DVB-T on ubuntu 8.04)
thanks!</description>
		<content:encoded><![CDATA[<p>works like a charm<br />
(pinnacle 72e DVB-T on ubuntu 8.04)<br />
thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on packaged DVB-T drivers for Ubuntu 8.04 by Ronald Verbeek</title>
		<link>http://martinpitt.wordpress.com/2008/06/10/packaged-dvb-t-drivers-for-ubuntu-804/#comment-123</link>
		<dc:creator>Ronald Verbeek</dc:creator>
		<pubDate>Mon, 14 Jul 2008 08:50:39 +0000</pubDate>
		<guid isPermaLink="false">http://martinpitt.wordpress.com/2008/06/10/packaged-dvb-t-drivers-for-ubuntu-804/#comment-123</guid>
		<description>It works for my Pinnacle PCTV DVB-T stick Solo, however it breaks my Logitech gspca based webcam, see dmesg output:

[99314.804130] Linux video capture interface: v2.00
[99314.807560] gspca: disagrees about version of symbol video_devdata
[99314.807578] gspca: Unknown symbol video_devdata
[99314.807911] gspca: disagrees about version of symbol video_unregister_device
[99314.807914] gspca: Unknown symbol video_unregister_device
[99314.808035] gspca: disagrees about version of symbol video_device_alloc
[99314.808037] gspca: Unknown symbol video_device_alloc
[99314.808079] gspca: disagrees about version of symbol video_register_device
[99314.808082] gspca: Unknown symbol video_register_device
[99314.808343] gspca: disagrees about version of symbol video_device_release
[99314.808346] gspca: Unknown symbol video_device_release
[99367.402633] Linux video capture interface: v2.00
[99367.406800] gspca: disagrees about version of symbol video_devdata
[99367.406808] gspca: Unknown symbol video_devdata
[99367.407141] gspca: disagrees about version of symbol video_unregister_device
[99367.407144] gspca: Unknown symbol video_unregister_device
[99367.407280] gspca: disagrees about version of symbol video_device_alloc
[99367.407283] gspca: Unknown symbol video_device_alloc
[99367.407325] gspca: disagrees about version of symbol video_register_device
[99367.407327] gspca: Unknown symbol video_register_device
[99367.407589] gspca: disagrees about version of symbol video_device_release
[99367.407591] gspca: Unknown symbol video_device_release

Regards,

Ronald.</description>
		<content:encoded><![CDATA[<p>It works for my Pinnacle PCTV DVB-T stick Solo, however it breaks my Logitech gspca based webcam, see dmesg output:</p>
<p>[99314.804130] Linux video capture interface: v2.00<br />
[99314.807560] gspca: disagrees about version of symbol video_devdata<br />
[99314.807578] gspca: Unknown symbol video_devdata<br />
[99314.807911] gspca: disagrees about version of symbol video_unregister_device<br />
[99314.807914] gspca: Unknown symbol video_unregister_device<br />
[99314.808035] gspca: disagrees about version of symbol video_device_alloc<br />
[99314.808037] gspca: Unknown symbol video_device_alloc<br />
[99314.808079] gspca: disagrees about version of symbol video_register_device<br />
[99314.808082] gspca: Unknown symbol video_register_device<br />
[99314.808343] gspca: disagrees about version of symbol video_device_release<br />
[99314.808346] gspca: Unknown symbol video_device_release<br />
[99367.402633] Linux video capture interface: v2.00<br />
[99367.406800] gspca: disagrees about version of symbol video_devdata<br />
[99367.406808] gspca: Unknown symbol video_devdata<br />
[99367.407141] gspca: disagrees about version of symbol video_unregister_device<br />
[99367.407144] gspca: Unknown symbol video_unregister_device<br />
[99367.407280] gspca: disagrees about version of symbol video_device_alloc<br />
[99367.407283] gspca: Unknown symbol video_device_alloc<br />
[99367.407325] gspca: disagrees about version of symbol video_register_device<br />
[99367.407327] gspca: Unknown symbol video_register_device<br />
[99367.407589] gspca: disagrees about version of symbol video_device_release<br />
[99367.407591] gspca: Unknown symbol video_device_release</p>
<p>Regards,</p>
<p>Ronald.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
