Advertisement
metalx1000

Samsung Heimdall Notes

Dec 26th, 2014
773
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.92 KB | None | 0 0
  1. #!/bin/bash
  2.  
  3. clear
  4. echo """This will get and build heimdall
  5.  
  6. For the Samsung tab 4 10.1 a line oc code must be changed.
  7. Reference: https://github.com/Benjamin-Dobell/Heimdall/issues/232
  8.  
  9. The first error is on line 932 (line is a few off in current code) at the BridgeManager.cpp contains:
  10. success = ReceivePacket(receiveFilePartPacket, receiveEmptyTransferFlags);
  11. but it makes wrong timeout and lost flags.
  12.  
  13. I use this one:
  14. success = ReceivePacket(receiveFilePartPacket, kDefaultTimeoutReceive, receiveEmptyTransferFlags);
  15.  
  16. press enter to continue
  17. """
  18. read
  19.  
  20. sudo apt-get install build-essential pkg-config zlib1g-dev libusb-dev libqt4-dev qt4-qmake autoconf libtool libusb-1.0-0-dev automake
  21.  
  22. git clone git://github.com/Benjamin-Dobell/Heimdall.git
  23.  
  24. vim ./Heimdall/heimdall/source/BridgeManager.cpp
  25.  
  26. cd Heimdall/libpit
  27. ./autogen.sh
  28. ./configure
  29. make
  30. cd ../heimdall
  31. ./autogen.sh
  32. ./configure
  33. make
  34. su -c 'make install'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement