diff options
author | John Klug <john.klug@multitech.com> | 2018-04-06 09:22:10 -0500 |
---|---|---|
committer | John Klug <john.klug@multitech.com> | 2018-04-06 09:22:10 -0500 |
commit | 3ba4e967bfd4ee137e19cde89d71349834a535d4 (patch) | |
tree | 03b6e439e782fdb1952771c400318094d79da443 /recipes-bsp/multitech/mts-io.inc | |
parent | e3fe22e86dd47ba32fc1b32cc4da747aa2584d57 (diff) | |
download | meta-multitech-atmel-3ba4e967bfd4ee137e19cde89d71349834a535d4.tar.gz meta-multitech-atmel-3ba4e967bfd4ee137e19cde89d71349834a535d4.tar.bz2 meta-multitech-atmel-3ba4e967bfd4ee137e19cde89d71349834a535d4.zip |
Put default module post-remove/post-install scripts into mts-io and vizzini IPK install/remove
Diffstat (limited to 'recipes-bsp/multitech/mts-io.inc')
-rw-r--r-- | recipes-bsp/multitech/mts-io.inc | 21 |
1 files changed, 19 insertions, 2 deletions
diff --git a/recipes-bsp/multitech/mts-io.inc b/recipes-bsp/multitech/mts-io.inc index 42edc5e..fa54024 100644 --- a/recipes-bsp/multitech/mts-io.inc +++ b/recipes-bsp/multitech/mts-io.inc @@ -99,6 +99,23 @@ fakeroot do_install_append_mtcap() { sed -i 's/ENABLED="yes"/ENABLED="no"/g' ${D}${sysconfdir}/default/radio-reset } -pkg_postins_${PN} () { - /sbin/depmod -a +# If we called our package kernel-module-mts-io, we would not need to do this. +# but since kernel-module is not in the package name, the kernel module class +# cannot find a package to place the post-install and post-remove script. +pkg_postinst_${PN} () { + if [ -z "$D" ]; then + depmod -a ${MLINUX_KERNEL_VERSION}${MLINUX_KERNEL_EXTRA_VERSION} + else + # image.bbclass will call depmodwrapper after everything is installed, + # no need to do it here as well + : + fi +} + +pkg_postrm_${PN} () { + if [ -z "$D" ]; then + depmod -a ${MLINUX_KERNEL_VERSION}${MLINUX_KERNEL_EXTRA_VERSION} + else + depmodwrapper -a -b $D ${MLINUX_KERNEL_VERSION}${MLINUX_KERNEL_EXTRA_VERSION} + fi } |