<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>PCとかケータイのBlog &#187; Linux</title>
	<atom:link href="http://www.0r2.info/blog/tag/linux/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.0r2.info/blog</link>
	<description>PCとかケータイ、ガジェット、プログラミングの話題を思いつくままに綴る</description>
	<lastBuildDate>Mon, 09 Aug 2010 11:49:35 +0000</lastBuildDate>
	<language>ja</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>

   <image>
    <title>PCとかケータイのBlog</title>
    <url>http://1.gravatar.com/avatar/16ff9a17ed5d94569176f6ba649df376?s=48&amp;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536</url>
    <link>http://www.0r2.info/blog</link>
   </image>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>圧縮せずにファイルサイズを小さくしてコピーする方法</title>
		<link>http://www.0r2.info/blog/2010/06/08/%e5%9c%a7%e7%b8%ae%e3%81%9b%e3%81%9a%e3%81%ab%e3%83%95%e3%82%a1%e3%82%a4%e3%83%ab%e3%82%b5%e3%82%a4%e3%82%ba%e3%82%92%e5%b0%8f%e3%81%95%e3%81%8f%e3%81%97%e3%81%a6%e3%82%b3%e3%83%94%e3%83%bc%e3%81%99/</link>
		<comments>http://www.0r2.info/blog/2010/06/08/%e5%9c%a7%e7%b8%ae%e3%81%9b%e3%81%9a%e3%81%ab%e3%83%95%e3%82%a1%e3%82%a4%e3%83%ab%e3%82%b5%e3%82%a4%e3%82%ba%e3%82%92%e5%b0%8f%e3%81%95%e3%81%8f%e3%81%97%e3%81%a6%e3%82%b3%e3%83%94%e3%83%bc%e3%81%99/#comments</comments>
		<pubDate>Tue, 08 Jun 2010 13:39:37 +0000</pubDate>
		<dc:creator>masayukig</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[tips]]></category>

		<guid isPermaLink="false">http://www.0r2.info/blog/?p=1118</guid>
		<description><![CDATA[
			
				
			
		
GNUのcpコマンドには、sparseオプションがありこれを使うと、
ファイルとしてはそのままに、実際にディスクを使用する量を削減することができる可能性があります。
使い方は、以下のよう [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.0r2.info%2Fblog%2F2010%2F06%2F08%2F%25e5%259c%25a7%25e7%25b8%25ae%25e3%2581%259b%25e3%2581%259a%25e3%2581%25ab%25e3%2583%2595%25e3%2582%25a1%25e3%2582%25a4%25e3%2583%25ab%25e3%2582%25b5%25e3%2582%25a4%25e3%2582%25ba%25e3%2582%2592%25e5%25b0%258f%25e3%2581%2595%25e3%2581%258f%25e3%2581%2597%25e3%2581%25a6%25e3%2582%25b3%25e3%2583%2594%25e3%2583%25bc%25e3%2581%2599%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.0r2.info%2Fblog%2F2010%2F06%2F08%2F%25e5%259c%25a7%25e7%25b8%25ae%25e3%2581%259b%25e3%2581%259a%25e3%2581%25ab%25e3%2583%2595%25e3%2582%25a1%25e3%2582%25a4%25e3%2583%25ab%25e3%2582%25b5%25e3%2582%25a4%25e3%2582%25ba%25e3%2582%2592%25e5%25b0%258f%25e3%2581%2595%25e3%2581%258f%25e3%2581%2597%25e3%2581%25a6%25e3%2582%25b3%25e3%2583%2594%25e3%2583%25bc%25e3%2581%2599%2F&amp;source=masayukig&amp;style=compact&amp;service=bit.ly&amp;service_api=R_b11310ea1b4c371eb65d1bc42bdc2229&amp;hashtags=Linux,tips" height="61" width="50" /><br />
			</a>
		</div>
<p>GNUのcpコマンドには、sparseオプションがありこれを使うと、<br />
ファイルとしてはそのままに、実際にディスクを使用する量を削減することができる可能性があります。</p>
<p>使い方は、以下のような感じです。</p>
<pre>
$ dd if=/dev/zero of=hoge.img bs=1024 count=102400
$ cp --sparse=always hoge.img hoge.img.sparse
$ ls -lhs
合計 101M
101M -rw-r--r-- 1 igawa igawa 100M 2010-06-08 22:16 hoge.img
   0 -rw-r--r-- 1 igawa igawa 100M 2010-06-08 22:17 hoge.img.sparse
^^^^実際にディスクを使用しているサイズ。(今回の場合、ゼロバイト！)
</pre>
<p>実際にディスクを使用しているサイズは、上記のようにlsコマンドの「s」オプションで確認できます。</p>
<p>さらに、sparse fileのまま、tarボールにすることもできます。</p>
<pre>
$ tar -Szcvf hoge.img.sparse.tar.gz hoge.img.sparse
$ ls -lhs hoge.img.sparse.tar.gz
4.0K -rw-r--r-- 1 igawa igawa 139 2010-06-08 22:32 hoge.img.sparse.tar.gz
</pre>
<p>普通にtarボールにした場合</p>
<pre>
$ tar -zcvf hoge.img.sparse.tar.gz hoge.img.sparse
hoge.img.sparse
$ ls -lhs hoge.img.sparse.tar.gz
104K -rw-r--r-- 1 igawa igawa 100K 2010-06-08 22:35 hoge.img.sparse.tar.gz
</pre>
<p>sparse fileについては、こちらが参考になると思います。</p>
<p>http://en.wikipedia.org/wiki/Sparse_file</p>
<p>要は、何もデータが無い領域は、削除して「あるかのように見せる」ということをしている様です。<br />
なので、通常のファイルの場合は削減効果はあまり期待できません。</p>
<p>削減を期待できるのは、仮想OSの仮想ディスクファイルや、メモリダンプイメージなどでしょう。</p>
]]></content:encoded>
			<wfw:commentRss>http://www.0r2.info/blog/2010/06/08/%e5%9c%a7%e7%b8%ae%e3%81%9b%e3%81%9a%e3%81%ab%e3%83%95%e3%82%a1%e3%82%a4%e3%83%ab%e3%82%b5%e3%82%a4%e3%82%ba%e3%82%92%e5%b0%8f%e3%81%95%e3%81%8f%e3%81%97%e3%81%a6%e3%82%b3%e3%83%94%e3%83%bc%e3%81%99/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>make oldconfigで全ての問い合わせ項目にEnterするスクリプト #Linux</title>
		<link>http://www.0r2.info/blog/2010/06/05/make-oldconfig%e3%81%a7%e5%85%a8%e3%81%a6%e3%81%ae%e5%95%8f%e3%81%84%e5%90%88%e3%82%8f%e3%81%9b%e9%a0%85%e7%9b%ae%e3%81%abenter%e3%81%99%e3%82%8b%e3%82%b9%e3%82%af%e3%83%aa%e3%83%97%e3%83%88/</link>
		<comments>http://www.0r2.info/blog/2010/06/05/make-oldconfig%e3%81%a7%e5%85%a8%e3%81%a6%e3%81%ae%e5%95%8f%e3%81%84%e5%90%88%e3%82%8f%e3%81%9b%e9%a0%85%e7%9b%ae%e3%81%abenter%e3%81%99%e3%82%8b%e3%82%b9%e3%82%af%e3%83%aa%e3%83%97%e3%83%88/#comments</comments>
		<pubDate>Sat, 05 Jun 2010 05:25:15 +0000</pubDate>
		<dc:creator>masayukig</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[OS]]></category>
		<category><![CDATA[開発]]></category>
		<category><![CDATA[kernel]]></category>
		<category><![CDATA[tips]]></category>

		<guid isPermaLink="false">http://www.0r2.info/blog/?p=1114</guid>
		<description><![CDATA[
			
				
			
		
Linux kernelのmakeのターゲットでありそうな気もするんですが、見つからなかったので。
$ cat make_oldconfig_auto.sh 

#!/usr/bin/e [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.0r2.info%2Fblog%2F2010%2F06%2F05%2Fmake-oldconfig%25e3%2581%25a7%25e5%2585%25a8%25e3%2581%25a6%25e3%2581%25ae%25e5%2595%258f%25e3%2581%2584%25e5%2590%2588%25e3%2582%258f%25e3%2581%259b%25e9%25a0%2585%25e7%259b%25ae%25e3%2581%25abenter%25e3%2581%2599%25e3%2582%258b%25e3%2582%25b9%25e3%2582%25af%25e3%2583%25aa%25e3%2583%2597%25e3%2583%2588%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.0r2.info%2Fblog%2F2010%2F06%2F05%2Fmake-oldconfig%25e3%2581%25a7%25e5%2585%25a8%25e3%2581%25a6%25e3%2581%25ae%25e5%2595%258f%25e3%2581%2584%25e5%2590%2588%25e3%2582%258f%25e3%2581%259b%25e9%25a0%2585%25e7%259b%25ae%25e3%2581%25abenter%25e3%2581%2599%25e3%2582%258b%25e3%2582%25b9%25e3%2582%25af%25e3%2583%25aa%25e3%2583%2597%25e3%2583%2588%2F&amp;source=masayukig&amp;style=compact&amp;service=bit.ly&amp;service_api=R_b11310ea1b4c371eb65d1bc42bdc2229&amp;hashtags=kernel,Linux,tips" height="61" width="50" /><br />
			</a>
		</div>
<p>Linux kernelのmakeのターゲットでありそうな気もするんですが、見つからなかったので。</p>
<p>$ cat make_oldconfig_auto.sh </p>
<pre name="code" class="ruby">
#!/usr/bin/env expect

set timeout 10
spawn make oldconfig
while {1} {
        expect {
                "] (NEW)" { send "\n" }
                "# configuration written to .config" {break}
        }
}

interact
</pre>
<p><span id="more-1114"></span><br />
見てわかるとおり、expectを使って、&#8221;] (NEW)&#8221;というのが出てきたら、Enter入力。<br />
 &#8220;# configuration written to .config&#8221;が出てきたらおしまい。</p>
<p>というスクリプトです。</p>
]]></content:encoded>
			<wfw:commentRss>http://www.0r2.info/blog/2010/06/05/make-oldconfig%e3%81%a7%e5%85%a8%e3%81%a6%e3%81%ae%e5%95%8f%e3%81%84%e5%90%88%e3%82%8f%e3%81%9b%e9%a0%85%e7%9b%ae%e3%81%abenter%e3%81%99%e3%82%8b%e3%82%b9%e3%82%af%e3%83%aa%e3%83%97%e3%83%88/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Linux kernel makeの結果はTwitterにつぶやくことにした</title>
		<link>http://www.0r2.info/blog/2010/06/02/linux-kernel-make%e3%81%ae%e7%b5%90%e6%9e%9c%e3%81%aftwitter%e3%81%ab%e3%81%a4%e3%81%b6%e3%82%84%e3%81%8f%e3%81%93%e3%81%a8%e3%81%ab%e3%81%97%e3%81%9f/</link>
		<comments>http://www.0r2.info/blog/2010/06/02/linux-kernel-make%e3%81%ae%e7%b5%90%e6%9e%9c%e3%81%aftwitter%e3%81%ab%e3%81%a4%e3%81%b6%e3%82%84%e3%81%8f%e3%81%93%e3%81%a8%e3%81%ab%e3%81%97%e3%81%9f/#comments</comments>
		<pubDate>Wed, 02 Jun 2010 13:42:58 +0000</pubDate>
		<dc:creator>masayukig</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[このサイトのこと]]></category>
		<category><![CDATA[kernel]]></category>
		<category><![CDATA[このサイト]]></category>
		<category><![CDATA[このサイトの事]]></category>

		<guid isPermaLink="false">http://www.0r2.info/blog/?p=1105</guid>
		<description><![CDATA[
			
				
			
		
Linux kernel makeの結果はTwitterにつぶやくことにした。
ほとんどのBlog記事が、そればかりになりそうなのでw
]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.0r2.info%2Fblog%2F2010%2F06%2F02%2Flinux-kernel-make%25e3%2581%25ae%25e7%25b5%2590%25e6%259e%259c%25e3%2581%25aftwitter%25e3%2581%25ab%25e3%2581%25a4%25e3%2581%25b6%25e3%2582%2584%25e3%2581%258f%25e3%2581%2593%25e3%2581%25a8%25e3%2581%25ab%25e3%2581%2597%25e3%2581%259f%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.0r2.info%2Fblog%2F2010%2F06%2F02%2Flinux-kernel-make%25e3%2581%25ae%25e7%25b5%2590%25e6%259e%259c%25e3%2581%25aftwitter%25e3%2581%25ab%25e3%2581%25a4%25e3%2581%25b6%25e3%2582%2584%25e3%2581%258f%25e3%2581%2593%25e3%2581%25a8%25e3%2581%25ab%25e3%2581%2597%25e3%2581%259f%2F&amp;source=masayukig&amp;style=compact&amp;service=bit.ly&amp;service_api=R_b11310ea1b4c371eb65d1bc42bdc2229&amp;hashtags=kernel,Linux,%E3%81%93%E3%81%AE%E3%82%B5%E3%82%A4%E3%83%88,%E3%81%93%E3%81%AE%E3%82%B5%E3%82%A4%E3%83%88%E3%81%AE%E4%BA%8B" height="61" width="50" /><br />
			</a>
		</div>
<p>Linux kernel makeの結果はTwitterにつぶやくことにした。</p>
<p>ほとんどのBlog記事が、そればかりになりそうなのでw</p>
]]></content:encoded>
			<wfw:commentRss>http://www.0r2.info/blog/2010/06/02/linux-kernel-make%e3%81%ae%e7%b5%90%e6%9e%9c%e3%81%aftwitter%e3%81%ab%e3%81%a4%e3%81%b6%e3%82%84%e3%81%8f%e3%81%93%e3%81%a8%e3%81%ab%e3%81%97%e3%81%9f/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Linux kernel(v2.6.35-rc1-aef4b9aa) build was SUCCESSFUL! #Linux</title>
		<link>http://www.0r2.info/blog/2010/06/02/linux-kernelv2-6-35-rc1-aef4b9aa-build-was-successful-linux/</link>
		<comments>http://www.0r2.info/blog/2010/06/02/linux-kernelv2-6-35-rc1-aef4b9aa-build-was-successful-linux/#comments</comments>
		<pubDate>Tue, 01 Jun 2010 22:16:48 +0000</pubDate>
		<dc:creator>masayukig</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[kernel]]></category>

		<guid isPermaLink="false">http://www.0r2.info/blog/?p=1104</guid>
		<description><![CDATA[kernel make stderr outputs: crypto/anubis.c: In function ‘anubis_crypt’: crypto/anubis.c:581: 警告: ‘inter’ is used uninitialized in this function drivers/acpi/acpi_pad.c: In function ‘acpi_pad_handle_notify’: drivers/acpi/acpi_pad.c:420: 警告: ‘num_cpus’ may be used uninitialized in this function fs/minix/dir.c: In function ‘dir_get_page’: fs/minix/dir.c:79: 警告: label ‘fail’ defined but not used drivers/isdn/hardware/mISDN/hfcpci.c: In function ‘hfcpci_softirq’: drivers/isdn/hardware/mISDN/hfcpci.c:2320: 警告: ignoring return value of ‘driver_for_each_device’, declared [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.0r2.info%2Fblog%2F2010%2F06%2F02%2Flinux-kernelv2-6-35-rc1-aef4b9aa-build-was-successful-linux%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.0r2.info%2Fblog%2F2010%2F06%2F02%2Flinux-kernelv2-6-35-rc1-aef4b9aa-build-was-successful-linux%2F&amp;source=masayukig&amp;style=compact&amp;service=bit.ly&amp;service_api=R_b11310ea1b4c371eb65d1bc42bdc2229&amp;hashtags=kernel,Linux" height="61" width="50" /><br />
			</a>
		</div>
<p>kernel make stderr outputs:</p>
<p><span id="more-1104"></span></p>
<pre>
crypto/anubis.c: In function ‘anubis_crypt’:
crypto/anubis.c:581: 警告: ‘inter’ is used uninitialized in this function
drivers/acpi/acpi_pad.c: In function ‘acpi_pad_handle_notify’:
drivers/acpi/acpi_pad.c:420: 警告: ‘num_cpus’ may be used uninitialized in this function
fs/minix/dir.c: In function ‘dir_get_page’:
fs/minix/dir.c:79: 警告: label ‘fail’ defined but not used
drivers/isdn/hardware/mISDN/hfcpci.c: In function ‘hfcpci_softirq’:
drivers/isdn/hardware/mISDN/hfcpci.c:2320: 警告: ignoring return value of ‘driver_for_each_device’, declared with attribute warn_unused_result
In file included from drivers/message/i2o/config-osm.c:40:
drivers/message/i2o/i2o_config.c: In function ‘i2o_cfg_passthru’:
drivers/message/i2o/i2o_config.c:878: 警告: 異なるサイズの整数からポインタにキャストされました
In file included from drivers/message/i2o/config-osm.c:40:
drivers/message/i2o/i2o_config.c:933: 警告: 異なるサイズの整数からポインタにキャストされました
drivers/misc/enclosure.c: In function ‘enclosure_component_register’:
drivers/misc/enclosure.c:289: 警告: ignoring return value of ‘ERR_PTR’, declared with attribute warn_unused_result
drivers/pci/pcie/aer/aerdrv_core.c: In function ‘aer_isr’:
drivers/pci/pcie/aer/aerdrv_core.c:756: 警告: ‘e_src.id’ may be used uninitialized in this function
drivers/pci/pcie/aer/aerdrv_core.c:756: 警告: ‘e_src.status’ may be used uninitialized in this function
drivers/xen/events.c:135: 警告: ‘mk_pirq_info’ defined but not used
drivers/xen/events.c:181: 警告: ‘gsi_from_irq’ defined but not used
drivers/xen/events.c:191: 警告: ‘vector_from_irq’ defined but not used
drivers/video/via/via-gpio.c: In function ‘viafb_gpio_probe’:
drivers/video/via/via-gpio.c:216: 警告: assignment from incompatible pointer type
WARNING: modpost: Found 43 section mismatch(es).
To see full details build your kernel with:
'make CONFIG_DEBUG_SECTION_MISMATCH=y'
/home/igawa/src/linux-2.6/usr/include/drm/drm_mode.h:84: found __[us]{8,16,32,64} type without #include
<linux/types.h>
/home/igawa/src/linux-2.6/usr/include/drm/i915_drm.h:119: found __[us]{8,16,32,64} type without #include
<linux/types.h>
/home/igawa/src/linux-2.6/usr/include/drm/mga_drm.h:260: found __[us]{8,16,32,64} type without #include
<linux/types.h>
/home/igawa/src/linux-2.6/usr/include/drm/radeon_drm.h:758: found __[us]{8,16,32,64} type without #include
<linux/types.h>
/home/igawa/src/linux-2.6/usr/include/drm/via_drm.h:117: found __[us]{8,16,32,64} type without #include
<linux/types.h>
/home/igawa/src/linux-2.6/usr/include/linux/virtio_9p.h:15: found __[us]{8,16,32,64} type without #include
<linux/types.h>
Root device is (8, 1)
Setup is 13580 bytes (padded to 13824 bytes).
System is 3577 kB
CRC 55ea96c
WARNING: modpost: Found 5 section mismatch(es).
To see full details build your kernel with:
'make CONFIG_DEBUG_SECTION_MISMATCH=y'

real	14m8.840s
user	44m36.700s
sys	6m39.545s
ERROR: modinfo: could not find module k10temp
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.0r2.info/blog/2010/06/02/linux-kernelv2-6-35-rc1-aef4b9aa-build-was-successful-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Linux kernel(v2.6.35-rc1-0a6531eb) build was SUCCESSFUL! #Linux</title>
		<link>http://www.0r2.info/blog/2010/06/02/linux-kernelv2-6-35-rc1-0a6531eb-build-was-successful-linux/</link>
		<comments>http://www.0r2.info/blog/2010/06/02/linux-kernelv2-6-35-rc1-0a6531eb-build-was-successful-linux/#comments</comments>
		<pubDate>Tue, 01 Jun 2010 19:16:47 +0000</pubDate>
		<dc:creator>masayukig</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[kernel]]></category>

		<guid isPermaLink="false">http://www.0r2.info/blog/?p=1103</guid>
		<description><![CDATA[kernel make stderr outputs: crypto/anubis.c: In function ‘anubis_crypt’: crypto/anubis.c:581: 警告: ‘inter’ is used uninitialized in this function drivers/acpi/acpi_pad.c: In function ‘acpi_pad_handle_notify’: drivers/acpi/acpi_pad.c:420: 警告: ‘num_cpus’ may be used uninitialized in this function fs/minix/dir.c: In function ‘dir_get_page’: fs/minix/dir.c:79: 警告: label ‘fail’ defined but not used drivers/isdn/hardware/mISDN/hfcpci.c: In function ‘hfcpci_softirq’: drivers/isdn/hardware/mISDN/hfcpci.c:2320: 警告: ignoring return value of ‘driver_for_each_device’, declared [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.0r2.info%2Fblog%2F2010%2F06%2F02%2Flinux-kernelv2-6-35-rc1-0a6531eb-build-was-successful-linux%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.0r2.info%2Fblog%2F2010%2F06%2F02%2Flinux-kernelv2-6-35-rc1-0a6531eb-build-was-successful-linux%2F&amp;source=masayukig&amp;style=compact&amp;service=bit.ly&amp;service_api=R_b11310ea1b4c371eb65d1bc42bdc2229&amp;hashtags=kernel,Linux" height="61" width="50" /><br />
			</a>
		</div>
<p>kernel make stderr outputs:</p>
<p><span id="more-1103"></span></p>
<pre>
crypto/anubis.c: In function ‘anubis_crypt’:
crypto/anubis.c:581: 警告: ‘inter’ is used uninitialized in this function
drivers/acpi/acpi_pad.c: In function ‘acpi_pad_handle_notify’:
drivers/acpi/acpi_pad.c:420: 警告: ‘num_cpus’ may be used uninitialized in this function
fs/minix/dir.c: In function ‘dir_get_page’:
fs/minix/dir.c:79: 警告: label ‘fail’ defined but not used
drivers/isdn/hardware/mISDN/hfcpci.c: In function ‘hfcpci_softirq’:
drivers/isdn/hardware/mISDN/hfcpci.c:2320: 警告: ignoring return value of ‘driver_for_each_device’, declared with attribute warn_unused_result
In file included from drivers/message/i2o/config-osm.c:40:
drivers/message/i2o/i2o_config.c: In function ‘i2o_cfg_passthru’:
drivers/message/i2o/i2o_config.c:878: 警告: 異なるサイズの整数からポインタにキャストされました
In file included from drivers/message/i2o/config-osm.c:40:
drivers/message/i2o/i2o_config.c:933: 警告: 異なるサイズの整数からポインタにキャストされました
drivers/misc/enclosure.c: In function ‘enclosure_component_register’:
drivers/misc/enclosure.c:289: 警告: ignoring return value of ‘ERR_PTR’, declared with attribute warn_unused_result
drivers/pci/pcie/aer/aerdrv_core.c: In function ‘aer_isr’:
drivers/pci/pcie/aer/aerdrv_core.c:756: 警告: ‘e_src.id’ may be used uninitialized in this function
drivers/pci/pcie/aer/aerdrv_core.c:756: 警告: ‘e_src.status’ may be used uninitialized in this function
drivers/xen/events.c:135: 警告: ‘mk_pirq_info’ defined but not used
drivers/xen/events.c:181: 警告: ‘gsi_from_irq’ defined but not used
drivers/xen/events.c:191: 警告: ‘vector_from_irq’ defined but not used
drivers/video/via/via-gpio.c: In function ‘viafb_gpio_probe’:
drivers/video/via/via-gpio.c:216: 警告: assignment from incompatible pointer type
WARNING: modpost: Found 43 section mismatch(es).
To see full details build your kernel with:
'make CONFIG_DEBUG_SECTION_MISMATCH=y'
/home/igawa/src/linux-2.6/usr/include/drm/drm_mode.h:84: found __[us]{8,16,32,64} type without #include
<linux/types.h>
/home/igawa/src/linux-2.6/usr/include/drm/i915_drm.h:119: found __[us]{8,16,32,64} type without #include
<linux/types.h>
/home/igawa/src/linux-2.6/usr/include/drm/mga_drm.h:260: found __[us]{8,16,32,64} type without #include
<linux/types.h>
/home/igawa/src/linux-2.6/usr/include/drm/radeon_drm.h:758: found __[us]{8,16,32,64} type without #include
<linux/types.h>
/home/igawa/src/linux-2.6/usr/include/drm/via_drm.h:117: found __[us]{8,16,32,64} type without #include
<linux/types.h>
/home/igawa/src/linux-2.6/usr/include/linux/virtio_9p.h:15: found __[us]{8,16,32,64} type without #include
<linux/types.h>
Root device is (8, 1)
Setup is 13580 bytes (padded to 13824 bytes).
System is 3577 kB
CRC 9ed9bd2b
WARNING: modpost: Found 5 section mismatch(es).
To see full details build your kernel with:
'make CONFIG_DEBUG_SECTION_MISMATCH=y'

real	14m10.199s
user	44m34.740s
sys	6m39.784s
ERROR: modinfo: could not find module k10temp
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.0r2.info/blog/2010/06/02/linux-kernelv2-6-35-rc1-0a6531eb-build-was-successful-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Linux kernel(v2.6.35-rc1-037776fc) build was SUCCESSFUL! #Linux</title>
		<link>http://www.0r2.info/blog/2010/06/02/linux-kernelv2-6-35-rc1-037776fc-build-was-successful-linux/</link>
		<comments>http://www.0r2.info/blog/2010/06/02/linux-kernelv2-6-35-rc1-037776fc-build-was-successful-linux/#comments</comments>
		<pubDate>Tue, 01 Jun 2010 18:17:11 +0000</pubDate>
		<dc:creator>masayukig</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[kernel]]></category>

		<guid isPermaLink="false">http://www.0r2.info/blog/?p=1102</guid>
		<description><![CDATA[kernel make stderr outputs: crypto/anubis.c: In function ‘anubis_crypt’: crypto/anubis.c:581: 警告: ‘inter’ is used uninitialized in this function drivers/acpi/acpi_pad.c: In function ‘acpi_pad_handle_notify’: drivers/acpi/acpi_pad.c:420: 警告: ‘num_cpus’ may be used uninitialized in this function fs/minix/dir.c: In function ‘dir_get_page’: fs/minix/dir.c:79: 警告: label ‘fail’ defined but not used drivers/isdn/hardware/mISDN/hfcpci.c: In function ‘hfcpci_softirq’: drivers/isdn/hardware/mISDN/hfcpci.c:2320: 警告: ignoring return value of ‘driver_for_each_device’, declared [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.0r2.info%2Fblog%2F2010%2F06%2F02%2Flinux-kernelv2-6-35-rc1-037776fc-build-was-successful-linux%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.0r2.info%2Fblog%2F2010%2F06%2F02%2Flinux-kernelv2-6-35-rc1-037776fc-build-was-successful-linux%2F&amp;source=masayukig&amp;style=compact&amp;service=bit.ly&amp;service_api=R_b11310ea1b4c371eb65d1bc42bdc2229&amp;hashtags=kernel,Linux" height="61" width="50" /><br />
			</a>
		</div>
<p>kernel make stderr outputs:</p>
<p><span id="more-1102"></span></p>
<pre>
crypto/anubis.c: In function ‘anubis_crypt’:
crypto/anubis.c:581: 警告: ‘inter’ is used uninitialized in this function
drivers/acpi/acpi_pad.c: In function ‘acpi_pad_handle_notify’:
drivers/acpi/acpi_pad.c:420: 警告: ‘num_cpus’ may be used uninitialized in this function
fs/minix/dir.c: In function ‘dir_get_page’:
fs/minix/dir.c:79: 警告: label ‘fail’ defined but not used
drivers/isdn/hardware/mISDN/hfcpci.c: In function ‘hfcpci_softirq’:
drivers/isdn/hardware/mISDN/hfcpci.c:2320: 警告: ignoring return value of ‘driver_for_each_device’, declared with attribute warn_unused_result
In file included from drivers/message/i2o/config-osm.c:40:
drivers/message/i2o/i2o_config.c: In function ‘i2o_cfg_passthru’:
drivers/message/i2o/i2o_config.c:878: 警告: 異なるサイズの整数からポインタにキャストされました
In file included from drivers/message/i2o/config-osm.c:40:
drivers/message/i2o/i2o_config.c:933: 警告: 異なるサイズの整数からポインタにキャストされました
drivers/misc/enclosure.c: In function ‘enclosure_component_register’:
drivers/misc/enclosure.c:289: 警告: ignoring return value of ‘ERR_PTR’, declared with attribute warn_unused_result
drivers/pci/pcie/aer/aerdrv_core.c: In function ‘aer_isr’:
drivers/pci/pcie/aer/aerdrv_core.c:756: 警告: ‘e_src.id’ may be used uninitialized in this function
drivers/pci/pcie/aer/aerdrv_core.c:756: 警告: ‘e_src.status’ may be used uninitialized in this function
drivers/xen/events.c:135: 警告: ‘mk_pirq_info’ defined but not used
drivers/xen/events.c:181: 警告: ‘gsi_from_irq’ defined but not used
drivers/xen/events.c:191: 警告: ‘vector_from_irq’ defined but not used
drivers/video/via/via-gpio.c: In function ‘viafb_gpio_probe’:
drivers/video/via/via-gpio.c:216: 警告: assignment from incompatible pointer type
WARNING: modpost: Found 43 section mismatch(es).
To see full details build your kernel with:
'make CONFIG_DEBUG_SECTION_MISMATCH=y'
/home/igawa/src/linux-2.6/usr/include/drm/drm_mode.h:84: found __[us]{8,16,32,64} type without #include
<linux/types.h>
/home/igawa/src/linux-2.6/usr/include/drm/i915_drm.h:119: found __[us]{8,16,32,64} type without #include
<linux/types.h>
/home/igawa/src/linux-2.6/usr/include/drm/mga_drm.h:260: found __[us]{8,16,32,64} type without #include
<linux/types.h>
/home/igawa/src/linux-2.6/usr/include/drm/radeon_drm.h:758: found __[us]{8,16,32,64} type without #include
<linux/types.h>
/home/igawa/src/linux-2.6/usr/include/drm/via_drm.h:117: found __[us]{8,16,32,64} type without #include
<linux/types.h>
/home/igawa/src/linux-2.6/usr/include/linux/virtio_9p.h:15: found __[us]{8,16,32,64} type without #include
<linux/types.h>
Root device is (8, 1)
Setup is 13580 bytes (padded to 13824 bytes).
System is 3577 kB
CRC fd82830b
WARNING: modpost: Found 5 section mismatch(es).
To see full details build your kernel with:
'make CONFIG_DEBUG_SECTION_MISMATCH=y'

real	14m8.479s
user	44m35.258s
sys	6m40.742s
ERROR: modinfo: could not find module k10temp
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.0r2.info/blog/2010/06/02/linux-kernelv2-6-35-rc1-037776fc-build-was-successful-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Linux kernel(v2.6.35-rc1-67a3e12b) build was SUCCESSFUL! #Linux</title>
		<link>http://www.0r2.info/blog/2010/05/31/linux-kernelv2-6-35-rc1-67a3e12b-build-was-successful-linux/</link>
		<comments>http://www.0r2.info/blog/2010/05/31/linux-kernelv2-6-35-rc1-67a3e12b-build-was-successful-linux/#comments</comments>
		<pubDate>Mon, 31 May 2010 13:48:01 +0000</pubDate>
		<dc:creator>masayukig</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[kernel]]></category>

		<guid isPermaLink="false">http://www.0r2.info/blog/?p=1093</guid>
		<description><![CDATA[kernel make stderr outputs: crypto/anubis.c: In function ‘anubis_crypt’: crypto/anubis.c:581: 警告: ‘inter’ is used uninitialized in this function drivers/acpi/acpi_pad.c: In function ‘acpi_pad_handle_notify’: drivers/acpi/acpi_pad.c:420: 警告: ‘num_cpus’ may be used uninitialized in this function fs/minix/dir.c: In function ‘dir_get_page’: fs/minix/dir.c:79: 警告: label ‘fail’ defined but not used drivers/isdn/hardware/mISDN/hfcpci.c: In function ‘hfcpci_softirq’: drivers/isdn/hardware/mISDN/hfcpci.c:2320: 警告: ignoring return value of ‘driver_for_each_device’, declared [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.0r2.info%2Fblog%2F2010%2F05%2F31%2Flinux-kernelv2-6-35-rc1-67a3e12b-build-was-successful-linux%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.0r2.info%2Fblog%2F2010%2F05%2F31%2Flinux-kernelv2-6-35-rc1-67a3e12b-build-was-successful-linux%2F&amp;source=masayukig&amp;style=compact&amp;service=bit.ly&amp;service_api=R_b11310ea1b4c371eb65d1bc42bdc2229&amp;hashtags=kernel,Linux" height="61" width="50" /><br />
			</a>
		</div>
<p>kernel make stderr outputs:</p>
<p><span id="more-1093"></span></p>
<pre>
crypto/anubis.c: In function ‘anubis_crypt’:
crypto/anubis.c:581: 警告: ‘inter’ is used uninitialized in this function
drivers/acpi/acpi_pad.c: In function ‘acpi_pad_handle_notify’:
drivers/acpi/acpi_pad.c:420: 警告: ‘num_cpus’ may be used uninitialized in this function
fs/minix/dir.c: In function ‘dir_get_page’:
fs/minix/dir.c:79: 警告: label ‘fail’ defined but not used
drivers/isdn/hardware/mISDN/hfcpci.c: In function ‘hfcpci_softirq’:
drivers/isdn/hardware/mISDN/hfcpci.c:2320: 警告: ignoring return value of ‘driver_for_each_device’, declared with attribute warn_unused_result
In file included from drivers/message/i2o/config-osm.c:40:
drivers/message/i2o/i2o_config.c: In function ‘i2o_cfg_passthru’:
drivers/message/i2o/i2o_config.c:878: 警告: 異なるサイズの整数からポインタにキャストされました
In file included from drivers/message/i2o/config-osm.c:40:
drivers/message/i2o/i2o_config.c:933: 警告: 異なるサイズの整数からポインタにキャストされました
drivers/misc/enclosure.c: In function ‘enclosure_component_register’:
drivers/misc/enclosure.c:289: 警告: ignoring return value of ‘ERR_PTR’, declared with attribute warn_unused_result
drivers/pci/pcie/aer/aerdrv_core.c: In function ‘aer_isr’:
drivers/pci/pcie/aer/aerdrv_core.c:756: 警告: ‘e_src.id’ may be used uninitialized in this function
drivers/pci/pcie/aer/aerdrv_core.c:756: 警告: ‘e_src.status’ may be used uninitialized in this function
drivers/xen/events.c:135: 警告: ‘mk_pirq_info’ defined but not used
drivers/xen/events.c:181: 警告: ‘gsi_from_irq’ defined but not used
drivers/xen/events.c:191: 警告: ‘vector_from_irq’ defined but not used
drivers/video/via/via-gpio.c: In function ‘viafb_gpio_probe’:
drivers/video/via/via-gpio.c:216: 警告: assignment from incompatible pointer type
WARNING: modpost: Found 43 section mismatch(es).
To see full details build your kernel with:
'make CONFIG_DEBUG_SECTION_MISMATCH=y'
/home/igawa/src/linux-2.6/usr/include/drm/drm_mode.h:84: found __[us]{8,16,32,64} type without #include
<linux/types.h>
/home/igawa/src/linux-2.6/usr/include/drm/i915_drm.h:119: found __[us]{8,16,32,64} type without #include
<linux/types.h>
/home/igawa/src/linux-2.6/usr/include/drm/mga_drm.h:260: found __[us]{8,16,32,64} type without #include
<linux/types.h>
/home/igawa/src/linux-2.6/usr/include/drm/radeon_drm.h:758: found __[us]{8,16,32,64} type without #include
<linux/types.h>
/home/igawa/src/linux-2.6/usr/include/drm/via_drm.h:117: found __[us]{8,16,32,64} type without #include
<linux/types.h>
/home/igawa/src/linux-2.6/usr/include/linux/virtio_9p.h:15: found __[us]{8,16,32,64} type without #include
<linux/types.h>
Root device is (8, 1)
Setup is 13564 bytes (padded to 13824 bytes).
System is 3577 kB
CRC f91db09a
WARNING: modpost: Found 1 section mismatch(es).
To see full details build your kernel with:
'make CONFIG_DEBUG_SECTION_MISMATCH=y'

real	14m9.572s
user	44m38.599s
sys	6m39.779s
ERROR: modinfo: could not find module k10temp
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.0r2.info/blog/2010/05/31/linux-kernelv2-6-35-rc1-67a3e12b-build-was-successful-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Linux kernel(v2.6.34-9dda696f) build was SUCCESSFUL! #Linux</title>
		<link>http://www.0r2.info/blog/2010/05/29/linux-kernelv2-6-34-9dda696f-build-was-successful-linux/</link>
		<comments>http://www.0r2.info/blog/2010/05/29/linux-kernelv2-6-34-9dda696f-build-was-successful-linux/#comments</comments>
		<pubDate>Fri, 28 May 2010 15:46:17 +0000</pubDate>
		<dc:creator>masayukig</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[kernel]]></category>

		<guid isPermaLink="false">http://www.0r2.info/blog/2010/05/29/linux-kernelv2-6-34-9dda696f-build-was-successful-linux/</guid>
		<description><![CDATA[kernel make stderr outputs: crypto/anubis.c: In function ‘anubis_crypt’: crypto/anubis.c:581: 警告: ‘inter’ is used uninitialized in this function drivers/acpi/acpi_pad.c: In function ‘acpi_pad_handle_notify’: drivers/acpi/acpi_pad.c:420: 警告: ‘num_cpus’ may be used uninitialized in this function drivers/isdn/hardware/mISDN/hfcpci.c: In function ‘hfcpci_softirq’: drivers/isdn/hardware/mISDN/hfcpci.c:2320: 警告: ignoring return value of ‘driver_for_each_device’, declared with attribute warn_unused_result In file included from drivers/message/i2o/config-osm.c:40: drivers/message/i2o/i2o_config.c: In function ‘i2o_cfg_passthru’: [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.0r2.info%2Fblog%2F2010%2F05%2F29%2Flinux-kernelv2-6-34-9dda696f-build-was-successful-linux%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.0r2.info%2Fblog%2F2010%2F05%2F29%2Flinux-kernelv2-6-34-9dda696f-build-was-successful-linux%2F&amp;source=masayukig&amp;style=compact&amp;service=bit.ly&amp;service_api=R_b11310ea1b4c371eb65d1bc42bdc2229&amp;hashtags=kernel,Linux" height="61" width="50" /><br />
			</a>
		</div>
<p>kernel make stderr outputs:</p>
<p><span id="more-1091"></span></p>
<pre>
crypto/anubis.c: In function ‘anubis_crypt’:
crypto/anubis.c:581: 警告: ‘inter’ is used uninitialized in this function
drivers/acpi/acpi_pad.c: In function ‘acpi_pad_handle_notify’:
drivers/acpi/acpi_pad.c:420: 警告: ‘num_cpus’ may be used uninitialized in this function
drivers/isdn/hardware/mISDN/hfcpci.c: In function ‘hfcpci_softirq’:
drivers/isdn/hardware/mISDN/hfcpci.c:2320: 警告: ignoring return value of ‘driver_for_each_device’, declared with attribute warn_unused_result
In file included from drivers/message/i2o/config-osm.c:40:
drivers/message/i2o/i2o_config.c: In function ‘i2o_cfg_passthru’:
drivers/message/i2o/i2o_config.c:878: 警告: 異なるサイズの整数からポインタにキャストされました
In file included from drivers/message/i2o/config-osm.c:40:
drivers/message/i2o/i2o_config.c:933: 警告: 異なるサイズの整数からポインタにキャストされました
drivers/misc/enclosure.c: In function ‘enclosure_component_register’:
drivers/misc/enclosure.c:289: 警告: ignoring return value of ‘ERR_PTR’, declared with attribute warn_unused_result
drivers/pci/pcie/aer/aerdrv_core.c: In function ‘aer_isr’:
drivers/pci/pcie/aer/aerdrv_core.c:756: 警告: ‘e_src.id’ may be used uninitialized in this function
drivers/pci/pcie/aer/aerdrv_core.c:756: 警告: ‘e_src.status’ may be used uninitialized in this function
drivers/xen/events.c:135: 警告: ‘mk_pirq_info’ defined but not used
drivers/xen/events.c:181: 警告: ‘gsi_from_irq’ defined but not used
drivers/xen/events.c:191: 警告: ‘vector_from_irq’ defined but not used
drivers/video/via/via-gpio.c: In function ‘viafb_gpio_probe’:
drivers/video/via/via-gpio.c:216: 警告: assignment from incompatible pointer type
WARNING: modpost: Found 43 section mismatch(es).
To see full details build your kernel with:
'make CONFIG_DEBUG_SECTION_MISMATCH=y'
/home/igawa/src/linux-2.6/usr/include/drm/drm_mode.h:84: found __[us]{8,16,32,64} type without #include
<linux/types.h>
/home/igawa/src/linux-2.6/usr/include/drm/i915_drm.h:119: found __[us]{8,16,32,64} type without #include
<linux/types.h>
/home/igawa/src/linux-2.6/usr/include/drm/mga_drm.h:260: found __[us]{8,16,32,64} type without #include
<linux/types.h>
/home/igawa/src/linux-2.6/usr/include/drm/radeon_drm.h:758: found __[us]{8,16,32,64} type without #include
<linux/types.h>
/home/igawa/src/linux-2.6/usr/include/drm/via_drm.h:117: found __[us]{8,16,32,64} type without #include
<linux/types.h>
/home/igawa/src/linux-2.6/usr/include/linux/virtio_9p.h:15: found __[us]{8,16,32,64} type without #include
<linux/types.h>
Root device is (8, 1)
Setup is 13580 bytes (padded to 13824 bytes).
System is 3575 kB
CRC dea2ebd4
WARNING: modpost: Found 2 section mismatch(es).
To see full details build your kernel with:
'make CONFIG_DEBUG_SECTION_MISMATCH=y'

real	14m35.363s
user	45m5.107s
sys	7m2.156s
ERROR: modinfo: could not find module k10temp
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.0r2.info/blog/2010/05/29/linux-kernelv2-6-34-9dda696f-build-was-successful-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Linux kernel(v2.6.34-9dda696f) build was FAILED! #Linux</title>
		<link>http://www.0r2.info/blog/2010/05/28/linux-kernelv2-6-34-9dda696f-build-was-failed-linux/</link>
		<comments>http://www.0r2.info/blog/2010/05/28/linux-kernelv2-6-34-9dda696f-build-was-failed-linux/#comments</comments>
		<pubDate>Fri, 28 May 2010 02:10:30 +0000</pubDate>
		<dc:creator>masayukig</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[kernel]]></category>

		<guid isPermaLink="false">http://www.0r2.info/blog/2010/05/28/linux-kernelv2-6-34-9dda696f-build-was-failed-linux/</guid>
		<description><![CDATA[kernel make stderr outputs: make[1]: *** [silentoldconfig] Error 1 make: *** [silentoldconfig] Error 2]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.0r2.info%2Fblog%2F2010%2F05%2F28%2Flinux-kernelv2-6-34-9dda696f-build-was-failed-linux%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.0r2.info%2Fblog%2F2010%2F05%2F28%2Flinux-kernelv2-6-34-9dda696f-build-was-failed-linux%2F&amp;source=masayukig&amp;style=compact&amp;service=bit.ly&amp;service_api=R_b11310ea1b4c371eb65d1bc42bdc2229&amp;hashtags=kernel,Linux" height="61" width="50" /><br />
			</a>
		</div>
<p>kernel make stderr outputs:</p>
<p><span id="more-1088"></span></p>
<pre>
make[1]: *** [silentoldconfig] Error 1
make: *** [silentoldconfig] Error 2
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.0r2.info/blog/2010/05/28/linux-kernelv2-6-34-9dda696f-build-was-failed-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Linux kernel(v2.6.34-c5617b20) build was FAILED! #Linux</title>
		<link>http://www.0r2.info/blog/2010/05/28/linux-kernelv2-6-34-c5617b20-build-was-failed-linux/</link>
		<comments>http://www.0r2.info/blog/2010/05/28/linux-kernelv2-6-34-c5617b20-build-was-failed-linux/#comments</comments>
		<pubDate>Thu, 27 May 2010 23:10:43 +0000</pubDate>
		<dc:creator>masayukig</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[kernel]]></category>

		<guid isPermaLink="false">http://www.0r2.info/blog/2010/05/28/linux-kernelv2-6-34-c5617b20-build-was-failed-linux/</guid>
		<description><![CDATA[kernel make stderr outputs: make[1]: *** [silentoldconfig] Error 1 make: *** [silentoldconfig] Error 2]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.0r2.info%2Fblog%2F2010%2F05%2F28%2Flinux-kernelv2-6-34-c5617b20-build-was-failed-linux%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.0r2.info%2Fblog%2F2010%2F05%2F28%2Flinux-kernelv2-6-34-c5617b20-build-was-failed-linux%2F&amp;source=masayukig&amp;style=compact&amp;service=bit.ly&amp;service_api=R_b11310ea1b4c371eb65d1bc42bdc2229&amp;hashtags=kernel,Linux" height="61" width="50" /><br />
			</a>
		</div>
<p>kernel make stderr outputs:</p>
<p><span id="more-1087"></span></p>
<pre>
make[1]: *** [silentoldconfig] Error 1
make: *** [silentoldconfig] Error 2
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.0r2.info/blog/2010/05/28/linux-kernelv2-6-34-c5617b20-build-was-failed-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
