Merge pull request #172 from philips/pxe-initial

introduce the PXE oem
This commit is contained in:
Brandon Philips 2013-08-27 15:58:18 -07:00
commit 8143b5b5fd
4 changed files with 24 additions and 1 deletions

View File

@ -3,7 +3,7 @@
# Distributed under the terms of the GNU General Public License v2
EAPI="4"
CROS_WORKON_COMMIT="f9a49b44b9bc5e998d52205cc4b92085e4bf5828"
CROS_WORKON_COMMIT="63640b036616414c707a8f8e76a661192b90df44"
CROS_WORKON_PROJECT="coreos/init"
CROS_WORKON_LOCALNAME="init"
@ -47,4 +47,5 @@ src_install() {
systemd_enable_service default.target dhcpcd.service
systemd_enable_service default.target sshd-keygen.service
systemd_enable_service default.target sshd.socket
systemd_enable_service default.target ssh-key-proc-cmdline.service
}

View File

@ -0,0 +1,21 @@
# Copyright (c) 2013 CoreOS, Inc.. All rights reserved.
# Distributed under the terms of the GNU General Public License v2
EAPI=5
DESCRIPTION="OEM suite for PXE images"
HOMEPAGE=""
SRC_URI=""
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="amd64 x86"
IUSE=""
# no source directory
S="${WORKDIR}"
src_install() {
insinto "/"
doins ${FILESDIR}/oem-release || die
}