<html>
<head>
<style>
.hmmessage P
{
margin:0px;
padding:0px
}
body.hmmessage
{
FONT-SIZE: 10pt;
FONT-FAMILY:Tahoma
}
</style>
</head>
<body class='hmmessage'>Hi Geoff,<BR>
&nbsp;<BR>
Again, many thanks for your mail and your suggestions...<BR>
&nbsp;<BR>
I tried what you suggested.<BR>
&nbsp;<BR>
I built the kernel from scratch as usual but instead of 'make install' I did :<BR><BR>&gt; cp vmlinux /boot<BR><BR>Then from kboot i tried:<BR>/mnt/root/vmlinux video=safe root=/dev/ps3da3<BR><BR>
...and the usual problem happened again.<BR>
&nbsp;<BR>
I then tried :<BR>
/mnt/root/vmlinux video=safe root=/dev/sda<BR>... same problem...<BR>
&nbsp;<BR>
I then tried to build the source&nbsp;within :<BR>
<A href="http://www.kernel.org/pub/linux/kernel/people/geoff/cell/ps3-distro-kit/CELL-Linux-CL_20080609-ADDON.iso">http://www.kernel.org/pub/linux/kernel/people/geoff/cell/ps3-distro-kit/CELL-Linux-CL_20080609-ADDON.iso</A><BR>
&nbsp;<BR>
I&nbsp;tried the steps above and still, the same problem...<BR>
&nbsp;<BR>
Geoff, I have a question... How do you build your kernels? What are your steps?<BR>
&nbsp;<BR>
Many thanks,<BR>
John<BR>
&nbsp;<BR>
&nbsp;<BR>
<BR><BR><BR>&nbsp;<BR>

