You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
simplesshd/res/xml/preferences.xml

38 lines
1.2 KiB

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