嵌入式爱好者

嵌入式爱好者 门户 知识库 查看内容

xx18板子安卓系统下不用重新编译替换logo的方法

2021-11-1 15:44| 发布者: 倔强的土坷垃| 查看: 464| 评论: 0

类目:  >  知识库     文档编号: 567

打开device/nexell/s5p4418_drone/read_camera_env.sh文件,

@@ -6,3 +6,31 @@ if [ $? = 0 ];then

 else

  setprop persist.sys.camera_flag 0

 fi

在以上代码内容后添加如下内容


num=60

while [ $num -gt 0 ]

do

 if [ -f /storage/sdcard1/bootanimation.zip ] && [ -f /system/media/bootanimation.zip ];then

 cp /storage/sdcard1/bootanimation.zip /system/media/

 sync

 break

 else

 let num--

sleep 1

 fi

done


num=60

while [ $num -gt 0 ]

do

 if [ -f /storage/sdcard1/logo.bmp ] && [ -e /dev/block/mmcblk0p1 ];then

 mkdir /system/tmp

 mount -t ext4 /dev/block/mmcblk0p1 /system/tmp

 cp /storage/sdcard1/logo.bmp /system/tmp/

 sync

 break

 else

 let num--

 sleep 1

 fi

done

编译之后烧写,然后将要替换的logo图片和动态图片修改好名字放在SD卡中,插到板子上启动,等系统正常启动之后,拔掉SD卡重启,logo即可替换。


已解决

未解决

只是看看

最新评论

QQ|小黑屋| 飞凌嵌入式 ( 冀ICP备12004394号-1 )

GMT+8, 2025-1-9 20:28

Powered by Discuz! X3.4

© 2001-2013 Comsenz Inc.

返回顶部