build.sh 5.3 KB

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