build.sh 5.2 KB

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