当前位置: 移动技术网 > 移动技术>移动开发>Android > [Android][Recovery] Recovery下找不到sdcard路径

[Android][Recovery] Recovery下找不到sdcard路径

2018年11月02日  | 移动技术网移动技术  | 我要评论

做升级的时候,把更新包拷贝到sd卡中,然后调用接口进行重启升级

file update_file = new file("/sdcard/update.zip");
try {
    log.d("wow", "install " + update_file.getabsolutepath());
    recoverysystem.installpackage(getbasecontext(), update_file);
} catch (ioexception e) {
    e.printstacktrace();
}

之后进入recovery模式后报错:

supported api: 3
charge_status 3, charged 0, status 0, capacity 62
finding update package...
opening update package...
e:unknow volume for path [/storage/emulated/0/update.zip]
e:failed to map file
installation aborted.

说是找不到/storage/emulated/0这个路径?

因为上层用java写路径的时候,获取的是android的路径,我们知道,adb shell里面是有/sdcard的路径的,这个路径实际上并不是插入的sd卡路径,而是一个内置路径。

内置路径通过 ls -l 可以看到 /sdcard 的映射
lrwxrwxrwx 1 root root 21 1970-01-01 08:00 sdcard -> /storage/self/primary
也就是说下面几个路径是一样的
/sdcard/
/storage/emulated/0
/storage/self/primary

而外置sd卡路径是
/storage/0658-0900

所以,我们代码里写的是/sdcard但是传到recovery的路径就变成/storage/emulated/0了。

我们的需求是把升级包放到sdcard里面去,所以就需要修改recovery里的文件路径。

实际要做的就是把获得到的路径里面/storage/emulated/0替换成/sdcard即可:

recovery里面的sd卡路径就是/sdcard/

    if (update_package) {
        // for backwards compatibility on the cache partition only, if
        // we're given an old 'root' path "cache:foo", change it to
        // "/cache/foo".
        if (strncmp(update_package, "cache:", 6) == 0) {
            int len = strlen(update_package) + 10;
            char* modified_path = (char*)malloc(len);
            if (modified_path) {
                strlcpy(modified_path, "/cache/", len);
                strlcat(modified_path, update_package+6, len);
                printf("(replacing path \"%s\" with \"%s\")\n",
                       update_package, modified_path);
                update_package = modified_path;
            }
            else
                printf("modified_path allocation failed\n");
        } else if(strncmp(update_package, "/storage/emulated/0/", 20) == 0) {
            int len = strlen(update_package) + 20;
            char* modified_path = (char*)malloc(len);
            if (modified_path) {
                strlcpy(modified_path, "/sdcard/", len);
                strlcat(modified_path, update_package+20, len);
                printf("(replacing path \"%s\" with \"%s\")\n",
                       update_package, modified_path);
                update_package = modified_path;
            }
            else
                printf("modified_path allocation failed\n");
        }

ref

如对本文有疑问, 点击进行留言回复!!

相关文章:

验证码:
移动技术网