diff options
author | Stefan Christ <s.christ@phytec.de> | 2015-06-03 11:18:11 +0200 |
---|---|---|
committer | Otavio Salvador <otavio@ossystems.com.br> | 2015-06-10 12:10:09 -0300 |
commit | 2735f6a5d95bff8f43111ace582ada5917f8f9e0 (patch) | |
tree | 36fc227c2bd0c63b90f220f012db7b20a5cdd8de | |
parent | 9c6411154c76d40f76fc5155300a6ddf75d2e221 (diff) | |
download | meta-fsl-arm-2735f6a5d95bff8f43111ace582ada5917f8f9e0.tar.gz |
fsl-eula-unpack: fix deploying EULA
If a recipe, which uses the fsl-eula-unpack bbclass, defines the
variable LIC_FILES_CHKSUM like
LIC_FILES_CHKSUM = "[...]"
(not using "+=") the content of ${FSL_EULA_FILE}, which is added in
fsl-eula-unpack, is overwritten. So the EULA isn't deployed to the
${LICENSE_DIRECTORY}.
Using 'LIC_FILES_CHKSUM_append' should work in any cases.
Signed-off-by: Stefan Christ <s.christ@phytec.de>
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
-rw-r--r-- | classes/fsl-eula-unpack.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/classes/fsl-eula-unpack.bbclass b/classes/fsl-eula-unpack.bbclass index daab9e2..a9f16ef 100644 --- a/classes/fsl-eula-unpack.bbclass +++ b/classes/fsl-eula-unpack.bbclass | |||
@@ -6,7 +6,7 @@ | |||
6 | # | 6 | # |
7 | # SRC_URI = "${FSL_MIRROR}/firmware-imx-${PV};fsl-eula=true" | 7 | # SRC_URI = "${FSL_MIRROR}/firmware-imx-${PV};fsl-eula=true" |
8 | 8 | ||
9 | LIC_FILES_CHKSUM += "file://${FSL_EULA_FILE};md5=acdb807ac7275fe32f9f64992e111241" | 9 | LIC_FILES_CHKSUM_append = " file://${FSL_EULA_FILE};md5=acdb807ac7275fe32f9f64992e111241" |
10 | LIC_FILES_CHKSUM[vardepsexclude] += "FSL_EULA_FILE" | 10 | LIC_FILES_CHKSUM[vardepsexclude] += "FSL_EULA_FILE" |
11 | 11 | ||
12 | python fsl_bin_do_unpack() { | 12 | python fsl_bin_do_unpack() { |