我是靠谱客的博主 简单月亮,最近开发中收集的这篇文章主要介绍(3)x210: fix the no output problem at "Starting kernel...",觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

the problem root cause is for the uart , in /arm/samsung-dev-uboot/include/configs/ smdkx210single.h we have

"#define CONFIG_SERIAL3          1     

so we need set uart port to 2 in uboot args and kernel
smdk210>setenv bootargs 'root=/dev/ram rootfstype=ext2 init=/linuxrc console=ttySAC2,115200 mem=512M'

setenv bootargs ‘noinitrd mem=512M console=ttySAC2,115200 root=/dev/nfs nfsroot=172.16.96.215:/arm-nfs ip=172.16.96.250:172.16.96.215:172.16.96.215:255.255.254.0::eth0:off’

and in kernel

>make menuconfig ->system type

由     (0) S3C UART to use for low-level messages
变为 (2) S3C UART to use for low-level messages 
and make menuconfig ->kernel hacking

由     (0)  S3C UART to use for low-level debug 
变为 (2)  S3C UART to use for low-level debug 

[root@mo-cn-491 kernel]# mkimage -A arm -O linux -T kernel -C none -a 30008000 -e 30008040   -d arch/arm/boot/zImage uImage


[root@mo-cn-491 kernel]# cp uImage /tftpboot

最后

以上就是简单月亮为你收集整理的(3)x210: fix the no output problem at "Starting kernel..."的全部内容,希望文章能够帮你解决(3)x210: fix the no output problem at "Starting kernel..."所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(47)

评论列表共有 0 条评论

立即
投稿
返回
顶部