petalinux如何修改uboot的bootargs
时间: 2024-06-18 13:03:28 浏览: 344
简单说说U-boot的修改
在Petalinux中,可以通过修改设备树中的chosen节点来修改uboot的bootargs。具体步骤如下:
1. 进入Petalinux项目的工程目录。
2. 执行命令:petalinux-config -c kernel,进入内核配置界面。
3. 在内核配置界面中,选择Device Tree Settings,然后选择User Customization Options。
4. 在User Customization Options中,选择Customize Device Tree。
5. 在Device Tree中,找到chosen节点,修改其中的bootargs属性即可。
6. 修改完成后,保存退出内核配置界面。
7. 执行命令:petalinux-build,重新编译Petalinux项目。
8. 执行命令:petalinux-package --boot --fsbl ./images/linux/zynqmp_fsbl.elf --u-boot --kernel --add images/linux/rootfs.jffs2 --offset 0x01180000 --add ./images/linux/boot.scr --offset 0x01f80000 --force,生成新的BOOT.bin文件。
阅读全文