1
0
mirror of http://galexander.org/git/simplesshd.git synced 2024-11-27 09:48:08 +00:00
simplesshd/res/xml/preferences.xml

34 lines
1.1 KiB
XML
Raw Normal View History

2014-12-17 23:38:39 +00:00
<?xml version="1.0" encoding="utf-8"?>
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">
<CheckBoxPreference
android:key="onboot"
2014-12-17 23:52:22 +00:00
android:title="Start on Boot"
2014-12-17 23:38:39 +00:00
android:defaultValue="false" />
<EditTextPreference
android:key="port"
2014-12-17 23:52:22 +00:00
android:title="Port Number"
android:summary="Must be greater than 1024."
2014-12-17 23:38:39 +00:00
android:numeric="integer"
android:defaultValue="2222" />
<EditTextPreference
android:key="path"
2014-12-17 23:52:22 +00:00
android:title="SSH Path"
android:summary="Location of misc dropbear files (put authorized_keys here)."
2014-12-17 23:38:39 +00:00
android:defaultValue="/sdcard/ssh" />
<EditTextPreference
android:key="shell"
2014-12-17 23:52:22 +00:00
android:title="Login Shell"
android:summary="Location of sh binary"
2014-12-17 23:38:39 +00:00
android:defaultValue="/system/bin/sh" />
<EditTextPreference
android:key="home"
2014-12-17 23:52:22 +00:00
android:title="Home Directory"
android:summary="Default directory after login (put .profile here)"
2014-12-17 23:38:39 +00:00
android:defaultValue="/sdcard/ssh" />
<EditTextPreference
android:key="extra"
2014-12-17 23:52:22 +00:00
android:title="Extra Commandline"
android:summary="Commandline options for dropbear server"
2014-12-17 23:38:39 +00:00
android:defaultValue="" />
</PreferenceScreen>