作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我设置了 Kamikaze 工具链(来自 openwrt),并为 AMCC PPC405ex kilauea 编译了 Linux 2.6.30.x 内核。引用板。但是,由于某种原因,我在 uBoot 中做错了,因为我无法从 squashfs 镜像运行内核。图像通过 tftp 加载正常并解压缩,但控制台输出未启动。
我没有更改 Linux 内核命令行,它看起来很好( console=ttyS0,115200 root=/dev/mtdblock
)。我也有点疑惑什么是 fdt 在 uBoot 中?
我不完全确定这是否真的属于 stackoverflow,但是这也不是一个真正的 superuser.com 问题(并且因为这与开发环境有关,它肯定与编程相关,即使不完全是编程问题)
最佳答案
我能够自己解决这个问题,我不应该使用 openwrt-boardname-squashfs.img
但我必须使用 openwrt-architecture-uImage
图像,只包含内核,取 root.squashfs
和 openwrt-boardname.dtb
来自 build_dir
因为它们没有在 bin/
中复制目录。
之后,这些命令将正确显示板:
tftp 0xfc1e0000 openwrt-kilauea.dtb
tftp 0x400000 openwrt-ppc40x-uImage
tftp 0x200000 root.squashfs
setenv bootargs 'console=ttyS0,115200 root=/dev/mtdblock2 rw'
bootm 0x400000 - 0xfc1e0000
user
内存中的空间。
关于command-line - 如何让 uBoot 与 squashfs 一起工作/uBoot 中的 FDT 是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2135188/
我是一名优秀的程序员,十分优秀!