PPCGeeks Forums HTC Arrive HTC HD2 HTC Thunderbolt HTC Touch Pro 2 HTC Evo 4G HTC Evo 3D Samsung Galaxy S II Motorola Droid X Apple iPhone Blackberry
Go Back   PPCGeeks > Windows Mobile > WM HTC Devices > HTC Touch Pro 2 > Android On TP2
Register Community Search

Notices


Reply
 
LinkBack Thread Tools Display Modes
  #21 (permalink)  
Old 02-02-2011, 01:25 AM
highlandsun's Avatar
PPCGeeks Regular
Offline
Pocket PC: HTC G1, TP2
Carrier: T-Mobile
 
Join Date: Jan 2011
Posts: 86
Reputation: 240
highlandsun is keeping up the good workhighlandsun is keeping up the good workhighlandsun is keeping up the good work
Mentioned: 0 Post(s)
Tagged: 0 Thread(s)
Re: 1/30 patched rootfs: More working keyboard keys and classic home for Rhod210/400/

Quote:
Originally Posted by manekineko View Post
That's pretty puzzling to me. Can you bring up a regular Android app that has a text box, like Search, and try and press Alt-comma to bring up Sym? I double checked and it's already set to that.

Unfortunately, due to the way Google wrote Android, it's not possible to set Search to an Alt-'something else' key. It's either on its own keyboard key or nothing.

I assume everything else worked fine like home right?
Yep, everything else was great. And yeah, in a text box, Sym worked. Thanks.
Reply With Quote
This post has been thanked 1 times.
  #22 (permalink)  
Old 02-03-2011, 03:29 AM
F22's Avatar
F22
Lurker
Offline
Pocket PC: HTC Touch Pro 2
Carrier: T-Mobile
 
Join Date: Nov 2010
Posts: 15
Reputation: 110
F22 is keeping up the good workF22 is keeping up the good work
Mentioned: 0 Post(s)
Tagged: 0 Thread(s)
Shell Feature: Auto-Complete

Quote:
Originally Posted by manekineko View Post
Good idea! Uploaded a new version and added tab as fn-space for all supported devices.
Download

Unfortunately, this is less useful than I had hoped. Android keyboards don't have a tab key, so Android apps are too stupid to know what to do with it. Browser will actually type in a tab in a form instead of moving to the next field. Auto-complete doesn't work in terminal emulator.

I think if you use SSH though, it should work there. Let me know if it does or doesn't. That and maybe document editing ended up being the only thing it's really useful for I think.
Auto-complete, as well as command line editing and history are shell dependent. If you change your shell in the terminal emulator, assuming you have another installed, they will work. If you have titanium backup installed, you probably already have busybox's ash and don't even realize it. In that case you just need to tell the terminal emulator to use it. Typing sh at the shell prompt followed by enter works if ash is installed. To permanently make ash your default shell you can change /system/bin/shell to /bin/shell under the Command line option in the preferences menu of the terminal emulator app. If you don't have ash or another sufficiently robust shell installed (there is an android version of bash floating around on xda too), then you'll have to download one.

Last edited by F22; 02-03-2011 at 03:44 AM.
Reply With Quote
This post has been thanked 1 times.
  #23 (permalink)  
Old 02-03-2011, 03:39 AM
manekineko's Avatar
Regular 'Geeker
Offline
Pocket PC: Touch Pro 2
Carrier: Sprint
Threadstarter
 
Join Date: Jul 2009
Posts: 478
Reputation: 845
manekineko knows their stuffmanekineko knows their stuffmanekineko knows their stuffmanekineko knows their stuffmanekineko knows their stuffmanekineko knows their stuffmanekineko knows their stuff
Mentioned: 0 Post(s)
Tagged: 0 Thread(s)
Re: 1/30 patched rootfs: More working keyboard keys and classic home for Rhod210/400/

Quote:
Originally Posted by F22 View Post
Auto-complete, as well as command line editing and history are shell dependent. If you change your shell in the terminal emulator, assuming you have another installed, they will work. If you have titanium backup installed, you probably already have busybox's ash and don't even realize it.
Yowza, great tip, works like a charm! I don't even know how I was typing commands in the terminal emulator before without tab auto-complete!
Reply With Quote
  #24 (permalink)  
Old 02-07-2011, 02:15 PM
tekknogenius's Avatar
N00b
Offline
Pocket PC: HTC Touch Pro 2
Carrier: Sprint
 
Join Date: Feb 2010
Posts: 30
Reputation: 30
tekknogenius is just getting started
Mentioned: 0 Post(s)
Tagged: 0 Thread(s)
Re: 1/31 patched rootfs: More working keyboard keys and classic home for Rhod210/400/

This is great added functionality. Any chance of moddiing one of the kernels that has camera access? Thank you again.
Reply With Quote
  #25 (permalink)  
Old 02-07-2011, 03:00 PM
manekineko's Avatar
Regular 'Geeker
Offline
Pocket PC: Touch Pro 2
Carrier: Sprint
Threadstarter
 
Join Date: Jul 2009
Posts: 478
Reputation: 845
manekineko knows their stuffmanekineko knows their stuffmanekineko knows their stuffmanekineko knows their stuffmanekineko knows their stuffmanekineko knows their stuffmanekineko knows their stuff
Mentioned: 0 Post(s)
Tagged: 0 Thread(s)
Re: 1/31 patched rootfs: More working keyboard keys and classic home for Rhod210/400/

Quote:
Originally Posted by tekknogenius View Post
This is great added functionality. Any chance of moddiing one of the kernels that has camera access? Thank you again.
Thanks for the compliment!

