Remove unused code
This commit is contained in:
parent
12fda29280
commit
4f4f54a059
@ -101,17 +101,8 @@ void RootFSInit::setup_rootfs() {
|
|||||||
munmap(addr, size);
|
munmap(addr, size);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Handle legacy overlays
|
|
||||||
int fd = open("/overlay", O_RDONLY | O_CLOEXEC);
|
|
||||||
if (fd >= 0) {
|
|
||||||
LOGD("Merge overlay folder\n");
|
|
||||||
mv_dir(fd, root);
|
|
||||||
close(fd);
|
|
||||||
rmdir("/overlay");
|
|
||||||
}
|
|
||||||
|
|
||||||
// Handle overlays
|
// Handle overlays
|
||||||
fd = open("/overlay.d", O_RDONLY | O_CLOEXEC);
|
int fd = open("/overlay.d", O_RDONLY | O_CLOEXEC);
|
||||||
if (fd >= 0) {
|
if (fd >= 0) {
|
||||||
LOGD("Merge overlay.d\n");
|
LOGD("Merge overlay.d\n");
|
||||||
load_overlay_rc(fd);
|
load_overlay_rc(fd);
|
||||||
|
Loading…
Reference in New Issue
Block a user