diff options
author | John Klug <john.klug@multitech.com> | 2018-04-19 12:01:39 -0500 |
---|---|---|
committer | John Klug <john.klug@multitech.com> | 2018-04-19 12:01:39 -0500 |
commit | bcf11e2b69790d54bd7604284ad6d7250954e0fc (patch) | |
tree | 90cd82d65b02a939c3faf3924640619911fa88e9 /recipes-kernel/rs9113/rs9113.inc | |
parent | 81195ee9a3646e96abbf433088ebda116b46f946 (diff) | |
download | meta-multitech-atmel-bcf11e2b69790d54bd7604284ad6d7250954e0fc.tar.gz meta-multitech-atmel-bcf11e2b69790d54bd7604284ad6d7250954e0fc.tar.bz2 meta-multitech-atmel-bcf11e2b69790d54bd7604284ad6d7250954e0fc.zip |
Add revision to rs9113 recipe.
Diffstat (limited to 'recipes-kernel/rs9113/rs9113.inc')
-rw-r--r-- | recipes-kernel/rs9113/rs9113.inc | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/recipes-kernel/rs9113/rs9113.inc b/recipes-kernel/rs9113/rs9113.inc index 891bc9c..2774b76 100644 --- a/recipes-kernel/rs9113/rs9113.inc +++ b/recipes-kernel/rs9113/rs9113.inc @@ -36,13 +36,9 @@ python do_fetch_prepend () { PV = gitversion PV += "-" try: - PV += d.getVar("MLINUX_KERNEL_VERSION",True) + PV += d.getVar("PR",True) except TypeError: - bb.fatal("MLINUX_KERNEL_VERSION missing from conf/local.conf, usually put there by setup.sh") - try: - PV += d.getVar("MLINUX_KERNEL_EXTRA_VERSION",True) - except TypeError: - bb.fatal("MLINUX_KERNEL_EXTRA_VERSION missing from conf/local.conf, usually put there by setup.sh") + bb.fatal("PR is missing from recipe") bb.note("PV is " + PV) @@ -87,4 +83,3 @@ python do_cleanall_prepend () { bb.note("About to delete " + DR) os.system("/bin/rm -rf " + DR) } - |