Re: Kernelnewbies Digest, Vol 26, Issue 1
I am trying to build the Kernel 3.7 and there are some files which have to be overwritten when uncompressing. One of the same files, ipt_ECN.c, gives an error stopping the build process. Any suggestions? net/ipv4/netfilter/ipt_ECN.c:20:42: fatal error: linux/netfilter_ipv4/ipt_ECN.h: No such file or directory compilation terminated. make[3]: *** [net/ipv4/netfilter/ipt_ECN.o] Error 1 make[2]: *** [net/ipv4/netfilter] Error 2 make[1]: *** [net/ipv4] Error 2 make: *** [net] Error 2 TnR, Ganesh B ________________________________ From: "kernelnewbies-request@kernelnewbies.org" <kernelnewbies-request@kernelnewbies.org> To: kernelnewbies@kernelnewbies.org Sent: Wednesday, January 2, 2013 10:30 PM Subject: Kernelnewbies Digest, Vol 26, Issue 1 Send Kernelnewbies mailing list submissions to kernelnewbies@kernelnewbies.org To subscribe or unsubscribe via the World Wide Web, visit http://lists.kernelnewbies.org/mailman/listinfo/kernelnewbies or, via email, send a message with subject or body 'help' to kernelnewbies-request@kernelnewbies.org You can reach the person managing the list at kernelnewbies-owner@kernelnewbies.org When replying, please edit your Subject line so it is more specific than "Re: Contents of Kernelnewbies digest..." Today's Topics: 1. Re: trace_console function definition not found in Linux kernel v3.5 (jiangtao.jit) 2. compile linux kernel 2.6.0 failed! (horse_rivers) ---------------------------------------------------------------------- Message: 1 Date: Wed, 02 Jan 2013 11:45:38 +0800 From: "jiangtao.jit" <jiangtao.jit@gmail.com> Subject: Re: trace_console function definition not found in Linux kernel v3.5 To: "siddharth goel" <siddharth98391@gmail.com> Cc: kernelnewbies <kernelnewbies@kernelnewbies.org> Message-ID: <50e3ad65.8abe440a.56a1.ffffbc73@mx.google.com> Content-Type: text/plain; charset="utf-8" siddharth goel: defined in include/trace/event/printk.h refer to macro TRACE_EVENT_CONDITION(...) 2013-01-02 jiangtao.jit ????siddharth goel ?????2012-12-28 15:43 ???trace_console function definition not found in Linux kernel v3.5 ????"kernelnewbies"<kernelnewbies@kernelnewbies.org> ??? In file kernel/printk.c in Linux Kernel 3.5 there is a function call trace_console(text, 0, len, len); @line 1219 . But I could not find the definition for same. Am I missing any concept ? -- Thanks and Regards, Siddharth Goel
Hi Ganesh, On Wed, Jan 2, 2013 at 11:55 PM, Ganesh B <ganeshsurfs@yahoo.com> wrote:
I am trying to build the Kernel 3.7 and there are some files which have to be overwritten when uncompressing. One of the same files, ipt_ECN.c, gives an error stopping the build process. Any suggestions?
net/ipv4/netfilter/ipt_ECN.c:20:42: fatal error: linux/netfilter_ipv4/ipt_ECN.h: No such file or directory compilation terminated.
There is an ipt_ecn.c file and an ipt_ECN.c file (which differ only by case), so it sounds like there was a case-insensitive file system involved somewhere in what you're doing. Normal linux filesystems (like ext2/3/4) are case-sensitive, so these are 2 different files. Dave Hylands
Hello Dave, So I have to do the kernelversion.xz extraction in linux OS and then build, right? I am extracting this in another OS, got the problem. Thank you very much. Why would I get the following errors, though they would not stop the build process? Any help? 1> Where do I change the annotation of snd_hda_build_pcms? WARNING: sound/pci/hda/built-in.o(.text+0x54bc5): Section mismatch in reference from the function azx_probe_continue() to the function .devinit.text:snd_hda_build_pcms() The function azx_probe_continue() references the function __devinit snd_hda_build_pcms(). This is often because azx_probe_continue lacks a __devinit annotation or the annotation of snd_hda_build_pcms is wrong. OR WARNING: sound/built-in.o(.text+0x266d0d): Section mismatch in reference from the function azx_probe_continue() to the function .devinit.text:snd_hda_build_pcms() The function azx_probe_continue() references the function __devinit snd_hda_build_pcms(). This is often because azx_probe_continue lacks a __devinit annotation or the annotation of snd_hda_build_pcms is wrong. 2> sound/pci/rme9652/hdspm.c: In function ‘snd_hdspm_create_controls’: sound/pci/rme9652/hdspm.c:4597:20: warning: ‘limit’ may be used uninitialized in this function TnR, Ganesh B ________________________________ From: Dave Hylands <dhylands@gmail.com> To: Ganesh B <ganeshsurfs@yahoo.com> Cc: "kernelnewbies@kernelnewbies.org" <kernelnewbies@kernelnewbies.org> Sent: Thursday, January 3, 2013 2:07 PM Subject: Re: Kernelnewbies Digest, Vol 26, Issue 1 Hi Ganesh, On Wed, Jan 2, 2013 at 11:55 PM, Ganesh B <ganeshsurfs@yahoo.com> wrote: I am trying to build the Kernel 3.7 and there are some files which have to be overwritten when uncompressing. One of the same files, ipt_ECN.c, gives an error stopping the build process. Any suggestions?
net/ipv4/netfilter/ipt_ECN.c:20:42: fatal error: linux/netfilter_ipv4/ipt_ECN.h: No such file or directory compilation terminated.
There is an ipt_ecn.c file and an ipt_ECN.c file (which differ only by case), so it sounds like there was a case-insensitive file system involved somewhere in what you're doing. Normal linux filesystems (like ext2/3/4) are case-sensitive, so these are 2 different files. Dave Hylands
participants (2)
-
Dave Hylands -
Ganesh B