From: Ben Pfaff Date: Mon, 18 Jun 2012 16:33:23 +0000 (-0700) Subject: debian: Make DKMS automatically build for running kernel. X-Git-Url: http://git.onelab.eu/?p=sliver-openvswitch.git;a=commitdiff_plain;h=54748397eca5809551ace2ea1d1e3f7cc9e1ee02 debian: Make DKMS automatically build for running kernel. By default DKMS doesn't build on demand for each kernel booted or updated. Adding AUTOINSTALL=yes gives it this behavior. Based on a small sample of Debian packages and how-to guides for Ubuntu, AUTOINSTALL=yes is what most packages use and what users expect. Fix-suggested-by: Kirill Kabardin Reported-by: Ralf Heiringhoff Reported-at: https://bugs.launchpad.net/bugs/962189 Signed-off-by: Ben Pfaff --- diff --git a/AUTHORS b/AUTHORS index 10a01ab39..7bd8ae224 100644 --- a/AUTHORS +++ b/AUTHORS @@ -118,6 +118,7 @@ Jeongkeun Lee jklee@hp.com Joan Cirer joan@ev0.net John Galgay john@galgay.net Kevin Mancuso kevin.mancuso@rackspace.com +Kirill Kabardin Koichi Yagishita yagishita.koichi@jrc.co.jp Krishna Miriyala krishna@nicira.com Luca Falavigna dktrkranz@debian.org @@ -137,6 +138,7 @@ Paul Ingram paul@nicira.com Paulo Cravero pcravero@as2594.net Peter Balland peter@nicira.com Peter Phaal peter.phaal@inmon.com +Ralf Heiringhoff ralf@frosty-geek.net Ram Jothikumar rjothikumar@nicira.com Ramana Reddy gtvrreddy@gmail.com Rob Sherwood rob.sherwood@bigswitch.com diff --git a/debian/dkms.conf.in b/debian/dkms.conf.in index eaf05417e..0d3db76ff 100644 --- a/debian/dkms.conf.in +++ b/debian/dkms.conf.in @@ -7,3 +7,4 @@ BUILT_MODULE_LOCATION[0]=datapath/linux/ BUILT_MODULE_LOCATION[1]=datapath/linux/ DEST_MODULE_LOCATION[0]=/kernel/drivers/net/openvswitch/ DEST_MODULE_LOCATION[1]=/kernel/drivers/net/openvswitch/ +AUTOINSTALL=yes