Hello !
I'm trying to compile a kernel from 2.6.17-10 to 2.6.19 with suspend2.
After this command :
make-kpkg --append-to-version=swsusp2.070206 kernel_image --initrd
kernel_headers --revision=2.6.1
I obtain :
Building modules, stage 2.
MODPOST 1479 modules
WARNING: Can't handle masks in drivers/ide/pci/atiixp:FFFF05
WARNING: "try_to_freeze" [drivers/usb/atm/ueagle-atm.ko] undefined!
make[2]: *** [__modpost] Erreur 1
make[1]: *** [modules] Erreur 2
make[1]: quittant le r?pertoire ? /home/hulin/src/linux-2.6.19 ?
make: *** [debian/stamp-build-kernel] Erreur 2
I don't understand the error ?
Thanks for help,
Thibaud.
On Tue, 06 Feb 2007 21:00:54 +0100 Thibaud Hulin wrote:
> Hello !
> I'm trying to compile a kernel from 2.6.17-10 to 2.6.19 with suspend2.
> After this command :
> make-kpkg --append-to-version=swsusp2.070206 kernel_image --initrd
> kernel_headers --revision=2.6.1
>
> I obtain :
> Building modules, stage 2.
> MODPOST 1479 modules
> WARNING: Can't handle masks in drivers/ide/pci/atiixp:FFFF05
> WARNING: "try_to_freeze" [drivers/usb/atm/ueagle-atm.ko] undefined!
> make[2]: *** [__modpost] Erreur 1
> make[1]: *** [modules] Erreur 2
> make[1]: quittant le r?pertoire ? /home/hulin/src/linux-2.6.19 ?
> make: *** [debian/stamp-build-kernel] Erreur 2
>
> I don't understand the error ?
The driver is missing #include <linux/sched.h>.
Please try the patch below and report back on it.
---
From: Randy Dunlap <[email protected]>
Driver needs sched.h for try_to_freeze().
Signed-off-by: Randy Dunlap <[email protected]>
---
drivers/usb/atm/ueagle-atm.c | 1 +
1 file changed, 1 insertion(+)
--- linux-2619-pv.orig/drivers/usb/atm/ueagle-atm.c
+++ linux-2619-pv/drivers/usb/atm/ueagle-atm.c
@@ -61,6 +61,7 @@
#include <linux/usb.h>
#include <linux/firmware.h>
#include <linux/ctype.h>
+#include <linux/sched.h>
#include <linux/kthread.h>
#include <linux/version.h>
#include <linux/mutex.h>
Thanks. Before seeing your message, I erase the line with this module in
the .config, and if worked. However, I must recompile it, because I
forgot someting for suspend2.
I'd like install your patch. But how can I do it ? Have you join a patch
sched.h ?
Randy Dunlap a ?crit :
> On Tue, 06 Feb 2007 21:00:54 +0100 Thibaud Hulin wrote:
>
>> Hello !
>> I'm trying to compile a kernel from 2.6.17-10 to 2.6.19 with suspend2.
>> After this command :
>> make-kpkg --append-to-version=swsusp2.070206 kernel_image --initrd
>> kernel_headers --revision=2.6.1
>>
>> I obtain :
>> Building modules, stage 2.
>> MODPOST 1479 modules
>> WARNING: Can't handle masks in drivers/ide/pci/atiixp:FFFF05
>> WARNING: "try_to_freeze" [drivers/usb/atm/ueagle-atm.ko] undefined!
>> make[2]: *** [__modpost] Erreur 1
>> make[1]: *** [modules] Erreur 2
>> make[1]: quittant le r?pertoire ? /home/hulin/src/linux-2.6.19 ?
>> make: *** [debian/stamp-build-kernel] Erreur 2
>>
>> I don't understand the error ?
>
>
> The driver is missing #include <linux/sched.h>.
> Please try the patch below and report back on it.
> ---
>
> From: Randy Dunlap <[email protected]>
>
> Driver needs sched.h for try_to_freeze().
>
> Signed-off-by: Randy Dunlap <[email protected]>
> ---
> drivers/usb/atm/ueagle-atm.c | 1 +
> 1 file changed, 1 insertion(+)
>
> --- linux-2619-pv.orig/drivers/usb/atm/ueagle-atm.c
> +++ linux-2619-pv/drivers/usb/atm/ueagle-atm.c
> @@ -61,6 +61,7 @@
> #include <linux/usb.h>
> #include <linux/firmware.h>
> #include <linux/ctype.h>
> +#include <linux/sched.h>
> #include <linux/kthread.h>
> #include <linux/version.h>
> #include <linux/mutex.h>
>
>
Thibaud Hulin wrote:
> Thanks. Before seeing your message, I erase the line with this module in
> the .config, and if worked. However, I must recompile it, because I
> forgot someting for suspend2.
> I'd like install your patch. But how can I do it ? Have you join a patch
> sched.h ?
Just apply the patch and rebuild the kernel.
Or edit drivers/usb/atm/ueagle-atm.c and add that one line
and then rebuild the kernel.
Applying patches is covered somewhat in the README file at the
top-level of the kernel source tree and more in the file
Documentation/applying-patches.txt . A quick summary is:
save the patch from the email as ueagle.patch
cd linux-2.6.19
patch -p1 < ~/ueagle.patch
re-enable the config option if it is still disabled
make all
> Randy Dunlap a ?crit :
>> On Tue, 06 Feb 2007 21:00:54 +0100 Thibaud Hulin wrote:
>>
>>> Hello !
>>> I'm trying to compile a kernel from 2.6.17-10 to 2.6.19 with suspend2.
>>> After this command :
>>> make-kpkg --append-to-version=swsusp2.070206 kernel_image --initrd
>>> kernel_headers --revision=2.6.1
>>>
>>> I obtain :
>>> Building modules, stage 2.
>>> MODPOST 1479 modules
>>> WARNING: Can't handle masks in drivers/ide/pci/atiixp:FFFF05
>>> WARNING: "try_to_freeze" [drivers/usb/atm/ueagle-atm.ko] undefined!
>>> make[2]: *** [__modpost] Erreur 1
>>> make[1]: *** [modules] Erreur 2
>>> make[1]: quittant le r?pertoire ? /home/hulin/src/linux-2.6.19 ?
>>> make: *** [debian/stamp-build-kernel] Erreur 2
>>>
>>> I don't understand the error ?
>>
>>
>> The driver is missing #include <linux/sched.h>.
>> Please try the patch below and report back on it.
>> ---
>>
>> From: Randy Dunlap <[email protected]>
>>
>> Driver needs sched.h for try_to_freeze().
>>
>> Signed-off-by: Randy Dunlap <[email protected]>
>> ---
>> drivers/usb/atm/ueagle-atm.c | 1 +
>> 1 file changed, 1 insertion(+)
>>
>> --- linux-2619-pv.orig/drivers/usb/atm/ueagle-atm.c
>> +++ linux-2619-pv/drivers/usb/atm/ueagle-atm.c
>> @@ -61,6 +61,7 @@
>> #include <linux/usb.h>
>> #include <linux/firmware.h>
>> #include <linux/ctype.h>
>> +#include <linux/sched.h>
>> #include <linux/kthread.h>
>> #include <linux/version.h>
>> #include <linux/mutex.h>
--
~Randy