MyMobiler smt5600, typhoon, c500 skin - HTC Typhoon

MyMobiler smt5600, typhoon, c500 skin
Extract into the MyMobiler Skins DIR, and then modify mymobiler.ini to run the new Skin.
# ****************************************************************
# Mobiler Skin (skin file path)
#
# SkinFile=Skin\Skin.xml
# SkinFile=Skin\DefaultSkin.xml (Default)
#
# SkinFile=Skin\DefaultSkin.xml
# ****************************************************************
SkinFile=Skin\SMT5600\DefaultSkin.xml

Related

Shortcut to Bluetooth Activesync

Hello! Is there any way to put a direct shortcut to activesync via bluetooth?
I mean, not a shortcut to activesync then I need to click tools/connect overt bt. What I would like is a direct shortcut so when i click it it directly makes the connection.
Thx in advance for any advice =)
I don't know of such a commandline switch, but you could help yourself out with using a macro tool like MortRunner. There you can save a macro set including stylus taps etc.
This is how I did:
Make a shortcut to: \windows\repllog.exe
Open ActiveSync, tools, options, options.
Do the setting: "When cradled enable PC sync using this connection"
And choose "bluetooth".
Now run the shortcut you made earlier and your device should connect directly via bluetooth.
Mind though that if you connect your device via USB after making theese settings they will change back to USB and you will have to change them back manually again.
This is how I did:
Make a shortcut to: \windows\repllog.exe
Open ActiveSync, tools, options, options.
Do the setting: "When cradled enable PC sync using this connection"
And choose "bluetooth".
Now run the shortcut you made earlier and your device should connect directly via bluetooth.
Mind though that if you connect your device via USB after making theese settings they will change back to USB and you will have to change them back manually again.
Great!!! It works like a charm!!! I was searching for such a shortcut too.
Thanks a lot!
Bye,
Isidoro
Thanks, also. Graet idea... Congratulations
thx a lot for the hint! works like a charm! just perfect thx again!
thanks
MortScript Method
Here is a MortScript method. Obviously this is an old post and a WM 6.5 and 7 version would be nice. I don't have phones running those however. I hope I added enough documentation to this script that anyone can figure it out and post and update.
Code:
# BlueSync 1.0 by Xamfap, Free under the GNU General Public License.
#
# BlueSync makes two assumputions:
#
# A) You keep BlueTooth enabled on your Windows Mobile phone. With BlueTooth enabled
# and your device disconnected and set to undiscoverable you will not use extra
# battery power.
#
# B) You have already established a BlueTooth sync relationship with a PC.
#
#
# To use BlueSync:
#
# 1) Install MortScript to use this file.
#
# 2) Install This code in a text file on your WM 6.1 Device named
# \Windows\Start Menu\BlueSync.mscr
#
# 3) In the start menu you can now choose BlueSync to connect and
# disconnect your bluetooth device.
ErrorLevel( "Warn" )
my_program = "\Windows\Start Menu\Programs\ActiveSync.lnk"
# Verify the program or link exists.
#
If( NOT FileExists( my_program ) )
Message( "Could not find ActiveSync. Edit the my_program variable." )
Message( "Written for WM 6.1. Verify the Macro section is correct for you also." )
Exit
EndIf
# Launch ActiveSync if it is not already Running.
#
If( NOT WndExists( "ActiveSync" ) )
Run( my_program )
WaitFor( "ActiveSync", 5 )
If( NOT WndExists( "ActiveSync" ) )
Message( "ActiveSync did not launch after 5 Seconds. Giving up." )
Exit
EndIf
Minimize( "ActiveSync" )
EndIf
### MACRO SECTION ###
#
# It is likely that the use of Macros is not very portable and also not going to
# work at all in any future version of Windows Mobile when the menus are changed.
# For that reason I have included the docs on all Macros here so anyone can easily
# pick this up and modify it as needed:
#
# SendSpecial [ ( window title [ , Ctrl?, Shift? [, Alt? ] ] ) ]
# Activates the given window and sends the given
# special character. If no window title is given,
# the currently active window is used. Ctrl?,
# Shift?, and Alt? are switches for the
# corresponding keys. If the parameter is TRUE,
# the key is pressed with the special character.
# There are there special characters:
#
# CR.............................Carriage return
# Tab............................Tabulator
# Esc............................Escape
# Space..........................Space
# Backspace......................Remove character left to the
# cursor (”?”)
# Delete.........................Remove the character right to
# the cursor („Del“)
# Insert........................ "Ins.” (usually toggles between
# overwrite and insert mode)
# Up/Down/Left/Right.............Direction pad to the corresponding
# direction
# Home.......................... "Home“, to the beginning of the
# line or document
# End........................... "Ende, the the end of the line or
# document
# PageUp/PageDown................Page up / down
# LeftSoft/RightSoft.............Display buttons“ on Smartphones
# and PPCs since WM5
# Win............................"Windows“ key on Smartphones and
# PPCs since WM5 (Start menu)
# Context........................"Context menu“ on PCs and Smartphones
# /PPCs since WM5
#
# Examples:
#
# SendCR( "ERROR" )
# SendDown
# SendHome( "",0,1 ) (highlight to beginning of line)
#
#
#
# These are the Macros that trigger a bluetooth connect or disconnect
# on a phone with an existing BlueTooth Enabled Radio on WM 6.1
#
#
SendRightSoft( "ActiveSync" )
SendUp( "ActiveSync" )
SendCR( "ActiveSync" )
# Minimize ActiveSync as we've done our magic and want the Today Screen.
#
Minimize( "ActiveSync" )

