bucts 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. #!/usr/bin/env bash
  2. # helper script: downloads bucts and patches it
  3. #
  4. # Copyright (C) 2014, 2015 Leah Rowe <info@minifree.org>
  5. #
  6. # This program is free software: you can redistribute it and/or modify
  7. # it under the terms of the GNU General Public License as published by
  8. # the Free Software Foundation, either version 3 of the License, or
  9. # (at your option) any later version.
  10. #
  11. # This program is distributed in the hope that it will be useful,
  12. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. # GNU General Public License for more details.
  15. #
  16. # You should have received a copy of the GNU General Public License
  17. # along with this program. If not, see <http://www.gnu.org/licenses/>.
  18. #
  19. # This script assumes that the working directory is the
  20. # root of libreboot_src or libreboot git.
  21. [ "x${DEBUG+set}" = 'xset' ] && set -v
  22. set -u -e
  23. # Get bucts and checkout last revision used
  24. # Remove the old version that may exist
  25. # ------------------------------------------------------------------------------
  26. printf "Downloading bucts\n"
  27. rm -Rf "bucts/"
  28. # Get bucts
  29. # ------------------------------------------------------------------------------
  30. # download it using git
  31. git clone https://notabug.org/libreboot/bucts.git
  32. # modifications are required
  33. cd "bucts/"
  34. # Reset to the last commit that was tested
  35. # ------------------------------------------------------------------------------
  36. printf "Patching bucts to not require git for building\n"
  37. git reset --hard dc27919d7a66a6e8685ce07c71aefa4f03ef7c07
  38. # Apply patches
  39. # ------------------------------------------------------------------------------
  40. git am "../resources/bucts/patch/0001-Makefile-don-t-use-git.patch"
  41. # we're done
  42. cd "../"
  43. printf "\n\n"