Home | History | Annotate | Download | only in recovery

Lines Matching refs:fstab

38 static struct fstab *fstab = NULL;
47 fstab = fs_mgr_read_fstab("/etc/recovery.fstab");
48 if (!fstab) {
49 LOGE("failed to read /etc/recovery.fstab\n");
53 ret = fs_mgr_add_entry(fstab, "/tmp", "ramdisk", "ramdisk");
55 LOGE("failed to add /tmp entry to fstab\n");
56 fs_mgr_free_fstab(fstab);
57 fstab = NULL;
63 for (i = 0; i < fstab->num_entries; ++i) {
64 Volume* v = &fstab->recs[i];
72 return fs_mgr_get_entry_for_mount_point(fstab, path);
269 if (fstab == NULL) {
270 LOGE("can't set up install mounts: no fstab loaded\n");
273 for (int i = 0; i < fstab->num_entries; ++i) {
274 Volume* v = fstab->recs + i;