Jump to content


Photo

House of Nexus [3.0]


  • Please log in to reply
488 replies to this topic

#221 Sabres032

Sabres032

    Large and in charge EMS minion

  • Members
  • PipPipPipPipPip
  • 9,515 posts
  • LocationWayward USA
  • Current Device(s):Google Pixel 2 XL

Posted 04 April 2016 - 11:15 AM

Ok, screw you, Linux.  I just installed the update on my son's NX5x and he finally decided to root it.  So I ran it under my Linux VM to see if it'd work.  Installed the update no problem.  However, sideload failed because adb on Linux doesn't like to be run as sudo.  FFS...

 

Whoooooops....


  • johnlgalt likes this

IMG_12705794666508.jpeg


Sent from my Marine World N6 or my Nexus 7 2013 WiFi I'll let you figure out which.

#222 SamuriHL

SamuriHL

    Android Warrior

  • Smod
  • 44,287 posts
  • Current Device(s):S21 Ultra, Pixel 6

Posted 04 April 2016 - 11:21 AM

It's not an easy thing to fix either.  Downgrading privs to make adb play nice is not a very simple thing to do.  I may have to sudo the fastboot commands only in the script but I recall that screwing up Mac users.  Good lord.


  • johnlgalt likes this

Non potest esse nisi unus


#223 Sabres032

Sabres032

    Large and in charge EMS minion

  • Members
  • PipPipPipPipPip
  • 9,515 posts
  • LocationWayward USA
  • Current Device(s):Google Pixel 2 XL

Posted 04 April 2016 - 11:26 AM

It's not an easy thing to fix either.  Downgrading privs to make adb play nice is not a very simple thing to do.  I may have to sudo the fastboot commands only in the script but I recall that screwing up Mac users.  Good lord.

 

Right now reorganizing my downstairs doesn't seem so bad. Good luck....

 

 

Speaking of which......back to it...


  • johnlgalt likes this

IMG_12705794666508.jpeg


Sent from my Marine World N6 or my Nexus 7 2013 WiFi I'll let you figure out which.

#224 cmh714

cmh714

    Tech Service & Beyond

  • Smod
  • 3,272 posts
  • LocationSoCal
  • Current Device(s):Nexus 6

Posted 04 April 2016 - 11:32 AM

so oddly enough the script generated for the Nexus 9 was way different than for the 6. What happened to the Custom Recovery...

 

#!/bin/bash
 
#Generated script from the House of Nexus 1.9.1.
#Generated script from the Factory Image: volantisg-mmb29x-factory-22bd48c1.tgz.
 
clear
if (( $EUID != 0 )); then
echo "Please run as sudo.  e.g. sudo ./flashme.sh"
exit
fi
 
 
function flashBootloader() {
   fastboot flash bootloader bootloader-flounder-3.48.0.0135.img
   fastboot reboot-bootloader
   sleep 5
 
}
 
echo "WARNING: Choosing yes to this option will flash the bootloader."
read -p "Flash bootloader? [y/n]: " yesorno
  case "$yesorno" in
     y*)  flashBootloader ;;
     n*)  echo "" ;;
       esac
 
fastboot flash boot boot.img
fastboot flash cache cache.img
fastboot flash recovery recovery.img
fastboot flash system system.img
fastboot flash vendor vendor.img
function reboot() {
fastboot reboot
echo "Rebooting..."
}
 
function noreboot() {
   echo ""
}
 
read -p "Reboot? [y/n]: " yesorno
  case "$yesorno" in
     y*)  reboot ;;
     n*)  noreboot ;;
       esac
 
echo "Thanks for using the House of Nexus."
echo "Press Enter To Continue"
read


#225 SamuriHL

SamuriHL

    Android Warrior

  • Smod
  • 44,287 posts
  • Current Device(s):S21 Ultra, Pixel 6

Posted 04 April 2016 - 11:39 AM

What happened?  You didn't read.  That's what happened.  :)  Don't make assumptions about how it "used to be".  I was clear about what changed, why it changed, and what you need to do.  ;)


  • johnlgalt likes this

Non potest esse nisi unus


#226 cmh714

cmh714

    Tech Service & Beyond

  • Smod
  • 3,272 posts
  • LocationSoCal
  • Current Device(s):Nexus 6

Posted 04 April 2016 - 11:48 AM

flounder, volantisg, whatever, a PITA :)

 

Thanks!


  • johnlgalt and spainter like this

#227 SamuriHL

SamuriHL

    Android Warrior

  • Smod
  • 44,287 posts
  • Current Device(s):S21 Ultra, Pixel 6

Posted 04 April 2016 - 11:49 AM

ROFLMAO!  It does make a difference.  ;)


  • johnlgalt, cmh714 and spainter like this

Non potest esse nisi unus


#228 SamuriHL

SamuriHL

    Android Warrior

  • Smod
  • 44,287 posts
  • Current Device(s):S21 Ultra, Pixel 6

