Loading... # 1. 开机无法引导 上述问题有可能来自于 /boot/grub/grub.cfg 文件,其内容入下: ``` set default="0" set timeout="0" set root='(hd0,gpt1)' menuentry "OpenWrt" { linux /boot/vmlinuz root=PARTUUID=652735a3-1ccc-0e03-30e8-37e24b0bed02 rootwait console=tty0 console=ttyS0,115200n8 noinitrd } ``` 报错提示来自于第三行的 set root='(hd0,gpt1)',如果启动时插了多个外接磁盘(U盘),那么用于启动 openwrt 的 U 盘并不一定被识别为 hd0,gpt1,因此会报错。 可以直接删除第三行添加一行: ``` search --no-floppy --part-uuid --set=root 652735a3-1ccc-0e03-30e8-37e24b0bed02 ``` <div class="tip inlineBlock error"> 上面 `652735a3-1ccc-0e03-30e8-37e24b0bed02` 为启动分区uuid,请填写自己的分区uuid。 </div> <div class="tip inlineBlock warning"> 可以直接修改刷机的时候打包的 `.img` 镜像。 </div> 最后修改:2021 年 11 月 15 日 © 允许规范转载 打赏 赞赏作者 支付宝微信 赞 如果觉得我的文章对你有用,请随意赞赏