diff options
author | 2018-02-08 14:25:08 +0100 | |
---|---|---|
committer | 2018-02-08 14:25:08 +0100 | |
commit | 019fbc9e359ab310a381a6b2ce5e40a759b2f5e4 (patch) | |
tree | a34718942d0218adfe6fb87f364c022d6f9da8b3 | |
parent | e7f5ed54026827152a3ece4173d5f8e942a99395 (diff) | |
parent | 20e678ed0e3454ad079c80f8930d8f4c4d86a80e (diff) | |
download | meta-qcom-019fbc9e359ab310a381a6b2ce5e40a759b2f5e4.tar.gz meta-qcom-019fbc9e359ab310a381a6b2ce5e40a759b2f5e4.tar.bz2 meta-qcom-019fbc9e359ab310a381a6b2ce5e40a759b2f5e4.zip |
Merge pull request #60 from rsalveti/sd-600eval
Firmware qcom fixes for sd-600eval
-rw-r--r-- | recipes-bsp/firmware/firmware-qcom-sd-600eval_1.0.bb | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/recipes-bsp/firmware/firmware-qcom-sd-600eval_1.0.bb b/recipes-bsp/firmware/firmware-qcom-sd-600eval_1.0.bb index c4199c6..c92ad0c 100644 --- a/recipes-bsp/firmware/firmware-qcom-sd-600eval_1.0.bb +++ b/recipes-bsp/firmware/firmware-qcom-sd-600eval_1.0.bb @@ -1,4 +1,4 @@ -DESCRIPTION = "QCOM Firmware for DragonBoard 410c" +DESCRIPTION = "QCOM Firmware for Arrow SD 600eval" LICENSE = "Proprietary" LIC_FILES_CHKSUM = "file://license.txt;md5=c09af6bc68c68f92e6a711634ee5cb14" @@ -17,12 +17,12 @@ do_compile() { } do_install() { - install -d ${D}/lib/firmware/ - cp -a * ${D}/lib/firmware/ + install -d ${D}${nonarch_base_libdir}/firmware/ + cp -a * ${D}${nonarch_base_libdir}/firmware/ install -d ${D}${sysconfdir}/ install -m 0644 license.txt ${D}${sysconfdir}/ } -FILES_${PN} += "/lib/firmware/*" +FILES_${PN} += "${nonarch_base_libdir}/firmware/*" INSANE_SKIP_${PN} += "arch" |