Finish post-fs simple mount

This commit is contained in:
topjohnwu
2017-05-04 02:39:53 +08:00
parent a31c1e8084
commit 05ed29133b
4 changed files with 59 additions and 18 deletions

View File

@ -267,6 +267,7 @@ int mkdir_p(const char *pathname, mode_t mode) {
int bind_mount(const char *from, const char *to) {
int ret = xmount(from, to, NULL, MS_BIND, NULL);
LOGD("bind_mount: %s -> %s\n", from, to);
LOGI("bind_mount: %s\n", to);
return ret;
}