author | aquadran <aquadran> | 2006-01-08 12:35:44 (UTC) |
---|---|---|
committer | aquadran <aquadran> | 2006-01-08 12:35:44 (UTC) |
commit | 2664267708d5ed695151bf0ec9376080e7bf617e (patch) (side-by-side diff) | |
tree | a3f7b8b7164478d70e70258363e828f8bedfb341 | |
parent | d795d596af30d2856544b960d37e779659c324a6 (diff) | |
download | opie-2664267708d5ed695151bf0ec9376080e7bf617e.zip opie-2664267708d5ed695151bf0ec9376080e7bf617e.tar.gz opie-2664267708d5ed695151bf0ec9376080e7bf617e.tar.bz2 |
added support for asus mypal 716 in bluepingplugin
-rw-r--r-- | noncore/securityplugins/blueping/bluepingplugin.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/noncore/securityplugins/blueping/bluepingplugin.cpp b/noncore/securityplugins/blueping/bluepingplugin.cpp index 1c514e5..05c26ba 100644 --- a/noncore/securityplugins/blueping/bluepingplugin.cpp +++ b/noncore/securityplugins/blueping/bluepingplugin.cpp @@ -170,24 +170,28 @@ int BluepingPlugin::authenticate() { odebug << "Bluetooth is not running, we must start it now" << oendl; OProcess startB; switch ( ODevice::inst()->model() ) { case Model_iPAQ_H39xx: startB << "/sbin/hciattach" << "/dev/tts/1" << "bcsp" << "921600"; break; case Model_iPAQ_H5xxx: startB << "/sbin/hciattach" << "/dev/tts/1" << "any" << "921600"; break; + case Model_MyPal_716: + startB << "/sbin/hciattach" << "/dev/ttyS1" << "bcsp" << "921600"; + break; + default: startB << "/sbin/hciattach" << "/dev/ttySB0" << "bcsp" << "230400"; break; } // end switch on device models if ( !startB.start(OProcess::Block) ) { oerr << "could not start Bluetooth" << oendl; return MultiauthPluginObject::Skip; } else { if ( (startB.normalExit()) && (startB.exitStatus() == 0) ) |