linux-2.6.28 compile problem
there not is config file of S3C2440 ,how to compile a kernel to run on the S3C2440 platform, can i use S3C2410 config file
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(9)
kernel编译出错问题,编译步骤
1.make ARCH=arm CROSS_COMPILE=arm-maxwit-linux-gnueabi- s3c2410_defconfig
2.make ARCH=arm CROSS_COMPILE=arm-maxwit-linux-gnueabi- menuconfig
*use the ARM EABI to compile the kernel
*nfs
(1)problem: arm-maxwit-linux-gnueabi-ld: no machine record defined.
How to deal
按照g-bios的datasheet启动kernel后,Error: unrecognized/unsupported machine ID (r1 = 0x0000090e).问题可能是bootloader的machine ID跟kernel传入的machine ID不一致;
是不是之前编译了其他板子的kernel?编译之前先make distclean,再重新配置编译
先在kernel源码里arch/arm/tools/machi_types文件里查找到你编译的板子的MACH_ID,再看BootLoader启动kernel时第二个参数是不是板子的MACHI_ID
如果你使用的bootloader是g-bios,启动kernel的代码在g-bios目录下的app/boot/boot.c文件里
pfExecKernel(0, MACH_ID, ATAG_BASE);
把在g-bios/app/boot/boot_linux.c的,MACH_ID修改为surpport的ID(0x16a),出错为大量乱码。原因分析是不是kernel编译出问题。
应该是Clock没设对!
如果你编译的是smdk2440的kernel,那对应的MACH_ID 是1008
linux源码目录下的arch/arm/mach-s3c2440/mach-smdk2440.c 文件中 smdk2440_map_io()函数里设置的clock为163934400
s3c24xx_init_clocks(163934400);
how to init system clock,修改kernel的system clock.是linux2.6.28/arch/arm/kernel/time.c文件吗