build.sh 5.0 KB

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