diff options
author | John Klug <john.klug@multitech.com> | 2016-11-11 17:23:22 -0600 |
---|---|---|
committer | John Klug <john.klug@multitech.com> | 2016-11-11 17:23:22 -0600 |
commit | 8fa996e48e946c01d5ef0f2540d53cc364c2c907 (patch) | |
tree | 8bfd53a54c69400d6db6662bc680e8b360793979 /recipes-kernel | |
parent | e27bfd67df0d435dfe06424373a0036029dc1c02 (diff) | |
download | meta-multitech-8fa996e48e946c01d5ef0f2540d53cc364c2c907.tar.gz meta-multitech-8fa996e48e946c01d5ef0f2540d53cc364c2c907.tar.bz2 meta-multitech-8fa996e48e946c01d5ef0f2540d53cc364c2c907.zip |
ignore checksum errors, and move MT IP into recipe.3.2.1
Diffstat (limited to 'recipes-kernel')
-rw-r--r-- | recipes-kernel/rs9113/rs9113_1.5.0.bb | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/recipes-kernel/rs9113/rs9113_1.5.0.bb b/recipes-kernel/rs9113/rs9113_1.5.0.bb index 1e770e9..a2f28c9 100644 --- a/recipes-kernel/rs9113/rs9113_1.5.0.bb +++ b/recipes-kernel/rs9113/rs9113_1.5.0.bb @@ -4,6 +4,7 @@ LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/Proprietary;md5=0557f9d92cf58f2 PACKAGE_ARCH = "mtcdt" PROVIDES = "rs9113" FILES_${PN} = "/opt/rs9113 ${sbindir} ${sysconfdir}" +# BB_STRICT_CHECKSUM = "0" # NOTE: annex-client binary is built with Jenkin's job using annex-client-from-src.bb # To update this, manually copy ipk from Jenkin's job to .net/downloads/ @@ -14,11 +15,12 @@ SRC_URI = "http://akbar:8080/job/rs9113/lastSuccessfulBuild/artifact/mlinux/buil file://rs9113/wpa_supplicant \ " -SRC_URI[md5sum] = "3e2a36fc3fb32164820863fcde02c787" -SRC_URI[sha256sum] = "f676c3f0814563ff1bb0f982dcd1fb55bd50b571594992000bbfad7bdec08a3a" - M = "${WORKDIR}/rs9113" +python do_fetch_prepend () { + d.setVar('BB_STRICT_CHECKSUM',False) +} + do_install() { bbnote "pwd,ls: $(pwd) $(ls) WORKDIR is ${WORKDIR}" ( @@ -33,4 +35,5 @@ do_install() { install -m 0755 ${M}/wpa_supplicant ${D}/opt/rs9113/init.d install -m 0755 ${M}/rs9113.init ${D}${sysconfdir}/init.d/rs9113 install -m 0644 ${M}/rs9113.default ${D}${sysconfdir}/default/rs9113 -}
\ No newline at end of file +} + |