build.sh 5.2 KB

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