build.sh 4.9 KB

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