seabios 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. #!/bin/bash
  2. # helper script: Downloads SeaBIOS and patches it.
  3. #
  4. # Copyright (C) 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 SeaBIOS, revert to commit last used and apply patches.
  24. # Remove the old version that may still exist
  25. # ------------------------------------------------------------------------------
  26. printf "Downloading SeaBIOS\n"
  27. rm -rf seabios
  28. # Get latest SeaBIOS
  29. # ------------------------------------------------------------------------------
  30. # download it using git
  31. git clone git://git.seabios.org/seabios.git seabios
  32. # modifications are required
  33. cd seabios/
  34. # Reset to the last commit that was tested
  35. # ------------------------------------------------------------------------------
  36. git reset --hard 6bcacf7d19b1dc7fcd99f55491e93514f1f19279
  37. # Apply patches
  38. # ------------------------------------------------------------------------------
  39. # no patches are used in this revision of libreboot
  40. cd ../
  41. printf "\n\n"
  42. # ------------------- DONE ----------------------