Close
Advertise Here
Results 1 to 5 of 5
  1. #1
    OUYA Developer Eldon.McGuinness's Avatar
    Join Date
    Oct 2013
    Location
    www.Progressivethink.in
    Posts
    1,236


    Permanently Enable ADB Over Network

    Here is a quick way to keep ADB over network a viable option, instead of having to turn it on over and over.


    1. Connect to the ouya via ADB (network or usb)
    2. Open a command prompt and open a shell to the OUYA
      Code:
      adb shell
    3. Gain admin rights
      Code:
      su
    4. Mount the filesystem as Read/Write
      Code:
      mount -o rw,remount -t ext4 /dev/block/platform/sdhci-tegra.3/by-name/APP
    5. Add the network option
      Code:
      echo service.adb.tcp.port=5555 >> /system/build.prop
    6. Mount the filesystem as Read Only
      Code:
      mount -o ro,remount -t ext4 /dev/block/platform/sdhci-tegra.3/by-name/APP
    7. Reboot!


    Please note, this will not survive an update, so if you update your OUYA and notice it is no longer working, just follow the steps again.

    [Source]

  2. #2
    OUYAForum Addict mmartino's Avatar
    Join Date
    Jun 2013
    Location
    Pittsburgh PA
    Posts
    2,395


    Didn't they just add this option to the system menu to just switch ADB over network off or on? and if so wouldn't that be the same?

  3. #3


    Quote Originally Posted by mmartino View Post
    Didn't they just add this option to the system menu to just switch ADB over network off or on? and if so wouldn't that be the same?
    It is not present in OUYA's rom, But if it were, it would be the same

    eldon: This as a .sh + .bat would be pretty neat
    Manuel Etchegaray
    Aka: Manuel777
    http://ouyaforum.com/showthread.php?6515-Custom-OUYA-Launcher
    http://invadergames.net
    contact@invadergames.net

  4. #4
    OUYAForum Addict mmartino's Avatar
    Join Date
    Jun 2013
    Location
    Pittsburgh PA
    Posts
    2,395


    Quote Originally Posted by InvaderGames View Post
    It is not present in OUYA's rom, But if it were, it would be the same

    eldon: This as a .sh + .bat would be pretty neat
    Its on the 1.2.676_r1 rom. I am using it right now. Just wondered if the settings don't stick or anything but it turns out they work great! Its about time they added an easy toggle switch to enable this

  5. #5
    OUYA Developer Eldon.McGuinness's Avatar
    Join Date
    Oct 2013
    Location
    www.Progressivethink.in
    Posts
    1,236


    Quote Originally Posted by mmartino View Post
    Its on the 1.2.676_r1 rom. I am using it right now. Just wondered if the settings don't stick or anything but it turns out they work great! Its about time they added an easy toggle switch to enable this
    This does not survive an power cycle in my experience (note I don't mean a suspend, but a power on/power off)

    Quote Originally Posted by InvaderGames View Post
    This as a .sh + .bat would be pretty neat
    It would, but since the session is on the OUYA, not the pc, it would not work, I tried heh.

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •