build.sh 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222
  1. #!/bin/bash
  2. set -e
  3. ################
  4. ## CONFIG ##
  5. ################
  6. CWD="$(pwd)" # current working directory
  7. flash_arduino="u2" # u2 or ftdi
  8. arduino_device="ttyACM0" # ls /dev/tty* and find your arduino
  9. mega=2560 #2560 or 1280
  10. script_version="1.0.0"
  11. rdate="23/09/2017"
  12. ################
  13. ## SOFTWARE ##
  14. ################
  15. clear
  16. echo ""
  17. echo -n -e "\e[97m\u2554"
  18. for i in {1..34}; do echo -e -n "\u2550"; done
  19. echo -e "\u2557\e[0m"
  20. echo -e "\e[97m\u2551 SPI Bios Flashrom \e[93m"V$script_version"\e[0m\e[97m \u2551\e[0m"
  21. echo -e "\e[97m\u2551 Release date: \e[93m"$rdate"\e[0m\e[97m \u2551\e[0m"
  22. echo -n -e "\e[97m\u255A"
  23. for j in {1..34}; do echo -e -n "\u2550";done
  24. echo -e -n "\u255D\e[0m"
  25. if [ -a /dev/ttyACM0 ]
  26. then
  27. arduino_device="ttyACM0"
  28. echo
  29. function arduino_ {
  30. echo -e ""
  31. echo -e "\e[92m\e[4mBuild Arduino SPIFlash tools:\e[0m\e[24m"
  32. if [ -a /dev/ttyACM0 ]
  33. then
  34. arduino_device="ttyACM0"
  35. fi
  36. if [ -a /dev/ttyUSB0 ]
  37. then
  38. arduino_device="ttyUSB0"
  39. fi
  40. echo "Arduino device found at: $arduino_device"
  41. echo ""
  42. echo -e "\n\e[93mPerforming Update :\e[0m"
  43. sudo apt-get install flashrom gcc-avr binutils-avr gdb-avr avr-libc avrdude libpci-dev git libusb-1.0-0-dev libftdi-dev -y
  44. if [ ! -d frser-duino ]
  45. then
  46. echo -e "\n\e[93mDownload frser-duino :\e[0m"
  47. git clone --recursive git://github.com/urjaman/frser-duino frser-duino
  48. else
  49. cd frser-duino
  50. git reset --hard
  51. git pull
  52. cd ..
  53. fi
  54. cd frser-duino
  55. if [ $arduino_device = "ttyUSB0" ]
  56. then
  57. sed -i -e "s/dev\/ttyACM0/dev\/$arduino_device/g" Makefile
  58. fi
  59. echo -e "\n\e[93mBuild frser-arduino :\e[0m"
  60. make $flash_arduino -j$((`nproc`+1))
  61. echo -e "\n\e[93mFlash Arduino :\e[0m"
  62. make flash-$flash_arduino
  63. }
  64. function mega_ {
  65. echo -e ""
  66. echo -e "\e[92m\e[4mBuild ATMEGA$mega SPIFlash tools:\e[0m\e[24m"
  67. echo -e "\n\e[93mPerforming Update :\e[0m"
  68. sudo apt-get install flashrom gcc-avr binutils-avr gdb-avr avr-libc avrdude libpci-dev git -y
  69. if [ ! -d frser-duino ]
  70. then
  71. echo -e "\n\e[93mDownload frser-mega :\e[0m"
  72. git clone --recursive git://github.com/urjaman/frser-duino frser-duino
  73. else
  74. cd frser-duino
  75. git reset --hard
  76. git pull
  77. cd ..
  78. fi
  79. cd frser-duino
  80. if [ $arduino_device = "ttyUSB0" ]
  81. then
  82. sed -e "s/dev\/dev/ttyACM0/dev\/$arduino_device/g" Makefile
  83. fi
  84. echo -e "\n\e[93mBuild frser-duino :\e[0m"
  85. make mega$mega -j$((`nproc`+1))
  86. echo -e "\n\e[93mFlash ATMega$mega :\e[0m"
  87. make flash-mega$mega
  88. }
  89. function raspberry_ {
  90. echo -e ""
  91. echo -e "\e[92m\e[4mBuild Raspberry SPIFlash tools:\e[0m\e[24m"
  92. echo -e "\n\e[93mPerforming Update :\e[0m"
  93. sudo apt-get update
  94. sudo apt-get upgrade -y
  95. sudo apt-get install build-essential pciutils usbutils libpci-dev libusb-dev libusb-1.0-0 libusb-1.0-0-dev libftdi1 libftdi-dev zlib1g-dev subversion git ghex -y
  96. sudo modprobe spi_bcm2708
  97. sudo modprobe spidev
  98. sudo sed -i -e "s/\#dtparam=spi=on/dtparam=spi=on/g" /boot/config.txt
  99. }
  100. function flashrom_ {
  101. cd $CWD
  102. if [ ! -d flashrom ]
  103. then
  104. echo -e "\n\e[93mDownload flashrom :\e[0m"
  105. git clone git://github.com/flashrom/flashrom.git
  106. fi
  107. cd flashrom
  108. sed -i -e "s/WARNERROR ?= yes/WARNERROR ?= no/g" Makefile
  109. echo -e "\n\e[93mBuild and install flashrom:\e[0m"
  110. make -j$((`nproc`+1))
  111. sudo make install
  112. }
  113. function clean_ {
  114. echo -e ""
  115. echo -e "\e[93m\e[4mCleaning:\e[0m\e[24m"
  116. if [ -d flashrom ]; then rm -r -f flashrom; fi
  117. if [ -d frser-duino ]; then rm -r -f frser-duino; fi
  118. echo -e "\n\e[95mCleaning...Done !\e[0m"
  119. echo""
  120. }
  121. function flashrom_raspberry_check_ {
  122. echo -e "\n\e[93mCheck flashrom :\e[0m"
  123. flashrom -p linux_spi:dev=/dev/spidev0.0 || :
  124. }
  125. function flashrom_arduino_check_ {
  126. echo -e "\n\e[93mCheck flashrom :\e[0m"
  127. sleep 1
  128. flashrom -p serprog:dev=/dev/$arduino_device:115200 || :
  129. }
  130. function flashrom_mega_check_ {
  131. echo -e "\n\e[93mCheck flashrom :\e[0m"
  132. flashrom -p serprog:dev=/dev/$arduino_device:115200 || :
  133. }
  134. function footer_ {
  135. echo ""
  136. echo -e "\e[92m\e[21mMemo Command line: \e[0m"
  137. echo -e ""
  138. echo -e "\e[93m\e[21mArduino/Mega2560/Mega1280: \e[0m"
  139. echo -e "flashrom -p serprog:dev=/dev/$arduino_device:115200"
  140. echo -e ""
  141. echo -e "\e[93m\e[21mRaspberryPI/beagleBone: \e[0m"
  142. echo -e "flashrom -p linux_spi:dev=/dev/spidev0.0"
  143. echo -e ""
  144. if ! [ -x "$(command -v flashrom)" ]
  145. then
  146. echo 'Error: flashrom is not yet installed.' >&2
  147. echo 'Build and come back to help section....' >&2
  148. else
  149. echo -e "\e[93m\e[21mFlashrom version: \e[0m"
  150. flashrom -R
  151. fi
  152. echo ""
  153. }
  154. function show_help {
  155. echo "\
  156. Usage: $0 [--arduino] [--mega] [--raspberry] [--clean] [--help]
  157. --help Display extended help message
  158. --arduino Build Serial SPI flashrom tools for arduino328
  159. --mega Build Serial SPI flashrom tools for arduinoMega
  160. --raspberry Build Serial SPI flashrom tools for raspberryPI
  161. --clean Clean all build files
  162. Install script Written by: wareck <wareck@gmail.com>
  163. "
  164. }
  165. if [ "$#" == "0" ]; then
  166. $0 *
  167. exit 0
  168. fi
  169. for i in "$@"
  170. do
  171. case $i in
  172. --help)
  173. show_help && footer_
  174. exit
  175. ;;
  176. --arduino)
  177. arduino_ && flashrom_ && flashrom_arduino_check_ && footer_
  178. ;;
  179. --mega)
  180. mega_ && flashrom_ && flashrom_mega_check_ && footer_
  181. ;;
  182. --raspberry)
  183. raspberry_ && flashrom_ && flashrom_raspberry_check_ && footer_
  184. ;;
  185. --clean)
  186. clean_
  187. ;;
  188. *)
  189. show_help
  190. exit
  191. ;;
  192. esac
  193. done