summaryrefslogtreecommitdiff
path: root/src/shared/base-filesystem.h
diff options
context:
space:
mode:
authorKay Sievers <kay@vrfy.org>2014-06-24 13:30:11 +0200
committerKay Sievers <kay@vrfy.org>2014-06-24 15:41:03 +0200
commit3577de7ac39c54821e1d1d946db65e109dfb94b2 (patch)
tree2bfdabbd233a5b1ce3685a033cde65e5d412f01e /src/shared/base-filesystem.h
parent96e264415033ef9b07c062850aed4cac316f20b8 (diff)
nspawn: create essential base directories at system bootup
This allows us to bootup a rootfs with a /usr directory only.
Diffstat (limited to 'src/shared/base-filesystem.h')
-rw-r--r--src/shared/base-filesystem.h24
1 files changed, 24 insertions, 0 deletions
diff --git a/src/shared/base-filesystem.h b/src/shared/base-filesystem.h
new file mode 100644
index 000000000..03201f708
--- /dev/null
+++ b/src/shared/base-filesystem.h
@@ -0,0 +1,24 @@
+/*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
+
+#pragma once
+
+/***
+ This file is part of systemd.
+
+ Copyright 2014 Kay Sievers
+
+ systemd is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published by
+ the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ systemd is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ Lesser General Public License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with systemd; If not, see <http://www.gnu.org/licenses/>.
+***/
+
+int base_filesystem_create(const char *root);