diff options
| author | Ting Liu <b28495@freescale.com> | 2015-01-13 18:27:37 +0800 |
|---|---|---|
| committer | Zhenhua Luo <zhenhua.luo@freescale.com> | 2015-01-14 10:44:02 +0800 |
| commit | e73628337d43671a166405d63f22e18f8f1edca8 (patch) | |
| tree | 08f9c1065c820b075c8e0f0fd6b19e8a5b4b972c | |
| parent | b98403bec88ad2be37b4f0174a5f60ddf7449b66 (diff) | |
| download | meta-freescale-e73628337d43671a166405d63f22e18f8f1edca8.tar.gz | |
auto-resp: add recipe
Signed-off-by: Ting Liu <b28495@freescale.com>
| -rw-r--r-- | meta-fsl-ppc/recipes-kernel/auto-resp/ar_git.bb | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/meta-fsl-ppc/recipes-kernel/auto-resp/ar_git.bb b/meta-fsl-ppc/recipes-kernel/auto-resp/ar_git.bb new file mode 100644 index 000000000..81a94a048 --- /dev/null +++ b/meta-fsl-ppc/recipes-kernel/auto-resp/ar_git.bb | |||
| @@ -0,0 +1,25 @@ | |||
| 1 | SUMMARY = "Auto Response Control Module" | ||
| 2 | LICENSE = "GPLv2 & BSD" | ||
| 3 | LIC_FILES_CHKSUM = "file://COPYING;md5=b5881ecf398da8a03a3f4c501e29d287" | ||
| 4 | |||
| 5 | inherit module | ||
| 6 | |||
| 7 | SRC_URI = "git://git.freescale.com/ppc/sdk/auto-resp.git;branch=sdk-v1.7.x" | ||
| 8 | SRCREV = "dbede76fb4020a370baa393f7c53af4c0db8f175" | ||
| 9 | |||
| 10 | S = "${WORKDIR}/git" | ||
| 11 | |||
| 12 | EXTRA_OEMAKE = "CROSS_COMPILE=${TARGET_PREFIX} SYSROOT=${STAGING_DIR_TARGET}" | ||
| 13 | export KERNEL_PATH | ||
| 14 | |||
| 15 | INHIBIT_PACKAGE_STRIP = "1" | ||
| 16 | |||
| 17 | do_install(){ | ||
| 18 | install -d ${D}/lib/modules/${KERNEL_VERSION} | ||
| 19 | install -d ${D}${bindir} | ||
| 20 | install -m 644 ${B}/bin/ar.ko ${D}/lib/modules/${KERNEL_VERSION}/ | ||
| 21 | cp -f ${S}/bin/ar_* ${D}${bindir}/ | ||
| 22 | } | ||
| 23 | |||
| 24 | FILES_${PN} += "${bindir}/" | ||
| 25 | |||
