diff options
| author | Otavio Salvador <otavio@ossystems.com.br> | 2015-07-15 17:14:27 -0300 |
|---|---|---|
| committer | Otavio Salvador <otavio@ossystems.com.br> | 2015-07-16 15:01:29 -0300 |
| commit | f8517afc7a5ada4538b3b7d397fa32586d57ffe5 (patch) | |
| tree | 79349f091306d1760fd4687e62336ffa8fb8c721 /recipes-bsp/rcw/rcw_git.bb | |
| parent | c92b415d653afc55f33b6b93fb9248193bfd4fa0 (diff) | |
| download | meta-freescale-f8517afc7a5ada4538b3b7d397fa32586d57ffe5.tar.gz | |
Move meta-fsl-arm content to layer root
The meta-fsl-arm is going to be used as the base for this layer. It
contains a clean history and allowing a more granullar set of changes.
This commit is just a rename of all contents of meta-fsl-arm
subdirectory to this layer's root, subsequent changes are based on top
of that.
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
Diffstat (limited to 'recipes-bsp/rcw/rcw_git.bb')
| -rw-r--r-- | recipes-bsp/rcw/rcw_git.bb | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/recipes-bsp/rcw/rcw_git.bb b/recipes-bsp/rcw/rcw_git.bb new file mode 100644 index 000000000..2a03309cc --- /dev/null +++ b/recipes-bsp/rcw/rcw_git.bb | |||
| @@ -0,0 +1,36 @@ | |||
| 1 | SUMMARY = "Reset Configuration Word" | ||
| 2 | DESCRIPTION = "Reset Configuration Word - hardware boot-time parameters for the QorIQ targets" | ||
| 3 | LICENSE = "BSD" | ||
| 4 | LIC_FILES_CHKSUM = "file://rcw.py;beginline=8;endline=28;md5=9ba0b28922dd187b06b6c8ebcfdd208e" | ||
| 5 | |||
| 6 | DEPENDS += "change-file-endianess-native" | ||
| 7 | |||
| 8 | inherit deploy | ||
| 9 | |||
| 10 | SRCBRANCH = "master" | ||
| 11 | SRCREV = "426f7a6535d93dac76f5125035e0938a85e778d2" | ||
| 12 | SRC_URI = "git://git.freescale.com/ppc/sdk/rcw.git;branch=${SRCBRANCH} \ | ||
| 13 | file://rcw-make-BOARDS-DESTDIR-overidable-in-Makefile.patch \ | ||
| 14 | " | ||
| 15 | |||
| 16 | S = "${WORKDIR}/git" | ||
| 17 | |||
| 18 | EXTRA_OEMAKE = "BOARDS=${@d.getVar('MACHINE', True).replace('-64b','')} DESTDIR=${D}/boot/rcw/" | ||
| 19 | |||
| 20 | do_install () { | ||
| 21 | oe_runmake install | ||
| 22 | } | ||
| 23 | |||
| 24 | do_deploy () { | ||
| 25 | install -d ${DEPLOYDIR}/rcw | ||
| 26 | cp -r ${D}/boot/rcw/* ${DEPLOYDIR}/rcw/ | ||
| 27 | } | ||
| 28 | addtask deploy after do_install | ||
| 29 | |||
| 30 | PACKAGES += "${PN}-image" | ||
| 31 | FILES_${PN}-image += "/boot" | ||
| 32 | |||
| 33 | ALLOW_EMPTY_${PN} = "1" | ||
| 34 | |||
| 35 | PACKAGE_ARCH = "${MACHINE_ARCH}" | ||
| 36 | COMPATIBLE_MACHINE = "(ls102xa)" | ||
