juechafun/05-原子化笔记本/MaixCam-自定义开机启动画面.md
2026-01-14 21:37:35 +08:00

19 lines
474 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#领域/MaixCam
## 核心定义
创建自定义图片替换 `/boot/logo.jpeg`
分辨率552x368
格式:.jpeg
> 建议直接替换 boot 内文件
## 最小实现代码
```bash
# 上传 new_logo.jpeg 到 /root/new_logo.jpeg
echo "replace start"; \
rm /root/logo.jpeg ; rm /boot/logo.jpeg ; \
/boot/make_logo.sh /root/new_logo.jpeg /root/logo.jpeg ; \
cp /root/logo.jpeg /boot/logo.jpeg ; cp /root/logo.jpeg boot/maixcam_logo.jpeg ; reboot ; \
echo "replace done."
```