~ubuntu-branches/ubuntu/saucy/bcmwl/saucy

« back to all changes in this revision

Viewing changes to debian/bcmwl-kernel-source.prerm

  • Committer: Bazaar Package Importer
  • Author(s): Tim Gardner
  • Date: 2009-05-11 16:04:29 UTC
  • Revision ID: james.westby@ubuntu.com-20090511160429-lciigiqnpp0fpu2k
Tags: 5.10.91.9-2
Add src/lib/LICENSE.txt to copyright notice. 

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/sh
 
2
# Copyright (C) 2002-2005 Flavio Stanchina
 
3
# Copyright (C) 2005-2006 Aric Cyr
 
4
# Copyright (C) 2007-2008 Mario Limonciello
 
5
 
 
6
#DEBHELPER#
 
7
 
 
8
CVERSION=`dpkg-query -W -f='${Version}' bcmwl-kernel-source | awk -F "-" '{print $1}' | cut -d\: -f2`
 
9
case "$1" in
 
10
    remove|upgrade)
 
11
                echo "Removing all DKMS Modules"
 
12
                dkms remove -m bcmwl -v $CVERSION --all > /dev/null
 
13
                echo "Done."
 
14
        ;;
 
15
esac
 
16
 
 
17