blob: ad6311089e0c98b5ff934795c43cc9714071c8f1 [file] [log] [blame]
# Copyright 2018 The Chromium OS Authors. All rights reserved.
# Distributed under the terms of the GNU General Public License v2
EAPI=7
CROS_WORKON_COMMIT="b05e4a6b92b2cfe608b6cd8d5d37168680fc080e"
CROS_WORKON_TREE=("52a8a8b6d3bbca5e90d4761aa308a5541d52b1bb" "2bd3f2208f90e7c6e42e1b037e211615995f768a" "e7dba8c91c1f3257c34d4a7ffff0ea2537aeb6bb")
CROS_WORKON_INCREMENTAL_BUILD="1"
CROS_WORKON_LOCALNAME="platform2"
CROS_WORKON_PROJECT="chromiumos/platform2"
CROS_WORKON_OUTOFTREE_BUILD=1
CROS_WORKON_SUBTREE="common-mk arc/container/sdcard .gn"
PLATFORM_SUBDIR="arc/container/sdcard"
inherit cros-workon platform
DESCRIPTION="Container to run Android's sdcard daemon."
HOMEPAGE="https://chromium.googlesource.com/chromiumos/platform2/+/master/arc/container/sdcard"
LICENSE="BSD-Google"
KEYWORDS="*"
IUSE="esdfs"
CONTAINER_DIR="/opt/google/containers/arc-sdcard"
RDEPEND="!esdfs? ( chromeos-base/arc-setup )"
DEPEND="${DEPEND}"
src_install() {
if ! use esdfs; then
insinto /etc/init
doins arc-sdcard.conf
fi
insinto "${CONTAINER_DIR}"
doins "${OUT}"/rootfs.squashfs
# Keep the parent directory of mountpoints inaccessible from non-root
# users because mountpoints themselves are often world-readable but we
# do not want to expose them.
# container-root is where the root filesystem of the container in which
# arc-obb-mounter daemon runs is mounted.
diropts --mode=0700 --owner=root --group=root
keepdir "${CONTAINER_DIR}"/mountpoints/
keepdir "${CONTAINER_DIR}"/mountpoints/container-root
}