getall 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. #!/bin/bash
  2. # getall script: downloads everything extra for libreboot_src and patches to create libreboot_src archive from metadata
  3. #
  4. # Copyright (C) 2014 Francis Rowe
  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. # For libreboot_meta.tar.gz
  20. # This downloads all of the source code present in libreboot_src.tar.gz
  21. echo "Downloading dependencies for libreboot_src"
  22. # Download bucts
  23. # ---------------------------------------------------
  24. ./getbucts
  25. # Download coreboot
  26. # ---------------------------------------------------
  27. ./getcb
  28. # Download flashrom
  29. # ---------------------------------------------------
  30. ./getflashrom
  31. # Download GRUB
  32. # ---------------------------------------------------
  33. ./getgrub
  34. # Download MemTest86+
  35. # ---------------------------------------------------
  36. ./getmt86
  37. echo "Done. Full source is inside this existing libreboot_meta directory (rename it to libreboot_src before you continue). Now install the dependencies listed in 'builddeb' and then run 'builddeps' and then 'build' (or just use 'buildall')"
  38. # ------------------- DONE ----------------------