Loading cmds/appwidget/appwidget +2 −5 Original line number Diff line number Diff line #!/system/bin/sh # Script to start "appwidget" on the device, which has a very rudimentary shell. base=/system export CLASSPATH=$base/framework/appwidget.jar exec app_process $base/bin com.android.commands.appwidget.AppWidget "$@" export CLASSPATH=/system/framework/appwidget.jar exec app_process /system/bin com.android.commands.appwidget.AppWidget "$@" cmds/bmgr/bmgr +2 −7 Original line number Diff line number Diff line #!/system/bin/sh # Script to start "bmgr" on the device, which has a very rudimentary # shell. # base=/system export CLASSPATH=$base/framework/bmgr.jar exec app_process $base/bin com.android.commands.bmgr.Bmgr "$@" export CLASSPATH=/system/framework/bmgr.jar exec app_process /system/bin com.android.commands.bmgr.Bmgr "$@" cmds/content/content +2 −5 Original line number Diff line number Diff line #!/system/bin/sh # Script to start "content" on the device, which has a very rudimentary shell. base=/system export CLASSPATH=$base/framework/content.jar exec app_process $base/bin com.android.commands.content.Content "$@" export CLASSPATH=/system/framework/content.jar exec app_process /system/bin com.android.commands.content.Content "$@" cmds/hid/hid +2 −7 Original line number Diff line number Diff line #!/system/bin/sh # # Script to start "hid" on the device, which has a very rudimentary # shell. # base=/system export CLASSPATH=$base/framework/hid.jar # Preload the native portion libhidcommand_jni.so to bypass the dependency # checks in the Java classloader, which prohibit dependencies that aren't # listed in system/core/rootdir/etc/public.libraries.android.txt. export LD_PRELOAD=libhidcommand_jni.so exec app_process $base/bin com.android.commands.hid.Hid "$@" export CLASSPATH=/system/framework/hid.jar exec app_process /system/bin com.android.commands.hid.Hid "$@" cmds/input/input +2 −7 Original line number Diff line number Diff line #!/system/bin/sh # Script to start "input" on the device, which has a very rudimentary # shell. # base=/system export CLASSPATH=$base/framework/input.jar exec app_process $base/bin com.android.commands.input.Input "$@" export CLASSPATH=/system/framework/input.jar exec app_process /system/bin com.android.commands.input.Input "$@" Loading
cmds/appwidget/appwidget +2 −5 Original line number Diff line number Diff line #!/system/bin/sh # Script to start "appwidget" on the device, which has a very rudimentary shell. base=/system export CLASSPATH=$base/framework/appwidget.jar exec app_process $base/bin com.android.commands.appwidget.AppWidget "$@" export CLASSPATH=/system/framework/appwidget.jar exec app_process /system/bin com.android.commands.appwidget.AppWidget "$@"
cmds/bmgr/bmgr +2 −7 Original line number Diff line number Diff line #!/system/bin/sh # Script to start "bmgr" on the device, which has a very rudimentary # shell. # base=/system export CLASSPATH=$base/framework/bmgr.jar exec app_process $base/bin com.android.commands.bmgr.Bmgr "$@" export CLASSPATH=/system/framework/bmgr.jar exec app_process /system/bin com.android.commands.bmgr.Bmgr "$@"
cmds/content/content +2 −5 Original line number Diff line number Diff line #!/system/bin/sh # Script to start "content" on the device, which has a very rudimentary shell. base=/system export CLASSPATH=$base/framework/content.jar exec app_process $base/bin com.android.commands.content.Content "$@" export CLASSPATH=/system/framework/content.jar exec app_process /system/bin com.android.commands.content.Content "$@"
cmds/hid/hid +2 −7 Original line number Diff line number Diff line #!/system/bin/sh # # Script to start "hid" on the device, which has a very rudimentary # shell. # base=/system export CLASSPATH=$base/framework/hid.jar # Preload the native portion libhidcommand_jni.so to bypass the dependency # checks in the Java classloader, which prohibit dependencies that aren't # listed in system/core/rootdir/etc/public.libraries.android.txt. export LD_PRELOAD=libhidcommand_jni.so exec app_process $base/bin com.android.commands.hid.Hid "$@" export CLASSPATH=/system/framework/hid.jar exec app_process /system/bin com.android.commands.hid.Hid "$@"
cmds/input/input +2 −7 Original line number Diff line number Diff line #!/system/bin/sh # Script to start "input" on the device, which has a very rudimentary # shell. # base=/system export CLASSPATH=$base/framework/input.jar exec app_process $base/bin com.android.commands.input.Input "$@" export CLASSPATH=/system/framework/input.jar exec app_process /system/bin com.android.commands.input.Input "$@"