feat(coreos-base/bootengine): initial commit

This commit is contained in:
Brandon Philips 2013-07-16 10:11:26 -07:00
parent be4a7115b2
commit 915515ff14
3 changed files with 55 additions and 0 deletions

View File

@ -0,0 +1 @@
bootengine-0.0.1.ebuild

View File

@ -0,0 +1,27 @@
# Copyright (c) 2013 CoreOS Authors. All rights reserved.
# Distributed under the terms of the GNU General Public License v2
EAPI="4"
CROS_WORKON_COMMIT="c3e5455dd4b2ebb5f05f9203ddbe4e24c3af8ede"
CROS_WORKON_PROJECT="coreos/bootengine"
CROS_WORKON_LOCALNAME="bootengine"
CROS_WORKON_OUTOFTREE_BUILD=1
CROS_WORKON_REPO="git://github.com"
inherit cros-workon cros-debug cros-au
DESCRIPTION="CoreOS Bootengine"
SRC_URI=""
LICENSE="BSD"
SLOT="0"
KEYWORDS="amd64 x86"
DEPEND="
sys-kernel/dracut"
src_install() {
modules_dir=${D}/usr/lib/dracut/modules.d/
mkdir -p $modules_dir
cp -R dracut/80gptprio $modules_dir
}

View File

@ -0,0 +1,27 @@
# Copyright (c) 2013 CoreOS Authors. All rights reserved.
# Distributed under the terms of the GNU General Public License v2
EAPI="4"
CROS_WORKON_PROJECT="coreos/bootengine"
CROS_WORKON_LOCALNAME="bootengine"
CROS_WORKON_OUTOFTREE_BUILD=1
CROS_WORKON_REPO="git://github.com"
inherit cros-workon cros-debug cros-au
DESCRIPTION="CoreOS Bootengine"
SRC_URI=""
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~arm ~x86"
IUSE="32bit_au cros_host"
DEPEND="
sys-kernel/dracut"
src_install() {
modules_dir=${D}/usr/lib/dracut/modules.d/
mkdir -p $modules_dir
cp -R dracut/80gptprio $modules_dir
}