From: Erin Yueh Date: Tue, 2 Dec 2008 05:57:18 +0000 (+0800) Subject: obexpush_1.0.0.bb: add opd_args file to append arguments for starting X-Git-Tag: Release-2010-05/1~4566 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a8832b766416fe15aeeff2e939bf50ecf98b1a3b;p=openembedded.git obexpush_1.0.0.bb: add opd_args file to append arguments for starting opd --- diff --git a/packages/obexpush/files/opd_args b/packages/obexpush/files/opd_args new file mode 100644 index 0000000000..26afc0e249 --- /dev/null +++ b/packages/obexpush/files/opd_args @@ -0,0 +1 @@ +OPD_ARGS="--mode OBEX --path /var/obexpush --channel 10 --sdp --metadata" diff --git a/packages/obexpush/obexpush_1.0.0.bb b/packages/obexpush/obexpush_1.0.0.bb index 4ec591d262..cfc09df2b6 100644 --- a/packages/obexpush/obexpush_1.0.0.bb +++ b/packages/obexpush/obexpush_1.0.0.bb @@ -3,11 +3,12 @@ HOMEPAGE = "http://www.caside.lancs.ac.uk/java_bt.php" SECTION = "console/network" LICENSE = "GPL" DEPENDS = "glib-2.0 openobex bluez-libs" -PR = "r3" +PR = "r4" SRC_URI = "http://www.caside.lancs.ac.uk/bt/obexpush.tar.gz \ file://add-obextool.patch;patch=1 \ - file://init" + file://init \ + file://opd_args" S = "${WORKDIR}/obexpush" inherit update-rc.d @@ -41,6 +42,8 @@ do_install() { install -m 0755 opd/opd ${D}${sbindir} install -d ${D}${sysconfdir}/init.d + install -d ${D}${sysconfdir}/default install -m 0755 ${WORKDIR}/init ${D}${sysconfdir}/init.d/opd + install -m 0755 ${WORKDIR}/opd_args ${D}${sysconfdir}/default/opd_args }