<div class="gmail_quote">2010/2/26 Sean <span dir="ltr"><<a href="mailto:knife@toaster.net" target="_blank">knife@toaster.net</a>></span><br><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
<div text="#000000" bgcolor="#ffffff">
I would use the same kernel config as voyage, just do a make oldconfig
to upgrade the config and then a make menuconfig.<br>
<br>
Correct me if I am wrong, but I don't think there are any kernel
*patches* per se.<br>
<br></div></blockquote></div><br>For the WRAP board, there are definitely patches required. In particular, the wd1100 driver needs to be updated for the 2.6.32 kernel.<br><br>The following patch seems to work, with nothing but a deprecation warning.<br>
<br>--- linux-source-2.6.30-voyage/drivers/watchdog/wd1100.c 2009-12-27 10:39:53.000000000 +0000<br>+++ linux-source-2.6.32/drivers/watchdog/wd1100.c 2010-02-28 11:55:34.000000000 +0000<br>@@ -51,13 +51,11 @@<br> <br>
static int proc_wd_timeout(ctl_table *ctl, <br> int write,<br>- struct file *file,<br> void *buffer,<br> size_t *lenp,<br>
loff_t *ppos);<br> static int proc_wd_graceful(ctl_table *ctl, <br> int write,<br>- struct file *file,<br> void *buffer,<br>
size_t *lenp,<br> loff_t *ppos);<br>@@ -133,14 +131,13 @@<br> <br> static int proc_wd_timeout(ctl_table *ctl, <br> int write,<br>
- struct file *file,<br> void *buffer,<br> size_t *lenp,<br> loff_t *ppos)<br> {<br> int rc;<br>
<br>- rc = proc_dointvec(ctl, write, file, buffer, lenp, ppos);<br>+ rc = proc_dointvec(ctl, write, buffer, lenp, ppos);<br> if (write && (rc == 0))<br> {<br> /* Clamp to limits. */<br>@@ -155,14 +152,13 @@<br>
<br> static int proc_wd_graceful(ctl_table *ctl, <br> int write,<br>- struct file *file,<br> void *buffer,<br> size_t *lenp,<br>
loff_t *ppos)<br> {<br> int rc;<br> <br>- rc = proc_dointvec(ctl, write, file, buffer, lenp, ppos);<br>+ rc = proc_dointvec(ctl, write, buffer, lenp, ppos);<br> if (write && (rc == 0))<br>
{<br> /* Clamp to true/false. */<br><br>----------------------------<br><br>Cheers,<br><br>Rasjid.<br><br>