<?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"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:creativeCommons="http://backend.userland.com/creativeCommonsRssModule"	>
<channel>
	<title>Comments on: Help with the Hal deprecation</title>
	<atom:link href="http://blogs.gnome.org/juanje/2009/06/16/help-with-the-hal-deprecation/feed/" rel="self" type="application/rss+xml" />
	<link>http://blogs.gnome.org/juanje/2009/06/16/help-with-the-hal-deprecation/</link>
	<description>Juanje's thoughts about GNOME, FLOSS and more</description>
	<lastBuildDate>Fri, 27 Jan 2012 05:32:48 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Michael T</title>
		<link>http://blogs.gnome.org/juanje/2009/06/16/help-with-the-hal-deprecation/comment-page-1/#comment-194</link>
		<dc:creator>Michael T</dc:creator>
		<pubDate>Wed, 16 Sep 2009 11:28:41 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.gnome.org/juanje/?p=133#comment-194</guid>
		<description>If you&#039;re not worried about portability, sysfs looks like a good bet too.  They have certain guarantees about how the API will (not) change in future, and it is pretty easy to write code that will work with kernels back to the early 2.6.x days and still work as GregKH says it should in order to be future-proof.  I&#039;m not sure how good it is if you want to poll for new devices though, and finding the matching device nodes can be a bit of a pain without falling back to (newer versions of) udev.</description>
		<content:encoded><![CDATA[<p>If you&#8217;re not worried about portability, sysfs looks like a good bet too.  They have certain guarantees about how the API will (not) change in future, and it is pretty easy to write code that will work with kernels back to the early 2.6.x days and still work as GregKH says it should in order to be future-proof.  I&#8217;m not sure how good it is if you want to poll for new devices though, and finding the matching device nodes can be a bit of a pain without falling back to (newer versions of) udev.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mr. Anderson</title>
		<link>http://blogs.gnome.org/juanje/2009/06/16/help-with-the-hal-deprecation/comment-page-1/#comment-136</link>
		<dc:creator>Mr. Anderson</dc:creator>
		<pubDate>Sun, 05 Jul 2009 06:41:55 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.gnome.org/juanje/?p=133#comment-136</guid>
		<description>It&#039;s just yet another display of people making decisions who shouldn&#039;t be.   They cannot separate out an api, componentize code or finish what they start.

I see it time and time again, when someone cannot scale or extend a project they work they unilaterally give up and demand a re-write.

Take a look at the state of sound on the Linux desktop, OSS, ALSA, PulseAudio.  Everyone&#039;s a rock star.

Sucks to have to live with such buggy results.</description>
		<content:encoded><![CDATA[<p>It&#8217;s just yet another display of people making decisions who shouldn&#8217;t be.   They cannot separate out an api, componentize code or finish what they start.</p>
<p>I see it time and time again, when someone cannot scale or extend a project they work they unilaterally give up and demand a re-write.</p>
<p>Take a look at the state of sound on the Linux desktop, OSS, ALSA, PulseAudio.  Everyone&#8217;s a rock star.</p>
<p>Sucks to have to live with such buggy results.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: juanje</title>
		<link>http://blogs.gnome.org/juanje/2009/06/16/help-with-the-hal-deprecation/comment-page-1/#comment-97</link>
		<dc:creator>juanje</dc:creator>
		<pubDate>Wed, 17 Jun 2009 22:44:08 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.gnome.org/juanje/?p=133#comment-97</guid>
		<description>I&#039;m glad you tell me that. After your response and some research about this topic I think I understand better the plans for Hal, udev, libudev, etc.</description>
		<content:encoded><![CDATA[<p>I&#8217;m glad you tell me that. After your response and some research about this topic I think I understand better the plans for Hal, udev, libudev, etc.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Simon</title>
		<link>http://blogs.gnome.org/juanje/2009/06/16/help-with-the-hal-deprecation/comment-page-1/#comment-96</link>
		<dc:creator>Simon</dc:creator>
		<pubDate>Tue, 16 Jun 2009 22:02:40 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.gnome.org/juanje/?p=133#comment-96</guid>
		<description>Not quite right. The original plan with DeviceKit was simply a re-write of the increasingly unmaintainable HAL code, taking into account lessons learned with HAL. But it turned out that really, HAL/DeviceKit was just duplicating already available in once central place - udev. So the plan is, if you want hardware info, you talk to udev.

The bit about grasping multiple APIs is little different from before. Previously, if you wanted to get photos off your camera, you either mounted it as a filesystem, or you used libgphoto. Under DeviceKit? Well, you either mount it as a filesystem, or you use libgphoto. Not too different, right?

What *is* changing is that things that got added to HAL that don&#039;t relate directly to device enumeration are being pulled back out again. That&#039;s how HAL started, then stuff like power management and disk management got merged into the core. Now they&#039;re being pulled back out, so instead of calling Suspend() on HAL, you call it on DeviceKit-Power instead. Again, not all that different.</description>
		<content:encoded><![CDATA[<p>Not quite right. The original plan with DeviceKit was simply a re-write of the increasingly unmaintainable HAL code, taking into account lessons learned with HAL. But it turned out that really, HAL/DeviceKit was just duplicating already available in once central place &#8211; udev. So the plan is, if you want hardware info, you talk to udev.</p>
<p>The bit about grasping multiple APIs is little different from before. Previously, if you wanted to get photos off your camera, you either mounted it as a filesystem, or you used libgphoto. Under DeviceKit? Well, you either mount it as a filesystem, or you use libgphoto. Not too different, right?</p>
<p>What *is* changing is that things that got added to HAL that don&#8217;t relate directly to device enumeration are being pulled back out again. That&#8217;s how HAL started, then stuff like power management and disk management got merged into the core. Now they&#8217;re being pulled back out, so instead of calling Suspend() on HAL, you call it on DeviceKit-Power instead. Again, not all that different.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: juanje</title>
		<link>http://blogs.gnome.org/juanje/2009/06/16/help-with-the-hal-deprecation/comment-page-1/#comment-95</link>
		<dc:creator>juanje</dc:creator>
		<pubDate>Tue, 16 Jun 2009 11:10:30 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.gnome.org/juanje/?p=133#comment-95</guid>
		<description>That&#039;s exactly what I was worry about... I was hopping someone tell me I was wrong :-/

Probably there are good reasons for using libudev, gudev, libgphoto2 and so on but I really hope there will be a centralized and common API for asking for hardware info.</description>
		<content:encoded><![CDATA[<p>That&#8217;s exactly what I was worry about&#8230; I was hopping someone tell me I was wrong <img src='http://blogs.gnome.org/juanje/wp-content/mu-plugins/tango-smilies/tango/face-uncertain.png' alt=':-/' class='wp-smiley' /> </p>
<p>Probably there are good reasons for using libudev, gudev, libgphoto2 and so on but I really hope there will be a centralized and common API for asking for hardware info.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: FunkyM</title>
		<link>http://blogs.gnome.org/juanje/2009/06/16/help-with-the-hal-deprecation/comment-page-1/#comment-94</link>
		<dc:creator>FunkyM</dc:creator>
		<pubDate>Tue, 16 Jun 2009 10:10:07 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.gnome.org/juanje/?p=133#comment-94</guid>
		<description>The plan: Basically, you forget about getting any hardware info from a central place like it was with HAL. You are thrown back in time before HAL existed and made things easier.

Every software now has to go back doing it the old way and grasp multiple APIs and locations to implement their own hw info grabbing process like before[*].

[*] (Except if there is a DeviceKit-* equivalent available. You should also forget about device enumerations or non-udev platform use.)</description>
		<content:encoded><![CDATA[<p>The plan: Basically, you forget about getting any hardware info from a central place like it was with HAL. You are thrown back in time before HAL existed and made things easier.</p>
<p>Every software now has to go back doing it the old way and grasp multiple APIs and locations to implement their own hw info grabbing process like before[*].</p>
<p>[*] (Except if there is a DeviceKit-* equivalent available. You should also forget about device enumerations or non-udev platform use.)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: juanje</title>
		<link>http://blogs.gnome.org/juanje/2009/06/16/help-with-the-hal-deprecation/comment-page-1/#comment-93</link>
		<dc:creator>juanje</dc:creator>
		<pubDate>Tue, 16 Jun 2009 07:06:12 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.gnome.org/juanje/?p=133#comment-93</guid>
		<description>I know. I&#039;ve never said so. The Ubuntu&#039;s plan was the way I found it. Somehow I missed it at the xdg and GNOME lists... :-/

I know the change came (mostly) from &lt;a href=&quot;http://blog.fubar.dk/&quot; rel=&quot;nofollow&quot;&gt;David Zeuthen&lt;/a&gt; and more people from GNOME and Fedora. And the move is making basicly at Freedesktop.org.</description>
		<content:encoded><![CDATA[<p>I know. I&#8217;ve never said so. The Ubuntu&#8217;s plan was the way I found it. Somehow I missed it at the xdg and GNOME lists&#8230; <img src='http://blogs.gnome.org/juanje/wp-content/mu-plugins/tango-smilies/tango/face-uncertain.png' alt=':-/' class='wp-smiley' /> </p>
<p>I know the change came (mostly) from <a href="http://blog.fubar.dk/" rel="nofollow">David Zeuthen</a> and more people from GNOME and Fedora. And the move is making basicly at Freedesktop.org.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: drago01</title>
		<link>http://blogs.gnome.org/juanje/2009/06/16/help-with-the-hal-deprecation/comment-page-1/#comment-92</link>
		<dc:creator>drago01</dc:creator>
		<pubDate>Tue, 16 Jun 2009 07:00:30 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.gnome.org/juanje/?p=133#comment-92</guid>
		<description>You should move to libudev or gudev (gobject based lib ontop of libudev) instead of using hal.</description>
		<content:encoded><![CDATA[<p>You should move to libudev or gudev (gobject based lib ontop of libudev) instead of using hal.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: anon</title>
		<link>http://blogs.gnome.org/juanje/2009/06/16/help-with-the-hal-deprecation/comment-page-1/#comment-91</link>
		<dc:creator>anon</dc:creator>
		<pubDate>Tue, 16 Jun 2009 06:57:36 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.gnome.org/juanje/?p=133#comment-91</guid>
		<description>It&#039;s not ubuntu who  is driving the change ;). In this case they are just &#039;speccing&#039; out what upstream does ;).</description>
		<content:encoded><![CDATA[<p>It&#8217;s not ubuntu who  is driving the change <img src='http://blogs.gnome.org/juanje/wp-content/mu-plugins/tango-smilies/tango/face-wink.png' alt=';)' class='wp-smiley' /> . In this case they are just &#8216;speccing&#8217; out what upstream does <img src='http://blogs.gnome.org/juanje/wp-content/mu-plugins/tango-smilies/tango/face-wink.png' alt=';)' class='wp-smiley' /> .</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: juanje</title>
		<link>http://blogs.gnome.org/juanje/2009/06/16/help-with-the-hal-deprecation/comment-page-1/#comment-90</link>
		<dc:creator>juanje</dc:creator>
		<pubDate>Tue, 16 Jun 2009 06:52:46 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.gnome.org/juanje/?p=133#comment-90</guid>
		<description>Actually I had already readed the link from Jaap and the ones inside the article that Juanjo Marin give me (well not &lt;a href=&quot;http://fedoraproject.org/wiki/Features/DeviceKit&quot; rel=&quot;nofollow&quot;&gt;the one from Fedora&lt;/a&gt;).

But probably I have to read carefully them again to get all the info I need.

What I really need is to know how to do some things we (Guadalinex) do by calling Hal through dbus in order to obtain some hardware info with the new scenario.</description>
		<content:encoded><![CDATA[<p>Actually I had already readed the link from Jaap and the ones inside the article that Juanjo Marin give me (well not <a href="http://fedoraproject.org/wiki/Features/DeviceKit" rel="nofollow">the one from Fedora</a>).</p>
<p>But probably I have to read carefully them again to get all the info I need.</p>
<p>What I really need is to know how to do some things we (Guadalinex) do by calling Hal through dbus in order to obtain some hardware info with the new scenario.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
<!-- This Quick Cache file was built for (  blogs.gnome.org/juanje/2009/06/16/help-with-the-hal-deprecation/feed/ ) in 1.43419 seconds, on Feb 11th, 2012 at 4:07 am UTC. -->
<!-- This Quick Cache file will automatically expire ( and be re-built automatically ) on Feb 11th, 2012 at 5:07 am UTC -->
