diff options
author | Javier Martinez Canillas <javier@dowhile0.org> | 2012-08-05 21:48:44 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-08-06 14:40:51 +0100 |
commit | c859717f522098e7c68df578d59011f68122dc2c (patch) | |
tree | d26d74a09ac3f56f526edef31a9e1d32f69d1079 /meta | |
parent | 8b94cd639c02bcc653312575592673c36df0ec92 (diff) | |
download | openembedded-core-c859717f522098e7c68df578d59011f68122dc2c.tar.gz openembedded-core-c859717f522098e7c68df578d59011f68122dc2c.tar.bz2 openembedded-core-c859717f522098e7c68df578d59011f68122dc2c.zip |
kernel.bbclass: use ${base_libdir} and ${sysconfdir} instead of /lib and /etc
It is considered good practice to use the build system provided
variables instead of directly specify hardcoded paths.
Signed-off-by: Javier Martinez Canillas <javier@dowhile0.org>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/classes/kernel.bbclass | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/meta/classes/kernel.bbclass b/meta/classes/kernel.bbclass index 1d8dff9ada..b434093561 100644 --- a/meta/classes/kernel.bbclass +++ b/meta/classes/kernel.bbclass @@ -109,10 +109,10 @@ kernel_do_install() { unset CFLAGS CPPFLAGS CXXFLAGS LDFLAGS MACHINE if (grep -q -i -e '^CONFIG_MODULES=y$' .config); then oe_runmake DEPMOD=echo INSTALL_MOD_PATH="${D}" modules_install - rm -f "${D}/lib/modules/${KERNEL_VERSION}/modules.order" - rm -f "${D}/lib/modules/${KERNEL_VERSION}/modules.builtin" - rm "${D}/lib/modules/${KERNEL_VERSION}/build" - rm "${D}/lib/modules/${KERNEL_VERSION}/source" + rm -f "${D}${base_libdir}/modules/${KERNEL_VERSION}/modules.order" + rm -f "${D}${base_libdir}/modules/${KERNEL_VERSION}/modules.builtin" + rm "${D}${base_libdir}/modules/${KERNEL_VERSION}/build" + rm "${D}${base_libdir}/modules/${KERNEL_VERSION}/source" else bbnote "no modules to install" fi @@ -127,8 +127,8 @@ kernel_do_install() { install -m 0644 .config ${D}/boot/config-${KERNEL_VERSION} install -m 0644 vmlinux ${D}/boot/vmlinux-${KERNEL_VERSION} [ -e Module.symvers ] && install -m 0644 Module.symvers ${D}/boot/Module.symvers-${KERNEL_VERSION} - install -d ${D}/etc/modules-load.d - install -d ${D}/etc/modprobe.d + install -d ${D}${sysconfdir}/modules-load.d + install -d ${D}${sysconfdir}/modprobe.d # # Support for external module building - create a minimal copy of the |