>From: Cooper Jr., Franklin >Sent: Monday, November 11, 2013 12:57 PM >To: Maupin, Chase; [email protected] >Subject: RE: [meta-arago] [PATCH 3/4] linaro-pm-qa-utils: Add >utils used by Linaro PM scripts > >The patch itself is fine. Is there a plan to upstream this to >meta-linaro?
Yeah. I'm pinging Denys about who to work with for this. > >> -----Original Message----- >> From: [email protected] [mailto:meta-arago- >> [email protected]] On Behalf Of Maupin, Chase >> Sent: Monday, November 11, 2013 11:07 AM >> To: [email protected] >> Subject: [meta-arago] [PATCH 3/4] linaro-pm-qa-utils: Add utils >used by Linaro >> PM scripts >> >> * The Linaro PM test scripts which have already been >incorporated >> into the ltp-ddt project depend on some utilities from the >> Linaro pm-qa project. >> * Build the utilities and install them into /usr/bin so they >> will be in the default PATH >> >> Signed-off-by: Chase Maupin <[email protected]> >> --- >> .../linaro-pm-qa/linaro-pm-qa-utils_git.bb | 32 >++++++++++++++++++++ >> 1 files changed, 32 insertions(+), 0 deletions(-) create mode >100644 meta- >> arago-extras/recipes-devtools/linaro-pm-qa/linaro-pm-qa- >utils_git.bb >> >> diff --git a/meta-arago-extras/recipes-devtools/linaro-pm- >qa/linaro-pm-qa- >> utils_git.bb b/meta-arago-extras/recipes-devtools/linaro-pm- >qa/linaro-pm-qa- >> utils_git.bb >> new file mode 100644 >> index 0000000..275b6e6 >> --- /dev/null >> +++ b/meta-arago-extras/recipes-devtools/linaro-pm-qa/linaro-pm- >qa-utils >> +++ _git.bb >> @@ -0,0 +1,32 @@ >> +DESCRIPTION = "Utilities from Linaro for testing Power >Management" >> +HOMEPAGE = >> >"https://wiki.linaro.org/WorkingGroups/PowerManagement/Resources/T >estSui >> te/PmQa" >> + >> +LICENSE = "GPLv2" >> +LIC_FILES_CHKSUM = >> "file://../COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263" >> + >> +PV = "0.4.4" >> +PR = "r0" >> + >> +BRANCH ?= "master" >> +SRCREV = "fbc2762359b863dfbf4fd0bab1e8abd2a6125ed4" >> + >> +SRC_URI = "git://git.linaro.org/tools/pm- >> qa.git;protocol=git;branch=${BRANCH}" >> + >> +S = "${WORKDIR}/git/utils" >> + >> +UTILS = "cpuburn cpucycle heat_cpu nanosleep" >> + >> +CFLAGS += "-pthread" >> + >> +do_compile () { >> + oe_runmake >> +} >> + >> +do_install () { >> + install -d ${D}${bindir} >> + >> + for util in ${UTILS} >> + do >> + install -m 0755 $util ${D}${bindir}/ >> + done >> +} >> -- >> 1.7.0.4 >> >> _______________________________________________ >> meta-arago mailing list >> [email protected] >> http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago _______________________________________________ meta-arago mailing list [email protected] http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago
