diff options
author | Adrian Dudau <adrian.dudau@enea.com> | 2016-06-10 12:34:38 +0200 |
---|---|---|
committer | Otavio Salvador <otavio@ossystems.com.br> | 2016-06-27 07:53:36 -0300 |
commit | 6b1e4442208ebf4ff28ff1ecbd918cf7490c2f4e (patch) | |
tree | cc3eaf86d0341c277b7cb17c319029a8e3123a07 /classes/fsl-kernel-localversion.bbclass | |
parent | 21b9f1e354d9df1b9a7381d4c11de42157eff2c0 (diff) | |
download | meta-freescale-6b1e4442208ebf4ff28ff1ecbd918cf7490c2f4e.tar.gz |
fsl-kernel-localversion: Configure kernel in a separate task
As it is implemented right now this class overwrites the .config file
making it impossible for any other layer to configure the kernel in a
.bbappend to the kernel recipe. By doing it in a separate task before
do_configure we ensure that recipe .bbappends can make further kernel
configurations in do_configure_prepend.
Signed-off-by: Adrian Dudau <adrian.dudau@enea.com>
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
Diffstat (limited to 'classes/fsl-kernel-localversion.bbclass')
-rw-r--r-- | classes/fsl-kernel-localversion.bbclass | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/classes/fsl-kernel-localversion.bbclass b/classes/fsl-kernel-localversion.bbclass index 1004e355..42c2b177 100644 --- a/classes/fsl-kernel-localversion.bbclass +++ b/classes/fsl-kernel-localversion.bbclass | |||
@@ -22,7 +22,7 @@ kernel_conf_variable() { | |||
22 | fi | 22 | fi |
23 | } | 23 | } |
24 | 24 | ||
25 | do_configure_prepend() { | 25 | do_preconfigure() { |
26 | echo "" > ${B}/.config | 26 | echo "" > ${B}/.config |
27 | CONF_SED_SCRIPT="" | 27 | CONF_SED_SCRIPT="" |
28 | 28 | ||
@@ -37,3 +37,4 @@ do_configure_prepend() { | |||
37 | printf "%s%s" +g $head > ${S}/.scmversion | 37 | printf "%s%s" +g $head > ${S}/.scmversion |
38 | fi | 38 | fi |
39 | } | 39 | } |
40 | addtask preconfigure before do_configure after do_patch | ||