View Single Post
Old 03-14-2018, 07:09 AM   #13
rola25
Junior Member
rola25 is faster than a rolling 'o,' stronger than silent 'e,' and leaps capital 'T' in a single bound!rola25 is faster than a rolling 'o,' stronger than silent 'e,' and leaps capital 'T' in a single bound!rola25 is faster than a rolling 'o,' stronger than silent 'e,' and leaps capital 'T' in a single bound!rola25 is faster than a rolling 'o,' stronger than silent 'e,' and leaps capital 'T' in a single bound!rola25 is faster than a rolling 'o,' stronger than silent 'e,' and leaps capital 'T' in a single bound!rola25 is faster than a rolling 'o,' stronger than silent 'e,' and leaps capital 'T' in a single bound!rola25 is faster than a rolling 'o,' stronger than silent 'e,' and leaps capital 'T' in a single bound!rola25 is faster than a rolling 'o,' stronger than silent 'e,' and leaps capital 'T' in a single bound!rola25 is faster than a rolling 'o,' stronger than silent 'e,' and leaps capital 'T' in a single bound!rola25 is faster than a rolling 'o,' stronger than silent 'e,' and leaps capital 'T' in a single bound!rola25 is faster than a rolling 'o,' stronger than silent 'e,' and leaps capital 'T' in a single bound!
 
Posts: 4
Karma: 50492
Join Date: Oct 2017
Device: Kindle Voyage
Hi

Quick and dirty serial console to kindle:

1. Create RUNME.sh with following content:

Code:
#!/bin/sh

# Unload Mass Storage Gadget Module
modprobe -r g_file_storage
# Load Serial Gadget Module
modprobe g_serial

# Infinite Loop for getty
while true; do
  getty -L 115200 -i -n -l /bin/bash /dev/ttyGS0
  sleep 1
done
2. Disconnect from USB
3. run ;log runme
4. Connect USB-Port to Computer, it is now recognised as new Serial Device
5. Open devmgmt.msc on Windows, Search for Serial Port Number in Ports (e.g. COM8)
6. Connect with Putty to Serial COM8 Speed 115200
7. After use you have to kill the RUNME.sh script in Terminal because it loops itself the getty process
8. If you want Mass Storage again, reboot kindle


Greetings from Austria
rola25

Last edited by rola25; 03-14-2018 at 07:20 AM.
rola25 is offline   Reply With Quote