I'm not involved in any kernel development so far, so probably not. What is it you'd like to see one of those kernels do?

XDAndroid work is basically in 3 parts:
1. Kernel coding development. This gets hardware working, and so is the most critical type of development at this stage, since we have so much hardware that isn't working right. This is the zImage and the module.
2. System coding development. This gets Android working right on top of hardware that is already working right, which is also very important. This is the system.ext2/rootfs.img.
3. High level system work. This is what people in WinMo refer to as cooking by the chefs, taking pre-existing stuff, and tweaking configurations and files (in system.ext2 or rootfs.img) and packaging it up without coding anything new. This is all that I've done so far.

The 3 parts are fairly independent from each other. So you can take my modified rootfs, and it works with any kernel you like, for example the camera-enabled test kernel.
Reply With Quote
  #26 (permalink)  
Old 02-08-2011, 04:33 PM
tekknogenius's Avatar
N00b
Offline
Pocket PC: HTC Touch Pro 2
Carrier: Sprint
 
Join Date: Feb 2010
Posts: 30
Reputation: 30
tekknogenius is just getting started
Mentioned: 0 Post(s)
Tagged: 0 Thread(s)
Re: 1/31 patched rootfs: More working keyboard keys and classic home for Rhod210/400/

Quote:
Originally Posted by manekineko View Post
Thanks for the compliment!

I'm not involved in any kernel development so far, so probably not. What is it you'd like to see one of those kernels do?

XDAndroid work is basically in 3 parts:
1. Kernel coding development. This gets hardware working, and so is the most critical type of development at this stage, since we have so much hardware that isn't working right. This is the zImage and the module.
2. System coding development. This gets Android working right on top of hardware that is already working right, which is also very important. This is the system.ext2/rootfs.img.
3. High level system work. This is what people in WinMo refer to as cooking by the chefs, taking pre-existing stuff, and tweaking configurations and files (in system.ext2 or rootfs.img) and packaging it up without coding anything new. This is all that I've done so far.

The 3 parts are fairly independent from each other. So you can take my modified rootfs, and it works with any kernel you like, for example the camera-enabled test kernel.
Thanks for the explanation. So I should be able to use one of the testing kernels without messing up the work you've done on the keys then, right?
Reply With Quote
  #27 (permalink)  
Old 02-08-2011, 04:36 PM
manekineko's Avatar
Regular 'Geeker
Offline
Pocket PC: Touch Pro 2
Carrier: Sprint
Threadstarter
 
Join Date: Jul 2009
Posts: 478
Reputation: 845
manekineko knows their stuffmanekineko knows their stuffmanekineko knows their stuffmanekineko knows their stuffmanekineko knows their stuffmanekineko knows their stuffmanekineko knows their stuff
Mentioned: 0 Post(s)
Tagged: 0 Thread(s)
Re: 1/31 patched rootfs: More working keyboard keys and classic home for Rhod210/400/

Quote:
Originally Posted by tekknogenius View Post
Thanks for the explanation. So I should be able to use one of the testing kernels without messing up the work you've done on the keys then, right?
Yep, my rootfs is compatible with any kernel.
Reply With Quote
  #28 (permalink)  
Old 02-09-2011, 11:07 PM
manekineko's Avatar
Regular 'Geeker
Offline
Pocket PC: Touch Pro 2
Carrier: Sprint
Threadstarter
 
Join Date: Jul 2009
Posts: 478
Reputation: 845
manekineko knows their stuffmanekineko knows their stuffmanekineko knows their stuffmanekineko knows their stuffmanekineko knows their stuffmanekineko knows their stuffmanekineko knows their stuff
Mentioned: 0 Post(s)
Tagged: 0 Thread(s)
Re: 2/9 patched rootfs: More working keyboard keys and classic home for Rhod210/400/5

Updated rootfs that incorporates the latest changes that fix the system server bug! Hooray!
Reply With Quote
  #29 (permalink)  
Old 02-09-2011, 11:32 PM
hongbao's Avatar
N00b
Offline
Pocket PC: HTC touch pro 2
Carrier: sprint
 
Join Date: Jan 2010
Posts: 23
Reputation: 10
hongbao is a n00b
Mentioned: 0 Post(s)
Tagged: 0 Thread(s)
Re: 2/9 patched rootfs: More working keyboard keys and classic home for Rhod210/400/5

Thanks, going to try it.
Reply With Quote
  #30 (permalink)  
Old 02-10-2011, 01:32 AM
tacotoy's Avatar
PPCGeeks Regular
Offline
Pocket PC: HTC Sensation 4G
Carrier: Sprint
Location: Denver
 
Join Date: Mar 2009
Posts: 160
Reputation: 95
tacotoy is becoming a great contributor
Mentioned: 0 Post(s)
Tagged: 0 Thread(s)
Re: 2/9 patched rootfs: More working keyboard keys and classic home for Rhod210/400/5

this works great, but i had to go and set my end key to sleep in spare parts. could this be caused since i already had spare parts set to home before and just loaded the rootfs file and booted with that configuration? aside from that great work


my only request would be copy and paste as key shortcuts, but thats just cause i have it set like that in winmo, tab is nice to have for ssh though
__________________
testing phones and impact drops in the field since '00
Reply With Quote
Reply

  PPCGeeks > Windows Mobile > WM HTC Devices > HTC Touch Pro 2 > Android On TP2


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


All times are GMT -4. The time now is 04:36 PM.


Powered by vBulletin® ©2000 - 2024, Jelsoft Enterprises Ltd.
Content Relevant URLs by vBSEO 3.6.0
©2012 - PPCGeeks.com