Tagged Questions
0
votes
0answers
114 views
make: i686-linux-gcc: Command not found
I am using Ubuntu-11.10 amd64 and trying to cross-compile a linux-2.6.38.8 kernel for a 32-bit target.I tried
make CROSS_COMPILE=i686-linux- ARCH=i386
But I got error
make: i686-linux-gcc: ...
1
vote
0answers
50 views
No make target “uImage” with Buildroot 2013.05
After enabling Linux Kernel option and setting the Kernel binary format to uImage, I always get the following error:
make[1]: * No rule to make target `uImage'. Stop.
My buildroot configuration is ...
0
votes
1answer
248 views
make: *** No targets. Stop while building linux kernel module [closed]
I am just trying to learn how to driver modules for Linux Kernel. I followed Linux Device drivers 3rd edition book and started my work. I created a sample program and makefile. Please find my makefile ...
1
vote
0answers
247 views
CFLAGS in Linux kernel makefiles: which one is used when?
I'm not familiar with Makefiles, I can kinda understand them, but with the Linux Kernel I have a question.
(Using 3.7.1, Patched with BFS so line numbers may be a bit off)
On line 248
HOSTCFLAGS ...
9
votes
1answer
908 views
What happens in each step of the Linux kernel-building process?
I've read many tutorials about how to build custom kernels and boot Ubuntu using those kernels, and successfully followed the guides and booted custom kernels, but I have no understanding about what ...