diff options
author | Phil Blundell <philb@gnu.org> | 2004-08-28 14:35:18 +0000 |
---|---|---|
committer | Phil Blundell <philb@gnu.org> | 2004-08-28 14:35:18 +0000 |
commit | ec8d26f5876a8da471c2f3c49c28aa84efb08c9c (patch) | |
tree | 93473914706040869cd310debc7cd6e0d5ca58fe /bluez-utils | |
parent | 127cc1bc1366e087b1bf79abb823a24410d42c9c (diff) |
move some files around
BKrev: 41309826vs_Ugvv0juEtQd3UtT19Aw
Diffstat (limited to 'bluez-utils')
-rw-r--r-- | bluez-utils/bluez-utils_2.9.oe | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/bluez-utils/bluez-utils_2.9.oe b/bluez-utils/bluez-utils_2.9.oe index 1ab710f6e0..05b9173512 100644 --- a/bluez-utils/bluez-utils_2.9.oe +++ b/bluez-utils/bluez-utils_2.9.oe @@ -3,18 +3,22 @@ SECTION = "libs" PRIORITY = "optional" DEPENDS = "bluez-libs" RPROVIDES = "bluez-pan bluez-sdp" -PR = "r1" +PR = "r2" SRC_URI = "http://bluez.sourceforge.net/download/bluez-utils-${PV}.tar.gz" EXTRA_OECONF = "--with-bluez-libs=${STAGING_LIBDIR} --with-bluez-includes=${STAGING_INCDIR}" +do_install_append() { + install -d ${D}/sbin ${D}/bin/ + mv ${D}${sbindir}/* ${D}/sbin/ + mv ${D}${bindir}/* ${D}/bin/ + rmdir ${D}${bindir} ${D}${sbindir} + chmod u+s ${D}/sbin/hciattach ${D}/sbin/hciconfig +} + inherit autotools update-rc.d INITSCRIPT_NAME = "bluetooth" INITSCRIPT_PARAMS = "defaults" -pgk_postinst() { -#!/bin/sh -chmod u+s /sbin/hciattach /sbin/hciconfig -} |