diff options
author | Roy Li <rongqing.li@windriver.com> | 2016-01-28 14:08:48 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-01-29 18:14:57 +0000 |
commit | 13cedd57ad4a449b749c29d30bb499c1c073a680 (patch) | |
tree | 1062c9f0e8d10d019e1142bcf751bd3e80720f22 /meta/recipes-kernel | |
parent | ae64dc3af8c49ef53ab3e847f7761cf5e59c5998 (diff) | |
download | openembedded-core-13cedd57ad4a449b749c29d30bb499c1c073a680.tar.gz openembedded-core-13cedd57ad4a449b749c29d30bb499c1c073a680.tar.bz2 openembedded-core-13cedd57ad4a449b749c29d30bb499c1c073a680.zip |
kexec: package kdump init script/configuration file correctly
kdump init script/configuration files are under ${sysconfdir}, not ${sysconfig}
and should be packaged into kdump sub-package
Signed-off-by: Roy Li <rongqing.li@windriver.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Diffstat (limited to 'meta/recipes-kernel')
-rw-r--r-- | meta/recipes-kernel/kexec/kexec-tools_2.0.11.bb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/recipes-kernel/kexec/kexec-tools_2.0.11.bb b/meta/recipes-kernel/kexec/kexec-tools_2.0.11.bb index 8ca6f27d81..c1c97af9e8 100644 --- a/meta/recipes-kernel/kexec/kexec-tools_2.0.11.bb +++ b/meta/recipes-kernel/kexec/kexec-tools_2.0.11.bb @@ -18,9 +18,9 @@ PACKAGES =+ "kexec kdump vmcore-dmesg" ALLOW_EMPTY_${PN} = "1" RRECOMMENDS_${PN} = "kexec kdump vmcore-dmesg" -FILES_${PN} =+ "${sysconfig}/init.d/kdump ${sysconfig}/sysconfig/kdump.conf" FILES_kexec = "${sbindir}/kexec" -FILES_kdump = "${sbindir}/kdump" +FILES_kdump = "${sbindir}/kdump ${sysconfdir}/init.d/kdump \ + ${sysconfdir}/sysconfig/kdump.conf" FILES_vmcore-dmesg = "${sbindir}/vmcore-dmesg" inherit update-rc.d |