Posted 04 April 2016 - 01:09 PM

House of Nexus 1.9.2 released

 

o) Changed adb sideload to a y/n prompt.  This allows users to skip the sideload step if they already have supersu zip on their device.  Also ensures people are truly ready to sideload before they inadvertently continue, right Sabres?  ;)

o) Lots of internal non-user facing changes, so please test this out as I have no idea if I got everything put back together properly.  There were a lot of internal changes that don't impact functionality, but, any change this big could have a hiccup or two.

 

NOTE: If you have SuperSU zip on your device, you can use the install supersu functionality to boot twrp from memory, select NO to adb sideload in the script, and flash supersu zip in the memory booted twrp.


  • johnlgalt, Sabres032 and spainter like this

Non potest esse nisi unus


#229 Sabres032

Sabres032

    Large and in charge EMS minion

  • Members
  • PipPipPipPipPip
  • 9,515 posts
  • LocationWayward USA
  • Current Device(s):Google Pixel 2 XL

Posted 04 April 2016 - 02:44 PM



House of Nexus 1.9.2 released

 

o) Changed adb sideload to a y/n prompt.  This allows users to skip the sideload step if they already have supersu zip on their device.  Also ensures people are truly ready to sideload before they inadvertently continue, right Sabres?   ;)

o) Lots of internal non-user facing changes, so please test this out as I have no idea if I got everything put back together properly.  There were a lot of internal changes that don't impact functionality, but, any change this big could have a hiccup or two.

 

NOTE: If you have SuperSU zip on your device, you can use the install supersu functionality to boot twrp from memory, select NO to adb sideload in the script, and flash supersu zip in the memory booted twrp.

 

 

Is this marked as the Sabres Sideload debacle in your coding journal? 

 

I'd test if I felt like reflashing my backup of MMB29V but I'm not feeling that motivated right now.  If no one else runs 1.9.2 in the next couple days I'll test for ya. 


  • johnlgalt and spainter like this

IMG_12705794666508.jpeg


Sent from my Marine World N6 or my Nexus 7 2013 WiFi I'll let you figure out which.

#230 johnlgalt

johnlgalt

    Antidisestablishmentarianist

  • Superuser
  • 7,296 posts
  • Twitter:https://twitter.com/JohnLGalt
  • Location3rd Rock
  • Current Device(s):Pixel 4 XL 128 GB

Posted 04 April 2016 - 02:52 PM

Q:  Can the utility be used to just load TWRP live and Flash SuperSu without installing a system package?



#231 spainter

spainter

    Droid Oracle

  • Moderator
  • 3,339 posts
  • LocationUtah
  • Current Device(s):Pixel 2 XL, Nexus 6, Moto X Pure Edition, 2013 Moto X DE, Droid Razr Maxx HD, 2013 Nexus 7 LTE, LG G Pad X 8.3

Posted 04 April 2016 - 02:52 PM

The Sabres Sideload debacle. LOL catchy name.  It should stick! :D


  • johnlgalt and Sabres032 like this

#232 Sabres032

Sabres032

    Large and in charge EMS minion

  • Members
  • PipPipPipPipPip
  • 9,515 posts
  • LocationWayward USA
  • Current Device(s):Google Pixel 2 XL

Posted 04 April 2016 - 02:58 PM

The Sabres Sideload debacle. LOL catchy name.  It should stick! :D

 

I'm the what could go wrong tester. :thumbup


  • johnlgalt and spainter like this

IMG_12705794666508.jpeg


Sent from my Marine World N6 or my Nexus 7 2013 WiFi I'll let you figure out which.

#233 cmh714

cmh714

    Tech Service & Beyond

  • Smod
  • 3,272 posts
  • LocationSoCal
  • Current Device(s):Nexus 6

Posted 04 April 2016 - 03:47 PM

Q:  Can the utility be used to just load TWRP live and Flash SuperSu without installing a system package?

 

I do that by editing the flashme script after its created. Just delete the parts you dont need and save it with a new name. HTH


  • johnlgalt likes this

#234 johnlgalt

johnlgalt

    Antidisestablishmentarianist

  • Superuser
  • 7,296 posts
  • Twitter:https://twitter.com/JohnLGalt
  • Location3rd Rock
  • Current Device(s):Pixel 4 XL 128 GB

Posted 04 April 2016 - 04:18 PM

Lol I knew that much - I meant automatically, I edit it all the time.
  • cmh714 likes this

#235 SamuriHL

SamuriHL

    Android Warrior

  • Smod
  • 44,287 posts
  • Current Device(s):S21 Ultra, Pixel 6

Posted 04 April 2016 - 07:29 PM

No.

Sent from my Nexus 6 using Tapatalk


Non potest esse nisi unus


#236 spainter

