diff options
| author | Matthew McClintock <msm@freescale.com> | 2011-12-28 12:35:17 -0600 |
|---|---|---|
| committer | Matthew McClintock <msm@freescale.com> | 2011-12-28 12:46:03 -0600 |
| commit | 24b3d99c00244f87ca3d31b2ee00028d0c3ed812 (patch) | |
| tree | 024ade29886add1858689ca056347d51da93123d /recipes-tools | |
| parent | 3ce956c1013cfce4e19ed451924bb0f12598482b (diff) | |
| download | meta-fsl-ppc-24b3d99c00244f87ca3d31b2ee00028d0c3ed812.tar.gz | |
Initial add of rcw using public git
Signed-off-by: Matthew McClintock <msm@freescale.com>
Diffstat (limited to 'recipes-tools')
| -rw-r--r-- | recipes-tools/rcw/rcw_git.bb | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/recipes-tools/rcw/rcw_git.bb b/recipes-tools/rcw/rcw_git.bb new file mode 100644 index 0000000..1bb0b17 --- /dev/null +++ b/recipes-tools/rcw/rcw_git.bb | |||
| @@ -0,0 +1,34 @@ | |||
| 1 | DESCRIPTION = "Reset Control Words (RCW)" | ||
| 2 | SECTION = "rcw" | ||
| 3 | LICENSE = "BSD" | ||
| 4 | PR = "r1" | ||
| 5 | |||
| 6 | LIC_FILES_CHKSUM = " \ | ||
| 7 | file://p2041rdb/LICENSE;md5=96dd72f26e9bb861de5c76c60e35e1bc \ | ||
| 8 | file://p3041ds/LICENSE;md5=96dd72f26e9bb861de5c76c60e35e1bc \ | ||
| 9 | file://p3060qds/LICENSE;md5=96dd72f26e9bb861de5c76c60e35e1bc \ | ||
| 10 | file://p4080ds/LICENSE;md5=96dd72f26e9bb861de5c76c60e35e1bc \ | ||
| 11 | file://p5020ds/LICENSE;md5=96dd72f26e9bb861de5c76c60e35e1bc \ | ||
| 12 | " | ||
| 13 | |||
| 14 | # this package is specific to the machine itself | ||
| 15 | INHIBIT_DEFAULT_DEPS = "1" | ||
| 16 | PACKAGE_ARCH = "${MACHINE_ARCH}" | ||
| 17 | |||
| 18 | inherit deploy | ||
| 19 | |||
| 20 | SRCREV = "${AUTOREV}" | ||
| 21 | SRC_URI = "git://git.freescale.com/ppc/sdk/rcw.git" | ||
| 22 | |||
| 23 | S = "${WORKDIR}/git" | ||
| 24 | |||
| 25 | do_deploy () { | ||
| 26 | make install | ||
| 27 | |||
| 28 | M=`echo ${MACHINE} | sed s/-64b//g` | ||
| 29 | mkdir -p ${DEPLOY_DIR_IMAGE}/rcw | ||
| 30 | cp -r ${S}/${M}/${M} ${DEPLOY_DIR_IMAGE}/rcw | ||
| 31 | } | ||
| 32 | addtask deploy after do_install | ||
| 33 | |||
| 34 | ALLOW_EMPTY_${PN} = "1" | ||
