LinuxQuestions.org
Share your knowledge at the LQ Wiki.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Software > Linux - Kernel
User Name
Password
Linux - Kernel This forum is for all discussion relating to the Linux kernel.

Notices


Reply
  Search this Thread
Old 10-03-2008, 12:25 AM   #1
zahidul
LQ Newbie
 
Registered: Sep 2008
Posts: 21

Rep: Reputation: 15
Angry error while compiling linux kernel


hi all,

i m compiling linux kernel 2.6.26.3 and try to port it to an ARM processor.while running the commnad <make zImage> i got the following error mesages:

drivers/video/console/vgacon.c:1052: error: `PCIMEM_BASE' undeclared (first use in this function)
drivers/video/console/vgacon.c:1165: warning: cast to pointer from integer of different size
drivers/video/console/vgacon.c:1170: warning: cast to pointer from integer of different size
drivers/video/console/vgacon.c: In function `vgacon_adjust_height':
drivers/video/console/vgacon.c:1200: warning: cast to pointer from integer of different size
drivers/video/console/vgacon.c:1201: warning: cast to pointer from integer of different size
drivers/video/console/vgacon.c:1202: warning: cast to pointer from integer of different size
drivers/video/console/vgacon.c:1203: warning: cast to pointer from integer of different size
drivers/video/console/vgacon.c:1212: warning: cast to pointer from integer of different size
drivers/video/console/vgacon.c:1213: warning: cast to pointer from integer of different size
drivers/video/console/vgacon.c:1214: warning: cast to pointer from integer of different size
drivers/video/console/vgacon.c:1215: warning: cast to pointer from integer of different size
drivers/video/console/vgacon.c:1216: warning: cast to pointer from integer of different size
drivers/video/console/vgacon.c:1217: warning: cast to pointer from integer of different size
make[3]: *** [drivers/video/console/vgacon.o] Error 1
make[2]: *** [drivers/video/console] Error 2
make[1]: *** [drivers/video] Error 2
make: *** [drivers] Error 2

any ideas how to get through these errors..
 
Old 10-03-2008, 08:30 AM   #2
sundialsvcs
LQ Guru
 
Registered: Feb 2004
Location: SE Tennessee, USA
Distribution: Gentoo, LFS
Posts: 10,688
Blog Entries: 4

Rep: Reputation: 3947Reputation: 3947Reputation: 3947Reputation: 3947Reputation: 3947Reputation: 3947Reputation: 3947Reputation: 3947Reputation: 3947Reputation: 3947Reputation: 3947
(Shrug...) Some kind of an error in the ".config" file. I suggest that you first look at the source-code to see how the symbol is used. Then (after making a nice, safe backup...) look at the (hidden) ".config" file to see whether the symbol is defined there.

Sometimes, a conditional-define symbol (which is what ".config" basically is) must be included to get correct compilation.

