關(guān)于recovery更新相關(guān)的幾點(diǎn)總結(jié)記錄:
1、recovery升級的大致流程:
????????①編譯:執(zhí)行make otapackage
? ? ? ? ②.main system模式下,將升級包重名為update.zip寸宏,下載到/cache目錄下
? ? ? ? ③.創(chuàng)建文件/cache/recovery/command,并向command中寫入:--update_package=/cache/update.zip
? ? ? ??④終端執(zhí)行reboot recovery進(jìn)入recovery模式熊赖,也可以通過android上層調(diào)用函數(shù)android_reboot,并設(shè)置進(jìn)入recovery模式的代碼
? ? ? ? ⑤.系統(tǒng)重啟虑椎,進(jìn)入recovery模式震鹉,并啟動recovery進(jìn)程俱笛,該進(jìn)程會檢測/cache/recovery/command的內(nèi)容,然后升級update.zip传趾。
2迎膜、命令文件/cache/recovery/command:保存著Main system傳給Recovery的命令行,每一行就是一條命令浆兰,支持一下幾種的組合磕仅。
--send_intent=anystring ? //write the text out to recovery/intent
//在Recovery結(jié)束時在finish_recovery函數(shù)中將定義的intent字符串作為參數(shù)傳進(jìn)來,并寫入到/cache/recovery/intent中
--update_package=root:path
//verify install an OTA package file ? ??Main system將這條命令寫入時,代表系統(tǒng)需要升級簸呈,在進(jìn)入Recovery模式后榕订,
//將該文件中的命令讀取并寫入BCB中,然后進(jìn)行相應(yīng)的更新update.zip包的操作蜕便。
? ? ? ? ? ? ? ? --wipe_data ? ?//erase user data(and cache),then reboot劫恒。擦除用戶數(shù)據(jù)。擦除data分區(qū)時必須要擦除cache分區(qū)轿腺。
? ? ? ? ? ? ? ? --wipe_cache ? //wipe cache(but not user data),then reboot两嘴。擦除cache分區(qū)。
3族壳、recovery時分區(qū)相關(guān)需要與system主模式的分區(qū)號一致
位置:bootable/bootloader/uboot-imx/include/autoconf.mk
CONFIG_ANDROID_CACHE_PARTITION_MMC=12
CONFIG_ANDROID_RECOVERY_PARTITION_MMC=6
CONFIG_ANDROID_SYSTEM_PARTITION_MMC=5
CONFIG_ANDROID_RECOVERY_CMD_FILE="/recovery/command"
4憔辫、bootable/recovery/recovery.c修改
#LOCAL_MODULE_TAGS := eng
如果放開這行,將只會在eng版本軟件中有copy到/system/bin的動作
5仿荆、build/core/Makefile修改
$(INTERNAL_OTA_PACKAGE_TARGET): $(BUILT_TARGET_FILES_PACKAGE) $(DISTTOOLS)
??????? @echo "Package OTA: $@"
??????? $(hide) ./build/tools/releasetools/ota_from_target_files -v \
?????????? -p $(HOST_OUT) \
?????????? -k $(KEY_CERT_PAIR) \
?????????? -n \
-w \
-n在升級時是否不檢查時間戳贰您,缺省要檢查,即缺省情況下只能基于舊版本升級
?-w是否清除userdata分區(qū)
注:如果/cache/recovery/last_log中出現(xiàn)如下錯誤則說明升級包較舊導(dǎo)致終止執(zhí)行拢操,可以加上上面說的-n項(xiàng)
assert failed: !less_than_int(1397801920, getprop("ro.build.date.utc"))
6锦亦、recovery的log文件放在/cache/recovery/
last_install
last_locale:上次recovery使用的語言,如在更新時界面顯示的提示語的語種庐冯,英語、日語等
last_log:log
7坎穿、檢測命令文件/cache/recovery/command函數(shù)是int check_recovery_cmd_file(void)在如下文件中定義
"bootable/bootloader/uboot-imx/board/freescale/mx6q_sabresd/mx6q_sabresd.c"
8展父、recovery升級最終是通過執(zhí)行updater-script腳本來進(jìn)行的。下面是部分注釋供參考玲昧。
點(diǎn)擊(此處)折疊或打開
assert(getprop("ro.product.device")?==?"sabresd_6dq"?||
getprop("ro.build.product")?==?"sabresd_6dq");
//show_progress(frac,sec):frac表示進(jìn)度完成的數(shù)值栖茉,sec表示整個過程的總秒數(shù)。主要用與顯示UI上的進(jìn)度條孵延。
show_progress(0.500000,?0);
//format(fs_type,partition_type,location):fs_type吕漂,文件系統(tǒng)類型,取值一般為“yaffs2”或“ext4”尘应。Partition_type惶凝,分區(qū)類型吼虎,一般取值為“MTD”或則“EMMC”。主要用于格式化為指定的文件系統(tǒng)苍鲜。
format("ext4",?"EMMC",?"/dev/block/mmcblk0p5",?"0",?"/system");
//掛在一個文件系統(tǒng)/system到指定掛載點(diǎn)mmcblk0p5
mount("ext4",?"EMMC",?"/dev/block/mmcblk0p5",?"/system");
//package_extract_dir(src_path,destination_path):src_path思灰,要提取的目錄,destination_path目標(biāo)目錄混滔。作用:從升級包內(nèi)洒疚,提取目錄到指定的位置。
package_extract_dir("recovery",?"/system");//提取recovery
package_extract_dir("system",?"/system");//提取system
//創(chuàng)建符號鏈接
symlink("Roboto-Bold.ttf",?"/system/fonts/DroidSans-Bold.ttf");
symlink("Roboto-Regular.ttf",?"/system/fonts/DroidSans.ttf");
symlink("mksh",?"/system/bin/sh");
symlink("toolbox",?"/system/bin/cat",?"/system/bin/chmod",
"/system/bin/chown",?"/system/bin/cmp",?"/system/bin/cp",
"/system/bin/date",?"/system/bin/dd",?"/system/bin/df",
"/system/bin/dmesg",?"/system/bin/du",?"/system/bin/getevent",
"/system/bin/getprop",?"/system/bin/grep",?"/system/bin/hd",
"/system/bin/id",?"/system/bin/ifconfig",?"/system/bin/iftop",
"/system/bin/insmod",?"/system/bin/ioctl",?"/system/bin/ionice",
"/system/bin/kill",?"/system/bin/ln",?"/system/bin/log",
"/system/bin/ls",?"/system/bin/lsmod",?"/system/bin/lsof",
"/system/bin/md5",?"/system/bin/mkdir",?"/system/bin/mount",
"/system/bin/mv",?"/system/bin/nandread",?"/system/bin/netstat",
"/system/bin/newfs_msdos",?"/system/bin/notify",?"/system/bin/printenv",
"/system/bin/ps",?"/system/bin/reboot",?"/system/bin/renice",
"/system/bin/rm",?"/system/bin/rmdir",?"/system/bin/rmmod",
"/system/bin/route",?"/system/bin/schedtop",?"/system/bin/sendevent",
"/system/bin/setconsole",?"/system/bin/setprop",?"/system/bin/sleep",
"/system/bin/smd",?"/system/bin/start",?"/system/bin/stop",
"/system/bin/sync",?"/system/bin/top",?"/system/bin/touch",
"/system/bin/umount",?"/system/bin/uptime",?"/system/bin/vmstat",
"/system/bin/watchprops",
"/system/bin/wipe");
//設(shè)置文件或目錄權(quán)限
set_perm_recursive(0,?0,?0755,?0644,?"/system");
set_perm_recursive(0,?2000,?0755,?0755,?"/system/bin");
set_perm(0,?3003,?02750,?"/system/bin/netcfg");
set_perm(0,?3004,?02755,?"/system/bin/ping");
set_perm(0,?2000,?06750,?"/system/bin/run-as");
set_perm(1002,?1002,?0440,?"/system/etc/dbus.conf");
set_perm(1014,?2000,?0550,?"/system/etc/dhcpcd/dhcpcd-run-hooks");
set_perm(0,?2000,?0550,?"/system/etc/init.goldfish.sh");
set_perm(0,?0,?0544,?"/system/etc/install-recovery.sh");
set_perm_recursive(0,?0,?0755,?0555,?"/system/etc/ppp");
set_perm_recursive(0,?2000,?0755,?0644,?"/system/vendor");
set_perm(0,?0,?0644,?"/system/vendor/etc/audio_effects.conf");
set_perm_recursive(0,?2000,?0755,?0755,?"/system/xbin");
show_progress(0.200000,?0);
show_progress(0.200000,?10);
//將升級包中的boot.img文件寫入到/dev/block/mmcblk0p1
package_extract_file("boot.img",?"/dev/block/mmcblk0p1");
show_progress(0.100000,?0);
unmount("/system");
9坯屿、updater-script腳本是從python腳本build/tools/releasetools/ota_from_target_files中生成的油湖。
10、更新時的圖片顯示是在/android4.2-imx6/bootable/recovery/res/images下面
11领跛、Android recovery模式時界面顯示的文字是從png文本圖片中讀取的乏德。目錄也是在/android4.2-imx6/bootable/recovery/res/images
如果要顯示文字是需要從上層傳遞locale變量的。如果沒有設(shè)置或者不知如何設(shè)置(我就不知)隔节,可以直接修改bootable/recovery/recovery.cpp文件中l(wèi)ocale 定義時賦予初始值鹅经,如下表示英語_英國
char* locale = "en_GB"