Dropbear SSHD Ported!

No need to use telnet anymore, I ported dropbear sshd over. (Mostly just mangled up the authentication.)
I provide the patch with basically no support, and reserve the right to ridicule you if you ask stupid questions. (If I described something incorrectly or you have actual questions, thats different. But if you aren't comfortable cross-compiling code - or compiling it at all - then this is not for you.)
It isn't plug and play, its a patch to the dropbear shipped with the Android platform code and you are on your own getting it to cross-compile. (I used the sourcery pack.) My build is MULTICALL=1 STATIC=1 and includes dbclient, dropbear, dropbearkey. You'll want to set the root password in debug.h and follow the instructions in the patch.
Latest patch here: http://link.sigkill.net/dropbear-v1.1.patch
# A couple of hints for this script.
# debug.h - you want to set a password at the bottom
# I prefer to build STATIC=1 MULTICALL=1 but you can do what you want.
#
# It still checks /etc/shells so unfortunately you have to create that file
# and put your shell in it. (by default I use /system/bin/rootsh. Which you
# will want to create.)
# If you want key-based authentication, there's some additional prep work:
# /data/dropbear needs to be root:root 744 and
# /data/dropbear/.ssh root:root 700
# options.h | 30 +++++++++++++++---------------
# svr-auth.c | 34 +++++++++++++++++++++++++++++++++-
# svr-chansession.c | 2 ++
# 3 files changed, 50 insertions(+), 16 deletions(-)
Changelog: v1.1 initial public release
Plans:
v1.2 remove /etc/shells check
v? add configurable password
v? auto-create directories
THANK YOU!!

[Q] Ad-hoc on ZTE Blade

Hi
I've got a question. How to connect blade (on 2.2 froyo) to ad-hoc wirless?
Probably must change a "wpa_supplicant" file (and probably other's simmilar), but i don't know how
This is my "wpa_supplicant" (viewed by normal notepad) :
Code:
# Note: All file paths in this configuration file should use full (absolute,
# not relative to working directory) path in order to allow working directory
# to be changed. This can happen if wpa_supplicant is run in the background.
# Whether to allow wpa_supplicant to update (overwrite) configuration
#
# This option can be used to allow wpa_supplicant to overwrite configuration
# file whenever configuration is changed (e.g., new network block is added with
# wpa_cli or wpa_gui, or a password is changed). This is required for
# wpa_cli/wpa_gui to be able to store the configuration changes permanently.
# Please note that overwriting configuration file will remove the comments from
# it.
update_config=1
# global configuration (shared by all network blocks)
#
# Parameters for the control interface. If this is specified, wpa_supplicant
# will open a control interface that is available for external programs to
# manage wpa_supplicant. The meaning of this string depends on which control
# interface mechanism is used. For all cases, the existance of this parameter
# in configuration is used to determine whether the control interface is
# enabled.
#
# For UNIX domain sockets (default on Linux and BSD): This is a directory that
# will be created for UNIX domain sockets for listening to requests from
# external programs (CLI/GUI, etc.) for status information and configuration.
# The socket file will be named based on the interface name, so multiple
# wpa_supplicant processes can be run at the same time if more than one
# interface is used.
# /var/run/wpa_supplicant is the recommended directory for sockets and by
# default, wpa_cli will use it when trying to connect with wpa_supplicant.
#
# Access control for the control interface can be configured by setting the
# directory to allow only members of a group to use sockets. This way, it is
# possible to run wpa_supplicant as root (since it needs to change network
# configuration and open raw sockets) and still allow GUI/CLI components to be
# run as non-root users. However, since the control interface can be used to
# change the network configuration, this access needs to be protected in many
# cases. By default, wpa_supplicant is configured to use gid 0 (root). If you
# want to allow non-root users to use the control interface, add a new group
# and change this value to match with that group. Add users that should have
# control interface access to this group. If this variable is commented out or
# not included in the configuration file, group will not be changed from the
# value it got by default when the directory or socket was created.
#
# When configuring both the directory and group, use following format:
# DIR=/var/run/wpa_supplicant GROUP=wheel
# DIR=/var/run/wpa_supplicant GROUP=0
# (group can be either group name or gid)
#
ctrl_interface=DIR=/data/misc/wifi/wpa_supplicant GROUP=wifi
# IEEE 802.1X/EAPOL version
# wpa_supplicant is implemented based on IEEE Std 802.1X-2004 which defines
# EAPOL version 2. However, there are many APs that do not handle the new
# version number correctly (they seem to drop the frames completely). In order
# to make wpa_supplicant interoperate with these APs, the version number is set
# to 1 by default. This configuration value can be used to set it to the new
# version (2).
# eapol_version=1
# AP scanning/selection
# By default, wpa_supplicant requests driver to perform AP scanning and then
# uses the scan results to select a suitable AP. Another alternative is to
# allow the driver to take care of AP scanning and selection and use
# wpa_supplicant just to process EAPOL frames based on IEEE 802.11 association
# information from the driver.
# 1: wpa_supplicant initiates scanning and AP selection
# 0: driver takes care of scanning, AP selection, and IEEE 802.11 association
# parameters (e.g., WPA IE generation); this mode can also be used with
# non-WPA drivers when using IEEE 802.1X mode; do not try to associate with
# APs (i.e., external program needs to control association). This mode must
# also be used when using wired Ethernet drivers.
# 2: like 0, but associate with APs using security policy and SSID (but not
# BSSID); this can be used, e.g., with ndiswrapper and NDIS drivers to
# enable operation with hidden SSIDs and optimized roaming; in this mode,
# the network blocks in the configuration file are tried one by one until
# the driver reports successful association; each network block should have
# explicit security policy (i.e., only one option in the lists) for
# key_mgmt, pairwise, group, proto variables
# ap_scan=1
# EAP fast re-authentication
# By default, fast re-authentication is enabled for all EAP methods that
# support it. This variable can be used to disable fast re-authentication.
# Normally, there is no need to disable this.
# fast_reauth=1
# Driver interface parameters
# This field can be used to configure arbitrary driver interace parameters. The
# format is specific to the selected driver interface. This field is not used
# in most cases.
#driver_param="field=value"
# Maximum lifetime for PMKSA in seconds; default 43200
#dot11RSNAConfigPMKLifetime=43200
# Threshold for reauthentication (percentage of PMK lifetime); default 70
#dot11RSNAConfigPMKReauthThreshold=70
# Timeout for security association negotiation in seconds; default 60
#dot11RSNAConfigSATimeout=60
Sorry for my bad english.
I very needed internet in ad-hoc mode. So, anybody help me ?
wifi ad hoc is not supported by zte blade official rom even by changing wpa_supplicant this will crash your wifi.............
maybe the modded supplicant is not compatible with stock rom..........
change your rom to any cm7 and than change its wpa_supplicant to /system/bin than only the wifi adhoc will work

[Q] [help] I am trying to edit keylayout but no use

I am trying to edit keylayout for my PS3 bluetooth keyboard in my HTC HD2 Android 4.0.4 using tytung NexusHD2 ROM v2.9a
due to the Fn keys are simulate PS3 controler buttoms, i want to set the Fn+up, down, left, right as pgup, pgdn, home, end
i get the scancode as the code below using Testkey.apk
i write a file "Vendor_054c_Product_05af" according to my bluetooth keyboard in /proc/bus/input/devices
and i paste in /system/usr/keylayout and set permission -rw-r--r--
but it never works no matter i change
the keycode still catch the build-in Logitech, PS3 and XBOX controller keylayout
is anyone can help me out
Code:
# Copyright (C) 2011 The Android Open Source Project
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
# Sony Playstation(R)3 Bluetooth Wireless Keyboard with Pointing Stick
#
# key 0x124 DPAD_UP
# key 0x125 DPAD_RIGHT
# key 0x126 DPAD_DOWN
# key 0x127 DPAD_LEFT
key 0x124 PAGE_UP
key 0x125 MOVE_END
key 0x126 PAGE_DOWN
key 0x127 MOVE_HOME
# key 304 Square
# key 305 Cross
# key 306 Circle
# key 307 Triangle
# key 308 L1
# key 309 R1
# key 310 L2
# key 311 R2
# key 312 Select
# key 313 Start
# key 314 L3
# key 315 R3
# key 316 BUTTON_MODE
re
daviking222 said:
I am trying to edit keylayout for my PS3 bluetooth keyboard in my HTC HD2 Android 4.0.4 using tytung NexusHD2 ROM v2.9a
due to the Fn keys are simulate PS3 controler buttoms, i want to set the Fn+up, down, left, right as pgup, pgdn, home, end
i get the scancode as the code below using Testkey.apk
i write a file "Vendor_054c_Product_05af" according to my bluetooth keyboard in /proc/bus/input/devices
and i paste in /system/usr/keylayout and set permission -rw-r--r--
but it never works no matter i change
the keycode still catch the build-in Logitech, PS3 and XBOX controller keylayout
is anyone can help me out
Code:
# Copyright (C) 2011 The Android Open Source Project
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
# Sony Playstation(R)3 Bluetooth Wireless Keyboard with Pointing Stick
#
# key 0x124 DPAD_UP
# key 0x125 DPAD_RIGHT
# key 0x126 DPAD_DOWN
# key 0x127 DPAD_LEFT
key 0x124 PAGE_UP
key 0x125 MOVE_END
key 0x126 PAGE_DOWN
key 0x127 MOVE_HOME
# key 304 Square
# key 305 Cross
# key 306 Circle
# key 307 Triangle
# key 308 L1
# key 309 R1
# key 310 L2
# key 311 R2
# key 312 Select
# key 313 Start
# key 314 L3
# key 315 R3
# key 316 BUTTON_MODE
Click to expand...
Click to collapse
FpseCE
http://www.youtube.com/watch?v=mH_NBKtj0R8

LiME - Loadable Kernel Module (LKM)

Hi guys.
I have been trying to dump the memory ram of a Galaxy S5 (Au version).
I have a problem on the final step.
When I try to run insmod, it reports as follows:
insmod lime.ko “path=tcp:9999 format=lime”
insmod: init_module 'lime.ko' failed (Function not implemented)
The phone details:
- Galaxy S5
- Android version 5.0
- Baseband version: G900IDVU1BOJ2
- Chipset: MSM8974PRO-AC
I am using two platforms of Linux , neither of them work, (Kali Sana 2.0 and Ubuntu 15.10 Willy)
The version of the tools are as follows:
- Java = java-8-openjdk-amd64
- NDK = android-ndk-r11c
- SDK = Android Studio 2.0
- Cross Compiler = arm-linux-androideabi-4.9 (It comes with NDK) and I have tried with arm-eabi-4.6
The phone does not contain the /proc/config.gz, instead I found on the Samsung's website two versions for the same chipset in Australia, but neither with the same baseband (I don not if that affects). So the generate .config using the code source I ran:
make msm8974_sec_defconfig VARIANT_DEFCONFIG=msm8974pro_sec_klte_eur_defconfig SELINUX_DEFCONFIG=selinux_defconfig
#
# configuration written to .config
#
The makefile for Lime that I have been using is:
obj-m := lime.o
lime-objs := main.o tcp.o disk.o
KDIR_GOLD := /home/osboxes/workspace/Kernel
KVER := $(shell uname -r)
PWD := $(shell pwd)
CCPATH := /home/osboxes/workspace/arm-eabi/arm-eabi-4.6/bin
default:
# cross-compile for Android emulator
$(MAKE) ARCH=arm CROSS_COMPILE=$(CCPATH)/arm-eabi- -C $(KDIR_GOLD) M="$(PWD)" modules
$(CCPATH)/arm-eabi-strip --strip-unneeded lime.ko
# compile for local system
$(MAKE) -C /lib/modules/$(KVER)/build M="$(PWD)" modules
strip --strip-unneeded lime.ko
mv lime.ko lime-$(KVER).ko
$(MAKE) tidy
tidy:
rm -f *.o *.mod.c Module.symvers Module.markers modules.order \.*.o.cmd \.*.ko.cmd \.*.o.d
rm -rf \.tmp_versions
clean:
$(MAKE) tidy
rm -f *.ko
I appreciate any help in this matter.
PS. I will be trying more options

Categories

Resources