feat(coreos-base/oem-pxe): introduce the PXE oem

simple OEM for PXE. Simply has an oem-release file.
This commit is contained in:
Brandon Philips 2013-08-22 18:40:20 -07:00
parent 419ce7a477
commit ea08c8f2d3
2 changed files with 22 additions and 0 deletions

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
}