<HR id=stopSpelling>
<BR>
&gt; Date: Mon, 28 Jul 2008 10:27:54 -0700<BR>&gt; From: geoffrey.levand@am.sony.com<BR>&gt; To: johncunha@hotmail.com<BR>&gt; CC: cbe-oss-dev@ozlabs.org<BR>&gt; Subject: Re: [Cbe-oss-dev] Problem with rebuilding latest Linux Kernel for PS3<BR>&gt; <BR>&gt; On 07/26/2008 11:21 AM, John Cunha wrote:<BR>&gt; &gt; Hi Geoff<BR>&gt; &gt; <BR>&gt; &gt; As I said previously today, I've been trying to rebuild and use<BR>&gt; &gt; different kernels on the PS3 for a while now and never with any success.<BR>&gt; &gt; The usual problems are that the kernel seems to build with success but<BR>&gt; &gt; the machine fails to reboot successfully using the newly build kernel.<BR>&gt; <BR>&gt; Is it the kernel itself or a bad install?<BR>&gt; <BR>&gt; &gt; I tried to build this kernel without the patch.<BR>&gt; &gt; Below are the exact steps I took and any notable screen warnings:<BR>&gt; &gt; <BR>&gt; &gt; - Unpack the source file :<BR>&gt; &gt; tar xjf linux-2.6.26.tar.bz2<BR>&gt; &gt; - Descend into directory<BR>&gt; &gt; - Create a local file called 'localversion' containing the text :<BR>&gt; &gt; -20080726<BR>&gt; &gt; - make mrproper<BR>&gt; &gt; - Copy config file:<BR>&gt; &gt; cp arch/powerpc/configs/ps3_defconfig .config<BR>&gt; &gt; - Compile config:<BR>&gt; &gt; make oldconfig<BR>&gt; &gt; (Note : During 'make oldconfig' I was prompted to answer some<BR>&gt; &gt; questions (all of which I just pressed 'return'):<BR>&gt; &gt; Forced module loading (MODULE_FORCE_LOAD) [N/y/?] (NEW)<BR>&gt; &gt; /dev/kmem virtual device support (DEVKMEM) [Y/n/?] (NEW)<BR>&gt; &gt; Hardware monitoring support (THERMAL_HWMON) [N/y/?] (NEW)<BR>&gt; &gt; Framebuffer foreign endianness support (FB_FOREIGN_ENDIAN) [N/y/?]<BR>&gt; &gt; (NEW)<BR>&gt; &gt; Cypress C67x00 HCD support (USB_C67X00_HCD) [N/m/?] (NEW)<BR>&gt; &gt; ISP 1760 HCD support (USB_ISP1760_HCD) [N/m/?] (NEW)<BR>&gt; &gt; USB Wireless Device Management support (USB_WDM) [N/m/?] (NEW)<BR>&gt; &gt; iSight firmware loading support (USB_ISIGHTFW) [N/m/?] (NEW)<BR>&gt; &gt; Accessibility support (ACCESSIBILITY) [N/y/?] (NEW)<BR>&gt; &gt; Debug object operations (DEBUG_OBJECTS) [N/y/?] (NEW)<BR>&gt; &gt; <BR>&gt; &gt; - Build the kernel:<BR>&gt; &gt; make -j2<BR>&gt; &gt; - Make and install modules<BR>&gt; &gt; make modules_install<BR>&gt; &gt; - Make the kernel <BR>&gt; &gt; make install<BR>&gt; &gt; (Note: during 'make install' I got the following warnings:)<BR>&gt; &gt; WARNING: No module uhci-hcd found for kernel 2.6.26-20080726,<BR>&gt; &gt; continuing anyway<BR>&gt; &gt; WARNING: No module ps3disk found for kernel 2.6.26-20080726,<BR>&gt; &gt; continuing anyway<BR>&gt; &gt; WARNING: No module ps3rom found for kernel 2.6.26-20080726,<BR>&gt; &gt; continuing anyway<BR>&gt; &gt; WARNING: No module ps3disk found for kernel 2.6.26-20080726,<BR>&gt; &gt; continuing anyway<BR>&gt; <BR>&gt; This means the kernel config does not match your distro's install script.<BR>&gt; In this case you must not use 'make install'. Try:<BR>&gt; <BR>&gt; cp vmlinux.strip /boot/vmlinux<BR>&gt; <BR>&gt; or<BR>&gt; <BR>&gt; cp vmlinux /boot<BR>&gt; <BR>&gt; Then from kboot try:<BR>&gt; <BR>&gt; /boot/vmlinux video=safe root=/dev/ps3da3<BR>&gt; <BR>&gt; &gt; <BR>&gt; &gt; - Adapted the bootloader startup files by adding the new installed<BR>&gt; &gt; kernel. Executeed these commands:<BR>&gt; &gt; * echo "default=custom" &gt; /tmp/yaboot.conf.new<BR>&gt; &gt; * cat /boot/etc/yaboot.conf &gt;&gt; /tmp/yaboot.conf.new<BR>&gt; &gt; * cat &gt;&gt; /tmp/yaboot.conf.new &lt;&lt; EOF<BR>&gt; &gt; * &gt;<BR>&gt; &gt; * &gt; image=/vmlinux-2.6.26-20080726<BR>&gt; &gt; * &gt; label=custom<BR>&gt; &gt; * &gt; read-only<BR>&gt; &gt; * &gt; initrd=/initrd-2.6.26-20080726.img<BR>&gt; &gt; * &gt; append="video=ps3fb:mode:138 rhgb quiet root=/dev/ps3da3"<BR>&gt; &gt; * &gt;<BR>&gt; &gt; * &gt; EOF<BR>&gt; &gt; * mv -f /tmp/yaboot.conf.new /boot/etc/yaboot.conf<BR>&gt; &gt; * cp -f /boot/etc/yaboot.conf /boot/yaboot/yaboot.conf<BR>&gt; <BR>&gt; In general, this entry seems screwed up. Is your root really<BR>&gt; on /dev/ps3da3? I doubt you need an initrd.<BR>&gt; <BR>&gt; I recommend you just get it to boot from the kboot command line<BR>&gt; first, then add a conf file entry.<BR>&gt; <BR>&gt; -Geoff<BR>&gt; <BR><BR><br /><hr />Get Hotmail on your Mobile!  <a href='http://clk.atdmt.com/UKM/go/101719965/direct/01/' target='_new'>Try it Now!</a></body>
</html>