my crosstool chains is ready, i can build a hello_world.c in my PC and run a.out on raspberry.
But when I compile the kernel for raspberry, make is ok, but no any ko file...
I check out kernel from this (or offical 3.1.9+)
git clone -b rpi-3.2.23 https://github.com/bootc/linux.git
and cp the arch/arm/configs/bcmrpi_defconfig as my default config file.
then make ARCH=arm CROSS_COMPILE=arm-unknown-linux-gnueabi- menuconfig
run "make ARCH=arm CROSS_COMPILE=arm-unknown-linux-gnueabi- -j4" next
...... ...... ...... ......
everythings done, kernel Image ready but no any ko file !!!!
- Code: Select all
LD drivers/built-in.o
LD vmlinux.o
MODPOST vmlinux.o
GEN .version
CHK include/generated/compile.h
UPD include/generated/compile.h
CC init/version.o
LD init/built-in.o
LD vmlinux
SYSMAP System.map
OBJCOPY arch/arm/boot/Image
Building modules, stage 2.
MODPOST 0 modules
Kernel: arch/arm/boot/Image is ready
GZIP arch/arm/boot/compressed/piggy.gzip
CC arch/arm/boot/compressed/decompress.o
CC arch/arm/boot/compressed/misc.o
CC arch/arm/boot/compressed/string.o
AS arch/arm/boot/compressed/piggy.gzip.o
LD arch/arm/boot/compressed/vmlinux
OBJCOPY arch/arm/boot/zImage
Kernel: arch/arm/boot/zImage is ready
WHAT'S WRONG AM I??
thank you!!