<?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:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments on: Module parameters from rc.conf in Arch</title>
	<atom:link href="http://kmandla.wordpress.com/2010/06/19/module-parameters-from-rc-conf-in-arch/feed/" rel="self" type="application/rss+xml" />
	<link>http://kmandla.wordpress.com/2010/06/19/module-parameters-from-rc-conf-in-arch/</link>
	<description>K.Mandla's blog of Linux experiences</description>
	<lastBuildDate>Mon, 11 Feb 2013 18:19:59 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
	<item>
		<title>By: More goodies for ConnochaetOS &#171; Motho ke motho ka botho</title>
		<link>http://kmandla.wordpress.com/2010/06/19/module-parameters-from-rc-conf-in-arch/#comment-46264</link>
		<dc:creator><![CDATA[More goodies for ConnochaetOS &#171; Motho ke motho ka botho]]></dc:creator>
		<pubDate>Sat, 06 Nov 2010 23:14:07 +0000</pubDate>
		<guid isPermaLink="false">http://kmandla.wordpress.com/2010/06/19/module-parameters-from-rc-conf-in-arch/#comment-46264</guid>
		<description><![CDATA[[...] &#8212; for reasons I don&#8217;t altogether understand &#8212; these Arch-based systems can get the framebuffer working with the tridentfb module, and a few [...]]]></description>
		<content:encoded><![CDATA[<p>[...] &#8212; for reasons I don&#8217;t altogether understand &#8212; these Arch-based systems can get the framebuffer working with the tridentfb module, and a few [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: K.Mandla</title>
		<link>http://kmandla.wordpress.com/2010/06/19/module-parameters-from-rc-conf-in-arch/#comment-44024</link>
		<dc:creator><![CDATA[K.Mandla]]></dc:creator>
		<pubDate>Wed, 30 Jun 2010 22:22:44 +0000</pubDate>
		<guid isPermaLink="false">http://kmandla.wordpress.com/2010/06/19/module-parameters-from-rc-conf-in-arch/#comment-44024</guid>
		<description><![CDATA[That sounds like a good project for a talented Archer. I will probably  surrender that idea to someone else though, because I don&#039;t trust my  infantile coding skills to work beyond the confines of my own home. :oops:  :) ]]></description>
		<content:encoded><![CDATA[<p>That sounds like a good project for a talented Archer. I will probably  surrender that idea to someone else though, because I don&#8217;t trust my  infantile coding skills to work beyond the confines of my own home. <img src='http://s1.wp.com/wp-includes/images/smilies/icon_redface.gif' alt=':oops:' class='wp-smiley' />   <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Devin</title>
		<link>http://kmandla.wordpress.com/2010/06/19/module-parameters-from-rc-conf-in-arch/#comment-44010</link>
		<dc:creator><![CDATA[Devin]]></dc:creator>
		<pubDate>Wed, 30 Jun 2010 16:35:56 +0000</pubDate>
		<guid isPermaLink="false">http://kmandla.wordpress.com/2010/06/19/module-parameters-from-rc-conf-in-arch/#comment-44010</guid>
		<description><![CDATA[For some reason I doubt this is intended behavior... given the quality of their wiki, Arch has very few undocumented features. :)  I still think this is a clever little hack though!

It works because /etc/rc.sysinit executes
&lt;code&gt;/sbin/modprobe $mod&lt;/code&gt;
for each entry in MODULES instead of &lt;code&gt;/sbin/modprobe &quot;$mod&quot;&lt;/code&gt;
so bash performs word splitting on the parameter expansion of $mod.

The caveat that should be mentioned is that this will &lt;em&gt;only&lt;/em&gt; apply to the &quot;Loading Modules&quot; step at boot time.  If you later remove and re-load a module with modprobe, any parameters you set here won&#039;t take.  This is probably why the /etc/modprobe.d method is recommended... it&#039;s more likely always to work the way you expect (i.e. &quot;the right way&quot;), and it&#039;s guaranteed not to break if the devs change the above-mentioned rc.sysinit line.

Cool idea though!  If you like it, you could probably even modify the initscripts to autogenerate a custom modprobe.d file from these at bootup... submit a patch, who knows?]]></description>
		<content:encoded><![CDATA[<p>For some reason I doubt this is intended behavior&#8230; given the quality of their wiki, Arch has very few undocumented features. <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />   I still think this is a clever little hack though!</p>
<p>It works because /etc/rc.sysinit executes<br />
<code>/sbin/modprobe $mod</code><br />
for each entry in MODULES instead of <code>/sbin/modprobe "$mod"</code><br />
so bash performs word splitting on the parameter expansion of $mod.</p>
<p>The caveat that should be mentioned is that this will <em>only</em> apply to the &#8220;Loading Modules&#8221; step at boot time.  If you later remove and re-load a module with modprobe, any parameters you set here won&#8217;t take.  This is probably why the /etc/modprobe.d method is recommended&#8230; it&#8217;s more likely always to work the way you expect (i.e. &#8220;the right way&#8221;), and it&#8217;s guaranteed not to break if the devs change the above-mentioned rc.sysinit line.</p>
<p>Cool idea though!  If you like it, you could probably even modify the initscripts to autogenerate a custom modprobe.d file from these at bootup&#8230; submit a patch, who knows?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Adrian</title>
		<link>http://kmandla.wordpress.com/2010/06/19/module-parameters-from-rc-conf-in-arch/#comment-43817</link>
		<dc:creator><![CDATA[Adrian]]></dc:creator>
		<pubDate>Sun, 20 Jun 2010 17:02:59 +0000</pubDate>
		<guid isPermaLink="false">http://kmandla.wordpress.com/2010/06/19/module-parameters-from-rc-conf-in-arch/#comment-43817</guid>
		<description><![CDATA[This is a good principle imho as rc.conf is Arch&#039;s &quot;control panel&quot;, but much more sane.]]></description>
		<content:encoded><![CDATA[<p>This is a good principle imho as rc.conf is Arch&#8217;s &#8220;control panel&#8221;, but much more sane.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bryan</title>
		<link>http://kmandla.wordpress.com/2010/06/19/module-parameters-from-rc-conf-in-arch/#comment-43794</link>
		<dc:creator><![CDATA[Bryan]]></dc:creator>
		<pubDate>Sat, 19 Jun 2010 14:26:48 +0000</pubDate>
		<guid isPermaLink="false">http://kmandla.wordpress.com/2010/06/19/module-parameters-from-rc-conf-in-arch/#comment-43794</guid>
		<description><![CDATA[I&#039;ve never heard that this works. From what I&#039;ve seen, most Archers suggest stuffing that into modprobe.d/{modulename}.conf, but it makes perfect sense that this should work. Good tip! Thanks :)]]></description>
		<content:encoded><![CDATA[<p>I&#8217;ve never heard that this works. From what I&#8217;ve seen, most Archers suggest stuffing that into modprobe.d/{modulename}.conf, but it makes perfect sense that this should work. Good tip! Thanks <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
</channel>
</rss>
