Bug#380159: kernel modules postinst script -- update templates to use dh_installmodules instead

2006-07-27 Thread Junichi Uekawa
Package: module-assistant Version: 0.10.6 Hi, #!/bin/sh set -e SYSTEMMAP=/boot/System.map-_KVERS_ if [ -f $SYSTEMMAP ] ; then depmod -ae -F $SYSTEMMAP _KVERS_ elif [ `uname -r` = _KVERS_ ] ; then depmod -a fi As of debhelper 5.0.37,

Re: kernel modules postinst script

2006-07-23 Thread Kel Modderman
Hi, Bernd wrote: #!/bin/sh set -e SYSTEMMAP=/boot/System.map-_KVERS_ if [ -f $SYSTEMMAP ] ; then depmod -ae -F $SYSTEMMAP _KVERS_ elif [ `uname -r` = _KVERS_ ] ; then depmod -a fi As of debhelper 5.0.37, dh_installmodules uses the System.map for the target kernel as

kernel modules postinst script

2006-07-22 Thread Bernd Schubert
Hi, while I just build some kernel module packages for our clients and installing them, I think I found a bug applying to almost all kernel module packages. Most packages have a file like postinst.modules.in with something like #!/bin/sh set -e if [ `uname -r` = _KVERS_ ] ; then depmod -a

Re: kernel modules postinst script

2006-07-22 Thread Eduard Bloch
#include hallo.h * Bernd Schubert [Sat, Jul 22 2006, 03:55:03PM]: Hi, while I just build some kernel module packages for our clients and installing them, I think I found a bug applying to almost all kernel module packages. Most packages have a file like postinst.modules.in with something