If it compiles cleanly, you need to go back and recompile the whole thing:
  1. Make a nice, safe backup copy of ".config." (Oh, you did that already, didn't you?)
  2. Rename ".config" to (say) "foobar," because the next step will wipe it out...
  3. make distclean
  4. Rename "foobar" back to ".config" (notice the dot).
  5. make etc...
You must do this so that you do not "mix apples and oranges," with usually-fatal results. All kernel components must be compiled using exactly the same set of options.

Incidentally, no matter how much I "trust" the folks who prepare my (Gentoo...) distro, this is how I always compile a new kernel. I back up the old config, run make newconfig and the like, then back up the new config and perform the same (make distclean) process above. This guarantees that there is no "residue," and that everything is recompiled at the same time.

Last edited by sundialsvcs; 10-03-2008 at 08:32 AM.
 
Old 10-03-2008, 11:18 PM   #3
zahidul
LQ Newbie
 
Registered: Sep 2008
Posts: 21

Original Poster
Rep: Reputation: 15
Smile

Quote:
Originally Posted by sundialsvcs View Post
(Shrug...) Some kind of an error in the ".config" file. I suggest that you first look at the source-code to see how the symbol is used. Then (after making a nice, safe backup...) look at the (hidden) ".config" file to see whether the symbol is defined there.

Sometimes, a conditional-define symbol (which is what ".config" basically is) must be included to get correct compilation.

If it compiles cleanly, you need to go back and recompile the whole thing:
  1. Make a nice, safe backup copy of ".config." (Oh, you did that already, didn't you?)
  2. Rename ".config" to (say) "foobar," because the next step will wipe it out...
  3. make distclean
  4. Rename "foobar" back to ".config" (notice the dot).
  5. make etc...
You must do this so that you do not "mix apples and oranges," with usually-fatal results. All kernel components must be compiled using exactly the same set of options.

Incidentally, no matter how much I "trust" the folks who prepare my (Gentoo...) distro, this is how I always compile a new kernel. I back up the old config, run make newconfig and the like, then back up the new config and perform the same (make distclean) process above. This guarantees that there is no "residue," and that everything is recompiled at the same time.
i did noe get "how the symbol is used"
 
Old 11-07-2008, 12:13 AM   #4
rajeesr@gmail.com
LQ Newbie
 
Registered: Nov 2008
Location: INDIA
Posts: 3

Rep: Reputation: 0
hi to all

I am compiling linux-2.6.27.4 for ARM procesor
while running

make ARCH=arm CROSS_COMPILE=arm-linux- menuconfig
save
make ARCH=arm CROSS_COMPILE=arm-linux- uImage

i got the following error messages

In file included from drivers/video/console/vgacon.c:51:
include/video/vga.h: In function `vga_io_r':
include/video/vga.h:226: warning: cast to pointer from integer of different size
include/video/vga.h: In function `vga_io_w':
include/video/vga.h:231: warning: cast to pointer from integer of different size
include/video/vga.h: In function `vga_io_w_fast':
include/video/vga.h:237: warning: cast to pointer from integer of different size
drivers/video/console/vgacon.c: In function `write_vga':
drivers/video/console/vgacon.c:149: warning: cast to pointer from integer of different size
drivers/video/console/vgacon.c:150: warning: cast to pointer from integer of different size
drivers/video/console/vgacon.c: In function `vgacon_startup':
drivers/video/console/vgacon.c:494: error: `PCIMEM_BASE' undeclared (first use in this function)
drivers/video/console/vgacon.c:494: error: (Each undeclared identifier is reported only once
drivers/video/console/vgacon.c:494: error: for each function it appears in.)
drivers/video/console/vgacon.c: In function `vgacon_set_cursor_size':
drivers/video/console/vgacon.c:652: warning: cast to pointer from integer of different size
drivers/video/console/vgacon.c:653: warning: cast to pointer from integer of different size
drivers/video/console/vgacon.c:654: warning: cast to pointer from integer of different size
drivers/video/console/vgacon.c:655: warning: cast to pointer from integer of different size
drivers/video/console/vgacon.c:664: warning: cast to pointer from integer of different size
drivers/video/console/vgacon.c:665: warning: cast to pointer from integer of different size
drivers/video/console/vgacon.c:666: warning: cast to pointer from integer of different size
drivers/video/console/vgacon.c:667: warning: cast to pointer from integer of different size
drivers/video/console/vgacon.c: In function `vgacon_doresize':
drivers/video/console/vgacon.c:748: warning: cast to pointer from integer of different size
drivers/video/console/vgacon.c:749: warning: cast to pointer from integer of different size
drivers/video/console/vgacon.c:754: warning: cast to pointer from integer of different size
drivers/video/console/vgacon.c:755: warning: cast to pointer from integer of different size
drivers/video/console/vgacon.c:763: warning: cast to pointer from integer of different size
drivers/video/console/vgacon.c:764: warning: cast to pointer from integer of different size
drivers/video/console/vgacon.c:772: warning: cast to pointer from integer of different size
drivers/video/console/vgacon.c:773: warning: cast to pointer from integer of different size
drivers/video/console/vgacon.c:774: warning: cast to pointer from integer of different size
drivers/video/console/vgacon.c:775: warning: cast to pointer from integer of different size
drivers/video/console/vgacon.c:778: warning: cast to pointer from integer of different size
drivers/video/console/vgacon.c:779: warning: cast to pointer from integer of different size
drivers/video/console/vgacon.c:780: warning: cast to pointer from integer of different size
drivers/video/console/vgacon.c:781: warning: cast to pointer from integer of different size
drivers/video/console/vgacon.c:784: warning: cast to pointer from integer of different size
drivers/video/console/vgacon.c:785: warning: cast to pointer from integer of different size
drivers/video/console/vgacon.c:786: warning: cast to pointer from integer of different size
drivers/video/console/vgacon.c:787: warning: cast to pointer from integer of different size
drivers/video/console/vgacon.c:790: warning: cast to pointer from integer of different size
drivers/video/console/vgacon.c:791: warning: cast to pointer from integer of different size
drivers/video/console/vgacon.c: In function `vga_vesa_blank':
drivers/video/console/vgacon.c:879: warning: cast to pointer from integer of different size
drivers/video/console/vgacon.c:883: warning: cast to pointer from integer of different size
drivers/video/console/vgacon.c:884: warning: cast to pointer from integer of different size
drivers/video/console/vgacon.c:885: warning: cast to pointer from integer of different size
drivers/video/console/vgacon.c:886: warning: cast to pointer from integer of different size
drivers/video/console/vgacon.c:887: warning: cast to pointer from integer of different size
drivers/video/console/vgacon.c:888: warning: cast to pointer from integer of different size
drivers/video/console/vgacon.c:889: warning: cast to pointer from integer of different size
drivers/video/console/vgacon.c:890: warning: cast to pointer from integer of different size
drivers/video/console/vgacon.c:891: warning: cast to pointer from integer of different size
drivers/video/console/vgacon.c:892: warning: cast to pointer from integer of different size
drivers/video/console/vgacon.c:893: warning: cast to pointer from integer of different size
drivers/video/console/vgacon.c:894: warning: cast to pointer from integer of different size
drivers/video/console/vgacon.c:895: warning: cast to pointer from integer of different size
drivers/video/console/vgacon.c:896: warning: cast to pointer from integer of different size
drivers/video/console/vgacon.c:897: warning: cast to pointer from integer of different size
drivers/video/console/vgacon.c:898: warning: cast to pointer from integer of different size
drivers/video/console/vgacon.c:917: warning: cast to pointer from integer of different size
drivers/video/console/vgacon.c:918: warning: cast to pointer from integer of different size
drivers/video/console/vgacon.c:919: warning: cast to pointer from integer of different size
drivers/video/console/vgacon.c:920: warning: cast to pointer from integer of different size
drivers/video/console/vgacon.c:921: warning: cast to pointer from integer of different size
drivers/video/console/vgacon.c:922: warning: cast to pointer from integer of different size
drivers/video/console/vgacon.c:931: warning: cast to pointer from integer of different size
drivers/video/console/vgacon.c:932: warning: cast to pointer from integer of different size
drivers/video/console/vgacon.c:933: warning: cast to pointer from integer of different size
drivers/video/console/vgacon.c:934: warning: cast to pointer from integer of different size
drivers/video/console/vgacon.c:939: warning: cast to pointer from integer of different size
drivers/video/console/vgacon.c: In function `vga_vesa_unblank':
drivers/video/console/vgacon.c:949: warning: cast to pointer from integer of different size
drivers/video/console/vgacon.c:950: warning: cast to pointer from integer of different size
drivers/video/console/vgacon.c:951: warning: cast to pointer from integer of different size
drivers/video/console/vgacon.c:952: warning: cast to pointer from integer of different size
drivers/video/console/vgacon.c:953: warning: cast to pointer from integer of different size
drivers/video/console/vgacon.c:954: warning: cast to pointer from integer of different size
drivers/video/console/vgacon.c:955: warning: cast to pointer from integer of different size
drivers/video/console/vgacon.c:956: warning: cast to pointer from integer of different size
drivers/video/console/vgacon.c:957: warning: cast to pointer from integer of different size
drivers/video/console/vgacon.c:958: warning: cast to pointer from integer of different size
drivers/video/console/vgacon.c:959: warning: cast to pointer from integer of different size
drivers/video/console/vgacon.c:960: warning: cast to pointer from integer of different size
drivers/video/console/vgacon.c:961: warning: cast to pointer from integer of different size
drivers/video/console/vgacon.c:962: warning: cast to pointer from integer of different size
drivers/video/console/vgacon.c:963: warning: cast to pointer from integer of different size
drivers/video/console/vgacon.c:964: warning: cast to pointer from integer of different size
drivers/video/console/vgacon.c:970: warning: cast to pointer from integer of different size
drivers/video/console/vgacon.c: In function `vgacon_do_font_op':
drivers/video/console/vgacon.c:1052: error: `PCIMEM_BASE' undeclared (first use in this function)
drivers/video/console/vgacon.c:1165: warning: cast to pointer from integer of different size
drivers/video/console/vgacon.c:1170: warning: cast to pointer from integer of different size
drivers/video/console/vgacon.c: In function `vgacon_adjust_height':
drivers/video/console/vgacon.c:1200: warning: cast to pointer from integer of different size
drivers/video/console/vgacon.c:1201: warning: cast to pointer from integer of different size
drivers/video/console/vgacon.c:1202: warning: cast to pointer from integer of different size
drivers/video/console/vgacon.c:1203: warning: cast to pointer from integer of different size
drivers/video/console/vgacon.c:1212: warning: cast to pointer from integer of different size
drivers/video/console/vgacon.c:1213: warning: cast to pointer from integer of different size
drivers/video/console/vgacon.c:1214: warning: cast to pointer from integer of different size
drivers/video/console/vgacon.c:1215: warning: cast to pointer from integer of different size
drivers/video/console/vgacon.c:1216: warning: cast to pointer from integer of different size
drivers/video/console/vgacon.c:1217: warning: cast to pointer from integer of different size
make[3]: *** [drivers/video/console/vgacon.o] Error 1
make[2]: *** [drivers/video/console] Error 2
make[1]: *** [drivers/video] Error 2
make: *** [drivers] Error 2







any idea to solve this problem
 
Old 11-09-2008, 09:39 PM   #5
zahidul
LQ Newbie
 
Registered: Sep 2008
Posts: 21

Original Poster
Rep: Reputation: 15
since ARM doesnot support the vga facility, so in make menuconfig you disable this facility which is enabled by default.and then again try to compile the kernel.


Quote:
Originally Posted by rajeesr@gmail.com View Post
hi to all



I am compiling linux-2.6.27.4 for ARM procesor
while running

make ARCH=arm CROSS_COMPILE=arm-linux- menuconfig
save
make ARCH=arm CROSS_COMPILE=arm-linux- uImage

i got the following error messages

In file included from drivers/video/console/vgacon.c:51:
include/video/vga.h: In function `vga_io_r':
include/video/vga.h:226: warning: cast to pointer from integer of different size
include/video/vga.h: In function `vga_io_w':
include/video/vga.h:231: warning: cast to pointer from integer of different size
include/video/vga.h: In function `vga_io_w_fast':
include/video/vga.h:237: warning: cast to pointer from integer of different size
drivers/video/console/vgacon.c: In function `write_vga':
drivers/video/console/vgacon.c:149: warning: cast to pointer from integer of different size
drivers/video/console/vgacon.c:150: warning: cast to pointer from integer of different size
drivers/video/console/vgacon.c: In function `vgacon_startup':
drivers/video/console/vgacon.c:494: error: `PCIMEM_BASE' undeclared (first use in this function)
drivers/video/console/vgacon.c:494: error: (Each undeclared identifier is reported only once
drivers/video/console/vgacon.c:494: error: for each function it appears in.)
drivers/video/console/vgacon.c: In function `vgacon_set_cursor_size':
drivers/video/console/vgacon.c:652: warning: cast to pointer from integer of different size
drivers/video/console/vgacon.c:653: warning: cast to pointer from integer of different size
drivers/video/console/vgacon.c:654: warning: cast to pointer from integer of different size
drivers/video/console/vgacon.c:655: warning: cast to pointer from integer of different size
drivers/video/console/vgacon.c:664: warning: cast to pointer from integer of different size
drivers/video/console/vgacon.c:665: warning: cast to pointer from integer of different size
drivers/video/console/vgacon.c:666: warning: cast to pointer from integer of different size
drivers/video/console/vgacon.c:667: warning: cast to pointer from integer of different size
drivers/video/console/vgacon.c: In function `vgacon_doresize':
drivers/video/console/vgacon.c:748: warning: cast to pointer from integer of different size
drivers/video/console/vgacon.c:749: warning: cast to pointer from integer of different size
drivers/video/console/vgacon.c:754: warning: cast to pointer from integer of different size
drivers/video/console/vgacon.c:755: warning: cast to pointer from integer of different size
drivers/video/console/vgacon.c:763: warning: cast to pointer from integer of different size
drivers/video/console/vgacon.c:764: warning: cast to pointer from integer of different size
drivers/video/console/vgacon.c:772: warning: cast to pointer from integer of different size
drivers/video/console/vgacon.c:773: warning: cast to pointer from integer of different size
drivers/video/console/vgacon.c:774: warning: cast to pointer from integer of different size
drivers/video/console/vgacon.c:775: warning: cast to pointer from integer of different size
drivers/video/console/vgacon.c:778: warning: cast to pointer from integer of different size
drivers/video/console/vgacon.c:779: warning: cast to pointer from integer of different size
drivers/video/console/vgacon.c:780: warning: cast to pointer from integer of different size
drivers/video/console/vgacon.c:781: warning: cast to pointer from integer of different size
drivers/video/console/vgacon.c:784: warning: cast to pointer from integer of different size
drivers/video/console/vgacon.c:785: warning: cast to pointer from integer of different size
drivers/video/console/vgacon.c:786: warning: cast to pointer from integer of different size
drivers/video/console/vgacon.c:787: warning: cast to pointer from integer of different size
drivers/video/console/vgacon.c:790: warning: cast to pointer from integer of different size
drivers/video/console/vgacon.c:791: warning: cast to pointer from integer of different size
drivers/video/console/vgacon.c: In function `vga_vesa_blank':
drivers/video/console/vgacon.c:879: warning: cast to pointer from integer of different size
drivers/video/console/vgacon.c:883: warning: cast to pointer from integer of different size
drivers/video/console/vgacon.c:884: warning: cast to pointer from integer of different size
drivers/video/console/vgacon.c:885: warning: cast to pointer from integer of different size
drivers/video/console/vgacon.c:886: warning: cast to pointer from integer of different size
drivers/video/console/vgacon.c:887: warning: cast to pointer from integer of different size
drivers/video/console/vgacon.c:888: warning: cast to pointer from integer of different size
drivers/video/console/vgacon.c:889: warning: cast to pointer from integer of different size
drivers/video/console/vgacon.c:890: warning: cast to pointer from integer of different size
drivers/video/console/vgacon.c:891: warning: cast to pointer from integer of different size
drivers/video/console/vgacon.c:892: warning: cast to pointer from integer of different size
drivers/video/console/vgacon.c:893: warning: cast to pointer from integer of different size
drivers/video/console/vgacon.c:894: warning: cast to pointer from integer of different size
drivers/video/console/vgacon.c:895: warning: cast to pointer from integer of different size
drivers/video/console/vgacon.c:896: warning: cast to pointer from integer of different size
drivers/video/console/vgacon.c:897: warning: cast to pointer from integer of different size
drivers/video/console/vgacon.c:898: warning: cast to pointer from integer of different size
drivers/video/console/vgacon.c:917: warning: cast to pointer from integer of different size
drivers/video/console/vgacon.c:918: warning: cast to pointer from integer of different size
drivers/video/console/vgacon.c:919: warning: cast to pointer from integer of different size
drivers/video/console/vgacon.c:920: warning: cast to pointer from integer of different size
drivers/video/console/vgacon.c:921: warning: cast to pointer from integer of different size
drivers/video/console/vgacon.c:922: warning: cast to pointer from integer of different size
drivers/video/console/vgacon.c:931: warning: cast to pointer from integer of different size
drivers/video/console/vgacon.c:932: warning: cast to pointer from integer of different size
drivers/video/console/vgacon.c:933: warning: cast to pointer from integer of different size
drivers/video/console/vgacon.c:934: warning: cast to pointer from integer of different size
drivers/video/console/vgacon.c:939: warning: cast to pointer from integer of different size
drivers/video/console/vgacon.c: In function `vga_vesa_unblank':
drivers/video/console/vgacon.c:949: warning: cast to pointer from integer of different size
drivers/video/console/vgacon.c:950: warning: cast to pointer from integer of different size
drivers/video/console/vgacon.c:951: warning: cast to pointer from integer of different size
drivers/video/console/vgacon.c:952: warning: cast to pointer from integer of different size
drivers/video/console/vgacon.c:953: warning: cast to pointer from integer of different size
drivers/video/console/vgacon.c:954: warning: cast to pointer from integer of different size
drivers/video/console/vgacon.c:955: warning: cast to pointer from integer of different size
drivers/video/console/vgacon.c:956: warning: cast to pointer from integer of different size
drivers/video/console/vgacon.c:957: warning: cast to pointer from integer of different size
drivers/video/console/vgacon.c:958: warning: cast to pointer from integer of different size
drivers/video/console/vgacon.c:959: warning: cast to pointer from integer of different size
drivers/video/console/vgacon.c:960: warning: cast to pointer from integer of different size
drivers/video/console/vgacon.c:961: warning: cast to pointer from integer of different size
drivers/video/console/vgacon.c:962: warning: cast to pointer from integer of different size
drivers/video/console/vgacon.c:963: warning: cast to pointer from integer of different size
drivers/video/console/vgacon.c:964: warning: cast to pointer from integer of different size
drivers/video/console/vgacon.c:970: warning: cast to pointer from integer of different size
drivers/video/console/vgacon.c: In function `vgacon_do_font_op':
drivers/video/console/vgacon.c:1052: error: `PCIMEM_BASE' undeclared (first use in this function)
drivers/video/console/vgacon.c:1165: warning: cast to pointer from integer of different size
drivers/video/console/vgacon.c:1170: warning: cast to pointer from integer of different size
drivers/video/console/vgacon.c: In function `vgacon_adjust_height':
drivers/video/console/vgacon.c:1200: warning: cast to pointer from integer of different size
drivers/video/console/vgacon.c:1201: warning: cast to pointer from integer of different size
drivers/video/console/vgacon.c:1202: warning: cast to pointer from integer of different size
drivers/video/console/vgacon.c:1203: warning: cast to pointer from integer of different size
drivers/video/console/vgacon.c:1212: warning: cast to pointer from integer of different size
drivers/video/console/vgacon.c:1213: warning: cast to pointer from integer of different size
drivers/video/console/vgacon.c:1214: warning: cast to pointer from integer of different size
drivers/video/console/vgacon.c:1215: warning: cast to pointer from integer of different size
drivers/video/console/vgacon.c:1216: warning: cast to pointer from integer of different size
drivers/video/console/vgacon.c:1217: warning: cast to pointer from integer of different size
make[3]: *** [drivers/video/console/vgacon.o] Error 1
make[2]: *** [drivers/video/console] Error 2
make[1]: *** [drivers/video] Error 2
make: *** [drivers] Error 2







any idea to solve this problem
 
Old 11-11-2008, 06:51 AM   #6
rajeesr@gmail.com
LQ Newbie
 
Registered: Nov 2008
Location: INDIA
Posts: 3

Rep: Reputation: 0
hi all,

I have compiled inux-2.6.27.4 for ARM procesor and ported to embest(atmel) board but while restarting the board it reaches up to starting kernel.... and stoping there

please help me to solve this problem


Hit any key to stop autoboot: 0
## Booting image at 20e00000 ...
Image Name:
Image Type: ARM Linux Kernel Image (gzip compressed)
Data Size: 1310400 Bytes = 1.2 MB
Load Address: 20008000
Entry Point: 20008000
Verifying Checksum ... OK
Uncompressing Kernel Image ... OK

Starting kernel ...

Last edited by rajeesr@gmail.com; 11-11-2008 at 10:50 PM.
 
Old 11-14-2008, 06:17 AM   #7
rajeesr@gmail.com
LQ Newbie
 
Registered: Nov 2008
Location: INDIA
Posts: 3

Rep: Reputation: 0
Kernel stops at Starting kernel ......

hi all,

I have compiled inux-2.6.27.4 for ARM procesor and ported to embest(atmel) board but while restarting the board it reaches up to starting kernel.... and stoping there

please help me to solve this problem


Hit any key to stop autoboot: 0
## Booting image at 20e00000 ...
Image Name:
Image Type: ARM Linux Kernel Image (gzip compressed)
Data Size: 1310400 Bytes = 1.2 MB
Load Address: 20008000
Entry Point: 20008000
Verifying Checksum ... OK
Uncompressing Kernel Image ... OK

Starting kernel ...
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
error while compiling linux kernel 2.6 V zahidul Linux - Newbie 5 05-17-2009 07:29 AM
error while compiling linux kernel 2.6.26.3 zahidul Linux - Newbie 1 10-01-2008 02:14 AM
Error when compiling kernel linux-2.6.22 : make: ***[_modinst_post] Error 137 ngoclan.it Linux - General 1 12-11-2007 06:54 AM
Error when compiling kernel linux-2.6.22 : make: ***[_modinst_post] Error 137 ngoclan.it Linux - Newbie 0 12-11-2007 06:49 AM
error compiling the kernel linux-2.6.5 shams Mandriva 9 05-25-2004 09:44 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Software > Linux - Kernel

All times are GMT -5. The time now is 03:44 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration