mirror of
https://github.com/vincentmli/bpfire.git
synced 2026-04-25 18:32:57 +02:00
Add blootooth stack and experimental bluetooth cellphone/modem for red
This commit is contained in:
53
src/initscripts/init.d/bluetooth
Normal file
53
src/initscripts/init.d/bluetooth
Normal file
@@ -0,0 +1,53 @@
|
||||
#!/bin/sh
|
||||
# Begin $rc_base/init.d/bluetooth
|
||||
|
||||
# Based on sysklogd script from LFS-3.1 and earlier.
|
||||
# Rewritten by Gerard Beekmans - gerard@linuxfromscratch.org
|
||||
|
||||
. /etc/sysconfig/rc
|
||||
. $rc_functions
|
||||
|
||||
case "$1" in
|
||||
start)
|
||||
boot_mesg "Starting Bluetooth daemon..."
|
||||
loadproc /usr/sbin/hcid
|
||||
sleep 1
|
||||
|
||||
# The passkey-agent is only needed for pairing
|
||||
#boot_mesg "Starting Bluetooth passkey-agent..."
|
||||
#loadproc /usr/bin/passkey-agent --default 12345 &
|
||||
|
||||
# Bind rfcomm to a blootooth cellphone/modem
|
||||
#boot_mesg "Bind rfcomm0 to cellphone/modem..."
|
||||
#rfcomm bind /dev/rfcomm0 00:11:22:33:44:55 1
|
||||
#evaluate_retval
|
||||
;;
|
||||
|
||||
stop)
|
||||
#boot_mesg "Realease rfcomm0..."
|
||||
#rfcomm release rfcomm0
|
||||
#boot_mesg "Stopping Bluetooth passkey-agent..."
|
||||
#killproc /usr/bin/passkey-agent
|
||||
boot_mesg "Stopping Bluetooth daemon..."
|
||||
killproc /usr/sbin/hcid
|
||||
;;
|
||||
|
||||
restart)
|
||||
$0 stop
|
||||
sleep 1
|
||||
$0 start
|
||||
;;
|
||||
|
||||
status)
|
||||
statusproc /usr/sbin/hcid
|
||||
statusproc /usr/bin/passkey-agent
|
||||
|
||||
;;
|
||||
|
||||
*)
|
||||
echo "Usage: $0 {start|stop|restart|status}"
|
||||
exit 1
|
||||
;;
|
||||
esac
|
||||
|
||||
# End $rc_base/init.d/bluetooth
|
||||
45
src/initscripts/init.d/messagebus
Normal file
45
src/initscripts/init.d/messagebus
Normal file
@@ -0,0 +1,45 @@
|
||||
#!/bin/sh
|
||||
# Begin $rc_base/init.d/messagebus
|
||||
|
||||
# Based on sysklogd script from LFS-3.1 and earlier.
|
||||
# Rewritten by Gerard Beekmans - gerard@linuxfromscratch.org
|
||||
|
||||
#$LastChangedBy: dnicholson $
|
||||
#$Date: 2007-10-21 11:33:30 -0500 (Sun, 21 Oct 2007) $
|
||||
|
||||
. /etc/sysconfig/rc
|
||||
. $rc_functions
|
||||
|
||||
pidfile=/var/run/dbus/pid
|
||||
socket=/var/run/dbus/system_bus_socket
|
||||
|
||||
case "$1" in
|
||||
start)
|
||||
boot_mesg "Starting the D-Bus Messagebus Daemon..."
|
||||
/usr/bin/dbus-uuidgen --ensure
|
||||
loadproc -p "$pidfile" /usr/bin/dbus-daemon --system
|
||||
;;
|
||||
|
||||
stop)
|
||||
boot_mesg "Stopping the D-Bus Messagebus Daemon..."
|
||||
killproc -p "$pidfile" /usr/bin/dbus-daemon
|
||||
[ $? -eq 0 ] && rm -f "$socket"
|
||||
;;
|
||||
|
||||
restart)
|
||||
$0 stop
|
||||
sleep 1
|
||||
$0 start
|
||||
;;
|
||||
|
||||
status)
|
||||
statusproc -p $pidfile /usr/bin/dbus-daemon
|
||||
;;
|
||||
|
||||
*)
|
||||
echo "Usage: $0 {start|stop|restart|status}"
|
||||
exit 1
|
||||
;;
|
||||
esac
|
||||
|
||||
# End $rc_base/init.d/messagebus
|
||||
27
src/paks/dbus/install.sh
Normal file
27
src/paks/dbus/install.sh
Normal file
@@ -0,0 +1,27 @@
|
||||
#!/bin/bash
|
||||
############################################################################
|
||||
# #
|
||||
# This file is part of the IPFire Firewall. #
|
||||
# #
|
||||
# IPFire 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. #
|
||||
# #
|
||||
# IPFire 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 IPFire; if not, write to the Free Software #
|
||||
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA #
|
||||
# #
|
||||
# Copyright (C) 2007 IPFire-Team <info@ipfire.org>. #
|
||||
# #
|
||||
############################################################################
|
||||
#
|
||||
. /opt/pakfire/lib/functions.sh
|
||||
extract_files
|
||||
useradd messagebus
|
||||
start_service ${NAME}
|
||||
26
src/paks/dbus/uninstall.sh
Normal file
26
src/paks/dbus/uninstall.sh
Normal file
@@ -0,0 +1,26 @@
|
||||
#!/bin/bash
|
||||
############################################################################
|
||||
# #
|
||||
# This file is part of the IPFire Firewall. #
|
||||
# #
|
||||
# IPFire 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. #
|
||||
# #
|
||||
# IPFire 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 IPFire; if not, write to the Free Software #
|
||||
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA #
|
||||
# #
|
||||
# Copyright (C) 2007 IPFire-Team <info@ipfire.org>. #
|
||||
# #
|
||||
############################################################################
|
||||
#
|
||||
. /opt/pakfire/lib/functions.sh
|
||||
stop_service ${NAME}
|
||||
remove_files
|
||||
24
src/paks/dbus/update.sh
Normal file
24
src/paks/dbus/update.sh
Normal file
@@ -0,0 +1,24 @@
|
||||
#!/bin/bash
|
||||
############################################################################
|
||||
# #
|
||||
# This file is part of the IPFire Firewall. #
|
||||
# #
|
||||
# IPFire 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. #
|
||||
# #
|
||||
# IPFire 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 IPFire; if not, write to the Free Software #
|
||||
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA #
|
||||
# #
|
||||
# Copyright (C) 2007 IPFire-Team <info@ipfire.org>. #
|
||||
# #
|
||||
############################################################################
|
||||
#
|
||||
. /opt/pakfire/lib/functions.sh
|
||||
Reference in New Issue
Block a user