diff options
-rw-r--r-- | mdk-stage1/mount.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/mdk-stage1/mount.c b/mdk-stage1/mount.c index e4fd2ddd8..ca2a083de 100644 --- a/mdk-stage1/mount.c +++ b/mdk-stage1/mount.c @@ -155,7 +155,6 @@ int my_mount(char *dev, char *location, char *fs, int force_rw) struct stat buf; int rc; -#ifndef DISABLE_MEDIAS if (strcmp(fs, "nfs")) { rc = ensure_dev_exists(dev); if (rc != 0) { @@ -163,7 +162,6 @@ int my_mount(char *dev, char *location, char *fs, int force_rw) return -1; } } -#endif log_message("mounting %s on %s as type %s", dev, location, fs); |