diff options
author | Lennart Poettering <lennart@poettering.net> | 2012-05-22 19:23:33 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2012-05-22 19:25:17 +0200 |
commit | 6b1dc2bd3cdb3bd932b0692be636ddd2879edb92 (patch) | |
tree | 2103f7daf0619c14f8da9be956f4ddbbe9309d51 /src/core/mount.h | |
parent | main: only fall back to /bin/sh in case /sbin/init does not exist (diff) | |
download | systemd-6b1dc2bd3cdb3bd932b0692be636ddd2879edb92.tar.gz systemd-6b1dc2bd3cdb3bd932b0692be636ddd2879edb92.tar.bz2 systemd-6b1dc2bd3cdb3bd932b0692be636ddd2879edb92.zip |
mount: replace PID1 internal fstab parser with generator
Bit by bit we should remove non-unit parsing from PID 1 and move into
generators, to clean up our code base a bit and clearly separate
parsers.
Diffstat (limited to 'src/core/mount.h')
-rw-r--r-- | src/core/mount.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/core/mount.h b/src/core/mount.h index 3153a2a99..ad9efc34d 100644 --- a/src/core/mount.h +++ b/src/core/mount.h @@ -75,11 +75,9 @@ struct Mount { char *where; - MountParameters parameters_etc_fstab; MountParameters parameters_proc_self_mountinfo; MountParameters parameters_fragment; - bool from_etc_fstab:1; bool from_proc_self_mountinfo:1; bool from_fragment:1; |