summaryrefslogtreecommitdiffstats
path: root/import-layers/yocto-poky/meta/recipes-core/volatile-binds/files
diff options
context:
space:
mode:
authorDave Cobbley <david.j.cobbley@linux.intel.com>2018-08-14 10:05:37 -0700
committerBrad Bishop <bradleyb@fuzziesquirrel.com>2018-08-22 21:26:31 -0400
commiteb8dc40360f0cfef56fb6947cc817a547d6d9bc6 (patch)
treede291a73dc37168da6370e2cf16c347d1eba9df8 /import-layers/yocto-poky/meta/recipes-core/volatile-binds/files
parent9c3cf826d853102535ead04cebc2d6023eff3032 (diff)
downloadtalos-openbmc-eb8dc40360f0cfef56fb6947cc817a547d6d9bc6.tar.gz
talos-openbmc-eb8dc40360f0cfef56fb6947cc817a547d6d9bc6.zip
[Subtree] Removing import-layers directory
As part of the move to subtrees, need to bring all the import layers content to the top level. Change-Id: I4a163d10898cbc6e11c27f776f60e1a470049d8f Signed-off-by: Dave Cobbley <david.j.cobbley@linux.intel.com> Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
Diffstat (limited to 'import-layers/yocto-poky/meta/recipes-core/volatile-binds/files')
-rw-r--r--import-layers/yocto-poky/meta/recipes-core/volatile-binds/files/COPYING.MIT17
-rwxr-xr-ximport-layers/yocto-poky/meta/recipes-core/volatile-binds/files/mount-copybind34
-rw-r--r--import-layers/yocto-poky/meta/recipes-core/volatile-binds/files/volatile-binds.service.in19
3 files changed, 0 insertions, 70 deletions
diff --git a/import-layers/yocto-poky/meta/recipes-core/volatile-binds/files/COPYING.MIT b/import-layers/yocto-poky/meta/recipes-core/volatile-binds/files/COPYING.MIT
deleted file mode 100644
index 7e7d57413..000000000
--- a/import-layers/yocto-poky/meta/recipes-core/volatile-binds/files/COPYING.MIT
+++ /dev/null
@@ -1,17 +0,0 @@
-Permission is hereby granted, free of charge, to any person obtaining a copy
-of this software and associated documentation files (the "Software"), to deal
-in the Software without restriction, including without limitation the rights
-to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
-copies of the Software, and to permit persons to whom the Software is
-furnished to do so, subject to the following conditions:
-
-The above copyright notice and this permission notice shall be included in all
-copies or substantial portions of the Software.
-
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
-SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
-DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
-OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR
-THE USE OR OTHER DEALINGS IN THE SOFTWARE.
diff --git a/import-layers/yocto-poky/meta/recipes-core/volatile-binds/files/mount-copybind b/import-layers/yocto-poky/meta/recipes-core/volatile-binds/files/mount-copybind
deleted file mode 100755
index 2aeaf84dd..000000000
--- a/import-layers/yocto-poky/meta/recipes-core/volatile-binds/files/mount-copybind
+++ /dev/null
@@ -1,34 +0,0 @@
-#!/bin/sh
-#
-# Perform a bind mount, copying existing files as we do so to ensure the
-# overlaid path has the necessary content.
-
-if [ $# -lt 2 ]; then
- echo >&2 "Usage: $0 spec mountpoint [OPTIONS]"
- exit 1
-fi
-
-spec=$1
-mountpoint=$2
-
-if [ $# -gt 2 ]; then
- options=$3
-else
- options=
-fi
-
-[ -n "$options" ] && options=",$options"
-
-mkdir -p "${spec%/*}"
-if [ -d "$mountpoint" ]; then
- if [ ! -d "$spec" ]; then
- mkdir "$spec"
- cp -pPR "$mountpoint"/. "$spec/"
- fi
-elif [ -f "$mountpoint" ]; then
- if [ ! -f "$spec" ]; then
- cp -pP "$mountpoint" "$spec"
- fi
-fi
-
-mount -o "bind$options" "$spec" "$mountpoint"
diff --git a/import-layers/yocto-poky/meta/recipes-core/volatile-binds/files/volatile-binds.service.in b/import-layers/yocto-poky/meta/recipes-core/volatile-binds/files/volatile-binds.service.in
deleted file mode 100644
index b23355a71..000000000
--- a/import-layers/yocto-poky/meta/recipes-core/volatile-binds/files/volatile-binds.service.in
+++ /dev/null
@@ -1,19 +0,0 @@
-[Unit]
-Description=Bind mount volatile @where@
-DefaultDependencies=false
-Before=local-fs.target
-RequiresMountsFor=@whatparent@ @whereparent@
-ConditionPathIsReadWrite=@whatparent@
-ConditionPathExists=@where@
-ConditionPathIsReadWrite=!@where@
-
-[Service]
-Type=oneshot
-RemainAfterExit=Yes
-StandardOutput=syslog
-TimeoutSec=0
-ExecStart=/sbin/mount-copybind @what@ @where@
-ExecStop=/bin/umount @where@
-
-[Install]
-WantedBy=local-fs.target
OpenPOWER on IntegriCloud