spainter

    Droid Oracle

  • Moderator
  • 3,339 posts
  • LocationUtah
  • Current Device(s):Pixel 2 XL, Nexus 6, Moto X Pure Edition, 2013 Moto X DE, Droid Razr Maxx HD, 2013 Nexus 7 LTE, LG G Pad X 8.3

Posted 05 April 2016 - 07:35 AM

Had an error while flashing my Nexus 6.

Install SuperSU? [y/n]: y
downloading 'boot.img'...
OKAY [  0.374s]
booting...
OKAY [  0.031s]
finished. total time: 0.406s

o) Select Advanced
o) Select ADB Sideload
o) Swipe to start Sideload
Sideload SuperSU? [y/n]: y
loading: 'I:\HouseOfNexus\SUPERSU\BETA-SuperSU-v2.71-20160331103524.zip'
error: closed

Thanks for using the House of Nexus.
Press any key to continue . . .

 

It did boot TWRP to memory after the error. But the new TWRP needed to be pointed to the zip and told to install.



#237 SamuriHL

SamuriHL

    Android Warrior

  • Smod
  • 44,287 posts
  • Current Device(s):S21 Ultra, Pixel 6

Posted 05 April 2016 - 08:45 AM

Looks like the adb connection died.


Non potest esse nisi unus


#238 livinginkaos

livinginkaos

    I don't know what I'm doing anymore.....

  • Administrator
  • 15,282 posts
  • Google+:Hangouts - livinginkaos@gmail.com
  • LocationOregon
  • Current Device(s):Samsung S8+ / Pixel XL 128gb / iPhone 7+ 256gb / iPad Pro 12.9" / Samsung Chromrbook Plus / Pixel C / Nexus 6p 128gb / Nexus 6 / Nexus 6 on Fi / Nexus 9 / Moto 360^2 / Nvidia Shield TV Pro / Nvidia Shield Tablet / HTC EVODesign on FreedomPop / Chromecast / Surface Pro 3 i7 / Samsung Tab Pro 12.2 / Lenovo Win8 Tab / Eee Slate / '13 Nexus 7

Posted 05 April 2016 - 08:48 AM

Why did it boot to TWRP after the error?  It should have already been booted


b2wvCBn.png

Sig by livinginkaos
Samsung S8+ / Pixel XL 128gb / iPhone 7+ 256gb / iPad Pro 12.9" / Samsung Chromrbook Plus / Pixel C / Nexus 6p 128gb / Nexus 6 / Nexus 6 on Fi / Nexus 9 / Moto 360^2 / Nvidia Shield TV Pro / Nvidia Shield Tablet / HTC EVODesign on FreedomPop / Chromecast / Surface Pro 3 i7 / Samsung Tab Pro 12.2 / Lenovo Win8 Tab / Eee Slate / '13 Nexus 7


#239 SamuriHL

SamuriHL

    Android Warrior

  • Smod
  • 44,287 posts
  • Current Device(s):S21 Ultra, Pixel 6

Posted 05 April 2016 - 08:51 AM

Um, twrp gets loaded before you select Y to sideload, so, if that didn't happen, you got some issues.  I should not load twrp after the instructions are presented...it should do it before.  Where it shows downloading boot.img is where twrp is being loaded.


  • johnlgalt likes this

Non potest esse nisi unus


#240 livinginkaos

livinginkaos

    I don't know what I'm doing anymore.....

  • Administrator
  • 15,282 posts
  • Google+:Hangouts - livinginkaos@gmail.com
  • LocationOregon
  • Current Device(s):Samsung S8+ / Pixel XL 128gb / iPhone 7+ 256gb / iPad Pro 12.9" / Samsung Chromrbook Plus / Pixel C / Nexus 6p 128gb / Nexus 6 / Nexus 6 on Fi / Nexus 9 / Moto 360^2 / Nvidia Shield TV Pro / Nvidia Shield Tablet / HTC EVODesign on FreedomPop / Chromecast / Surface Pro 3 i7 / Samsung Tab Pro 12.2 / Lenovo Win8 Tab / Eee Slate / '13 Nexus 7

Posted 05 April 2016 - 08:52 AM

That was why I asked.  I was thinking maybe someone got the itchy trigger finger and started pressing buttons too soon :)


b2wvCBn.png

Sig by livinginkaos
Samsung S8+ / Pixel XL 128gb / iPhone 7+ 256gb / iPad Pro 12.9" / Samsung Chromrbook Plus / Pixel C / Nexus 6p 128gb / Nexus 6 / Nexus 6 on Fi / Nexus 9 / Moto 360^2 / Nvidia Shield TV Pro / Nvidia Shield Tablet / HTC EVODesign on FreedomPop / Chromecast / Surface Pro 3 i7 / Samsung Tab Pro 12.2 / Lenovo Win8 Tab / Eee Slate / '13 Nexus 7





0 user(s) are reading this topic

0 members, 0 guests, 0 anonymous users