diff options
author | Lennart Poettering <lennart@poettering.net> | 2011-03-07 17:38:15 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2011-03-07 17:38:15 +0100 |
commit | c4b5a3d66fedaa872209920944800e173536f801 (patch) | |
tree | 7a231a4ad1d974fabb4e64c87a9822a4a384a15f /Makefile.am | |
parent | 7fc7012b8b54bdd6610d32649d4ee9c938a4843d (diff) |
mount: make /media a tmpfs
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/Makefile.am b/Makefile.am index 3d32df2e46..7bbdb24bd8 100644 --- a/Makefile.am +++ b/Makefile.am @@ -233,6 +233,7 @@ dist_systemunit_DATA = \ units/sys-kernel-security.mount \ units/var-lock.mount \ units/var-run.mount \ + units/media.mount \ units/hwclock-load.service \ units/hwclock-save.service \ units/remount-rootfs.service \ @@ -1226,12 +1227,14 @@ install-data-hook: fsck-root.service \ remount-rootfs.service \ var-run.mount \ - var-lock.mount && \ + var-lock.mount \ + media.mount && \ $(LN_S) ../systemd-remount-api-vfs.service systemd-remount-api-vfs.service && \ $(LN_S) ../fsck-root.service fsck-root.service && \ $(LN_S) ../remount-rootfs.service remount-rootfs.service && \ $(LN_S) ../var-run.mount var-run.mount && \ - $(LN_S) ../var-lock.mount var-lock.mount ) + $(LN_S) ../var-lock.mount var-lock.mount && \ + $(LN_S) ../media.mount media.mount ) ( cd $(DESTDIR)$(userunitdir) && \ rm -f shutdown.target sockets.target local-fs.target swap.target bluetooth.target printer.target sound.target && \ $(LN_S) $(systemunitdir)/shutdown.target shutdown.target && \ |