Merge pull request #209 from philips/pxe-update-engine

feat(coreos-init): introduce pxe update_engine
This commit is contained in:
Brandon Philips 2013-09-10 21:27:44 -07:00
commit 997136c219
3 changed files with 15 additions and 1 deletions

View File

@ -2,7 +2,7 @@
# Distributed under the terms of the GNU General Public License v2
EAPI="4"
CROS_WORKON_COMMIT="a71fdb93c89d6f716f36c30ff79b7089f4a3f3f5"
CROS_WORKON_COMMIT="388aff6fdb0f8c58a31eb6b00ac3810d11046c27"
CROS_WORKON_PROJECT="coreos/update_engine"
CROS_WORKON_REPO="git://github.com"
@ -99,4 +99,11 @@ src_install() {
insinto /usr/include/chromeos/update_engine
doins update_engine.dbusserver.h
doins update_engine.dbusclient.h
# PXE
exeinto /usr/lib/coreos/
doexe "${S}"/pxe/pxe_update_engine
systemd_dounit "${S}"/pxe/pxe-update-engine.service
systemd_dounit "${S}"/pxe/pxe-update-engine.timer
systemd_enable_service default.target pxe-update-engine.timer
}

View File

@ -98,4 +98,11 @@ src_install() {
insinto /usr/include/chromeos/update_engine
doins update_engine.dbusserver.h
doins update_engine.dbusclient.h
# PXE
exeinto /usr/lib/coreos/
doexe "${S}"/pxe/pxe_update_engine
systemd_dounit "${S}"/pxe/pxe-update-engine.service
systemd_dounit "${S}"/pxe/pxe-update-engine.timer
systemd_enable_service default.target pxe-update-engine.timer
}