summaryrefslogtreecommitdiffstats
path: root/host/cmake/debian/postinst.in
diff options
context:
space:
mode:
authorJosh Blum <josh@joshknows.com>2011-10-14 12:12:55 -0700
committerJosh Blum <josh@joshknows.com>2011-10-14 12:12:55 -0700
commit1eefd6f232241efcf678657dd638874c0f444c6f (patch)
tree861ffc8852d835d34ec03d7b8d66978e75628226 /host/cmake/debian/postinst.in
parentf817f6f1db02d8a0cd6698510a2094ebce3bd171 (diff)
downloaduhd-release_003_003_000.tar.gz
uhd-release_003_003_000.tar.bz2
uhd-release_003_003_000.zip
uhd: added post/pre un/install scripts for deb and rpm packagesrelease_003_003_000
Diffstat (limited to 'host/cmake/debian/postinst.in')
-rwxr-xr-xhost/cmake/debian/postinst.in22
1 files changed, 22 insertions, 0 deletions
diff --git a/host/cmake/debian/postinst.in b/host/cmake/debian/postinst.in
new file mode 100755
index 000000000..c5a15fe17
--- /dev/null
+++ b/host/cmake/debian/postinst.in
@@ -0,0 +1,22 @@
+#
+# Copyright 2011 Ettus Research LLC
+#
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation, either version 3 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program. If not, see <http://www.gnu.org/licenses/>.
+#
+
+if [ "$1" = "configure" ]; then
+ cp @CMAKE_INSTALL_PREFIX@/share/uhd/utils/uhd-usrp.rules /etc/udev/rules.d/uhd-usrp.rules
+ udevadm control --reload-rules
+ ldconfig
+fi