mirror of
git://git.yoctoproject.org/poky
synced 2026-09-26 14:16:56 +00:00
It's not necessary to specify the protocol parameter when it's the default protocol for the fetcher, e.g. the default protocol for git fetcher it git, "protocol=git" isn't needed. (From OE-Core rev: a2bab241c64428d5109c3c5ac5de4463fbad70c5) Signed-off-by: Jackie Huang <jackie.huang@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
24 lines
530 B
BlitzBasic
24 lines
530 B
BlitzBasic
require oprofileui.inc
|
|
|
|
SRCREV = "f168b8bfdc63660033de1739c6ddad1abd97c379"
|
|
PV = "0.0+git${SRCPV}"
|
|
|
|
S = "${WORKDIR}/git"
|
|
|
|
SRC_URI = "git://git.yoctoproject.org/oprofileui \
|
|
file://init"
|
|
|
|
EXTRA_OECONF += "--disable-client --enable-server"
|
|
|
|
RDEPENDS_${PN} = "oprofile"
|
|
|
|
do_install_append() {
|
|
install -d ${D}${sysconfdir}/init.d
|
|
install -m 0755 ${WORKDIR}/init ${D}${sysconfdir}/init.d/oprofileui-server
|
|
}
|
|
|
|
INITSCRIPT_NAME = "oprofileui-server"
|
|
INITSCRIPT_PARAMS = "start 999 5 2 . stop 20 0 1 6 ."
|
|
|
|
inherit update-rc.d
|