juechafun/05-原子化笔记本/MaixCam-自定义开机启动画面.md

31 lines
553 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
#复盘/3
## 一句话描述
[____修改开机画面____]
---
> 建议直接替换 SD卡 boot 内文件
## 核心定义
创建自定义图片替换 `/boot/logo.jpeg`
分辨率552x368
格式:.jpeg
## 最小实现代码
```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."
```