Use original file type when creating device nodes

This commit is contained in:
nonnymoose 2019-06-10 23:41:17 -05:00 committed by John Wu
parent 1d54c5144e
commit 8ebd9c8927
1 changed files with 1 additions and 1 deletions

View File

@ -311,7 +311,7 @@ static int bind_mount(const char *from, const char *to, bool log) {
#define mount_mirror(part, flag) { \
sscanf(line.data(), "%s %*s %s", buf, buf2); \
xstat(buf, &st); \
mknod(PARTBLK(part), S_IFBLK | 0600, st.st_rdev); \
mknod(PARTBLK(part), (st.st_mode & S_IFMT) | 0600, st.st_rdev); \
xmkdir(MIRRMNT(part), 0755); \
xmount(PARTBLK(part), MIRRMNT(part), buf2, flag, nullptr); \
VLOGI("mount", PARTBLK(part), MIRRMNT(part)); \